Close

Profile: Boyko

Avatar

User posts

11 years ago

Hi,

Have you made any modifications to the theme because we don't have such errors on our demo store? Why is the "Referrer URL:" empty? Please post it, so that we can see on which page this error is shown.

Thanks

11 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

11 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!

11 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

Header links
11 years ago

clubfredd wrote:
Greetings,

On the HeaderLinks.cshtml, what do I change this (@Model.CustomerEmailUsername) to so that instead of showing the email when logged in, it will show the First name or Full name.

Thank you!


Hi clubfredd,

I noticed that you have asked the same question in the nopCommerce forum (already got an answer), which is the best place to ask such questions, which are related to functionality in nopCommerce in general and not any of our products particularly.

Thanks

11 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

11 years ago

clubfredd wrote:
I tried on changing the "4" to say "10" and that took up all the div.box (great!) - BUT if I only have 6 categories then there will be extra divs with class "empty-box" :P


Hi clubfredd,

You can simply not use the DataTable helper method but use a foreach instead.
The code below will do exactly what you need:

<div class="row-wrapper">
                @foreach (SevenSpikes.Nop.Plugins.MegaMenu.Models.MegaMenuCategoryModel item in Model.CategoriesModels)
                {
                    <div class="box">
                        <div class="title">
                            <strong>
                                <a href="@Url.RouteUrl("Category", new { SeName = item.CategoryModel.SeName })" title="@item.CategoryModel.PictureModel.Title">
                                    @item.CategoryModel.Name</a>
                            </strong>
                        </div>
                        <!--title-->
                        <div class="picture">
                            <a href="@Url.RouteUrl("Category", new { SeName = item.CategoryModel.SeName })" title="@item.CategoryModel.PictureModel.Title">
                                <img alt="@item.CategoryModel.PictureModel.AlternateText" src="@item.CategoryModel.PictureModel.ImageUrl"
                                      title="@item.CategoryModel.PictureModel.Title" /></a>
                        </div>
                        <!--picture-->
                        <ul class="subcategories">
                            @foreach (var subCategory in item.SubCategories.Take(megaMenuSettings.NumberOfCategories))
                            {
                                <li>
                                    <a href="@Url.RouteUrl("Category", new { SeName = subCategory.CategoryModel.SeName })" title="@subCategory.CategoryModel.Name">
                                        @subCategory.CategoryModel.Name</a>
                                </li>
                            }

                            @if (item.SubCategories.Count == megaMenuSettings.NumberOfCategories)
                            {
                                <li>
                                    <a class="view-all" href="@Url.RouteUrl("Category", new { SeName = item.CategoryModel.SeName })">@T("SevenSpikes.MegaMenu.ViewAllCategories")</a>
                                </li>
                            }
                        </ul>
                    </div>
                }
            </div>


Hope this helps!

Which Theme
11 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!

11 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

11 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