Close

Profile: Boyko

Avatar

User posts

12 years ago

nirav.shah wrote:
Hi there,

Could you please help me to reorganise/ format product display under category/ brand?

When I click through Brands all products displayed are 3 in a row. This is very good, formatting looks good also.

Whereas under category menu all products are displayed 2 in a row, this leave a large gap on right side. This also affects all related products. For ex. If only 3 products are to be displayed 2 goes on first row and 1 in second row.

I am trying to solve this, need to make same as under brands menu.
Please help.

Thanks,
Nirav


Hi Nirav,

In the whole theme all the products are listed by design by 2 in a row Manufacturer page - http://themes.shopall.nop-templates.com/toshiba
Category page - http://themes.shopall.nop-templates.com/tv

I guess you have made some modifications to your theme. If you have made changes in the Manufacturer template then you need to make the same changes in the Category template.

Thanks

12 years ago

rscott78 wrote:

New theme roller for Electronic theme is looking great (http://store.incontrolzwave.com/boards)! I appreciate the effort you took to get this up and running.


Hi rscott78,

I am glad you like the Theme Roller. The team put a lot of effort in making it happen. Thank you for the feedback! We will look into the issues you have described.

Have a great weekend!

12 years ago

Hi guys,

We are happy to announce the release of the Theme Roller for the Electronics theme for nopCommerce 3.0.
With the release of the Theme Roller we also improved the whole theme as well as the theme forum (as requested).

Enjoy the Theme Roller and showcase us what you have done with it!

Thanks

12 years ago

ylechasseur wrote:
Hi Guys,

Just let you know that I did a major change to the electronic template. It came very smooth as usual with your advices and the quality of your products makes it even more easiest.

Thanks for all

Yves


Hi Yves,

You web site looks very very nice!
I really like how you use the Ribbons plugin.
Great job!

By the way you can disable the Cloud Zoom in the Quick View plugin(from the settings of the plugin) as some of your images have a low quality and the images are repeated.

Thanks

Which Theme
12 years ago

Slotraccoon wrote:
Which theme does nop Categories Header Menu use by default? I have created a new theme in nopCommerce which is a mild change to the DefaultClean theme just changing some colours and given it a new name.

Do I just create a new theme for the nop Categories Header Menu with the same name and edit that jquery.superfish.css file or is there some otherway to tell the menu which theme to pick up?


Hi Slotraccoon,

It uses the current theme. If it does not find a folder with the current theme name it defaults to DefaultClean theme. So you should copy the Themes\DefaultClean folder into a new Themes\YourThemeName folder and make any modifications to the css in it. That's why we say that our plugins are themeable.

Hope this helps!

12 years ago

lacorne wrote:
Hello,

in the "topics" area in nopcommerce. Where you can add extra topic pages.  
I was wondering if a plugin exist to set sub level of topics instead of having everything linear?
Thanks,


Hi lacorne,

We are not aware of such a plugin for nopCommerce. What is the point of having sub level of topics and how exactly you expect this to be working.

Thanks

12 years ago

chrismcbride76 wrote:
How can I change the default "order by" dropdown that is on the product page?  I want to change the default to "newest" so that the newest products show up first.

I've tried doing this in the nopcommerce source code, but my changes don't take effect. I suspect that one of your plugins (ajax filters maybe) is setting the default route and I'm unable to change it.

Any help would be greatly appreciated.

Thanks,
Chris


Hi chrismcbride76,

What changes exactly have you made? Yes, you can't change the default sorting option in the Ajax Filters but they use reflection to read the ProductSortingEnum values when populating the available sort options. Please let me know what changes you need to be made and I will tell if it will be possible with the Ajax Filters. You can disable the Ajax Filters plugin and make sure your changes work first and then tell us what you need to be changed in the Filters.

Thanks

12 years ago

naresh wrote:
I have ultimate plugin, after enabling mega menu, my instant search results are hiding behind the mega menu,, please check the following image..

http://lebhi.com/search-issue.jpg

Please help correct this..


Fix here.

Thanks

12 years ago

zjerry wrote:
Not, I'm using no-source version of nopCommerce for now.


Hi zjerry,

Just tested and the code below works perfectly for me:

@{
        MvcHtmlString aboutUsTopicBlock = Html.Action("TopicBlock", "MegaMenu", new { systemName = "AboutUs" });
    }
    @if (Model.Settings.IncludeAboutUsLink && !MvcHtmlString.IsNullOrEmpty(aboutUsTopicBlock))
    {
        @*<li>@aboutUsTopicBlock</li>
         Uncomment this line below(comment the line above to have a link to the AboutUs topic instead of a dropdown menu.*@
        <li><a href="@Url.RouteUrl("Topic", new { SystemName = "aboutus" })">@T("AboutUs")</a></li>
        
    }


Thanks

12 years ago

zjerry wrote:
My MegaMenu.cshtml now looks like:

 @if (Model.Settings.IncludeAboutUsLink && !MvcHtmlString.IsNullOrEmpty(aboutUsTopicBlock))
    {
        @*<li>@aboutUsTopicBlock</li>
         Uncomment this line below(comment the line above to have a link to the AboutUs topic instead of a dropdown menu.*@
        <li><a href="@Url.RouteUrl("Topic", new { SystemName = "aboutus" })">@T("AboutUs")</a></li>
        
    }


But the popup still is present (browser cache cleared), it was working as expected in 3.0.


Hi zjerry,

Have you debugged it to see what is wrong?

Thanks