Close

Profile: Deni

Avatar

User posts

summerfest wrote:
Hello,

We've begun receiving a 404 not found error on ProductRibbons RetrieveProductRibbons controller call and none of the ribbons are working anymore. Strangely enough this only occurs in our live version but not in our local or beta version. Even though they're all running the same code. Any ideas?


Thanks


Hi, 

This error is most probably caused by search engine bots. You can restrict their access for this exact URL as they do not need to access it.

I hope this helped !

Hi, 

Thanks for the suggestion !

We will think about its implementation soon.

For now you can do it with JavaScript. Just make sure the Quick Tabs are not loading with AJAX.
Go to the /Plugins/SevenSpikes.Nop.Plugins.NopQuickTabs/Scripts/ProductTabs.min.js and add this code in its end:

(function ($) {
    $(document).ready(function () {
        setTimeout(function () {
            var productReviewsList = $('.product-review-list');
            var productTabId = productReviewsList.closest('.ui-tabs-panel').attr('id');
            var productReviewsAnchor = $('#quickTabs .ui-tabs-nav > li[aria-controls="' + productTabId + '"]');
            var reviewAnchorText = productReviewsAnchor.find('.ui-tabs-anchor').text() + ' (' + productReviewsList.find('.product-review-item').length + ')';

            productReviewsAnchor.find('.ui-tabs-anchor').text(reviewAnchorText);
        }, 500);
    });
})(jQuery);



I hope this helped !

9 years ago

jkeeler wrote:
I am trying to place a slider before the body of the home page but under the menu.  I have placed the following code in _ColumsTwoHome.chtml directly before the center-2 div class.  However it is not rendering correctly.  I have added a slider to the anywhere slider plugin and placed it in the home page top widget.  Am I missing something?

<div class="hmslider">
  @Html.Widget("home_page_top")
</div>


Hi, 

Please check these possible problems:

1. Check if the <div class="hmslider"> div is rendered on the page at all. If it is not, then you are not calling your template.

2. Check if the slider is active: either by its Conditions, Scheduling or Store mapping.

3. Check if the slider has any pictures added in it.


I hope this helped !

Theme support
9 years ago

jerrydev wrote:
Hi
I am going to buy Ajax fillter plugin but my concern that it is support any theme??
I created one theme my seft then i want to ask this plugin support my theme?
Thanks 


Hi, 

The Ajax Filters plugin is designed to work with any theme.
The point is that if you have modified the Catalog templates, you should add the same ones in the plugin, so it can work properly, as you can read here.
Other thing is that you should use proper widget zone for displaying the filters.

I hope this helped !

9 years ago

Jay wrote:
Is it possible to insert CAPTCHA on the contact us tab? I'm concerned about unconsolidated emails.

Also, can you customize the Contact Us Tab?

Thanks


Hi, 

We have decided to remove it for two reasons.

First, it is working via JS and we do not think any bot will manage to submit the contact us form. Until now we do not have any complaints about spam via this form.

Second, we are using the nopCommerce default CAPTCHA editor. Unfortunately it is using hard-coded IDs and if it happens to have more than one CAPTCHAs on the page, then both will be broken, which will result in not letting the customer to submit his request.

About the customization of the Quick Tab, you can do it via CSS. If you want to change the mark-up then you should edit this view: /Plugins/SevenSpikes.Nop.Plugins.NopQuickTabs/Views/ProductTab/_ProductContactUs.cshtml.

I hope this helped !

9 years ago

Jay wrote:
By default, the Topic (Page) - 'HomePageText' location is below the slider.

I've noticed that the 'HomePageText' is located as a column near the footer area for the Motion theme.

Is there anyway 'HomePageText' content can be set in the default location without customization?

Thanks.


Hi, 

No, you will have to modify the views of the Motion theme to move the "HomePageText" topic.

9 years ago

roonz wrote:
In add product, it would be good to have an add by Product SKU , similar to the Product admin module where you can jump straight to SKU. This would make it much easier for me to add products. I have many products with similar names so the existing search capability in JCarousel for add product does not suit.


Hi, 

We have planned this and we will integrate it soon.

You can also suggest it in our user voice portal so you can check its progress.


Thanks for your feedback !

Bugs
9 years ago

RBfinelines wrote:
As I understand it, Nop generates its own Robots.txt (on the fly) in the Common Controller. So you can either manually setup the entire Robots.txt (good luck with that!). By telling the web.config file to ignore the current Robots.txt path. Or hope plugin creators have a way to tell Nop to add exclusions, without making core changes.

...same holds true for the sitemap. -- Really annoying that Nopcommerce doesn't just do things the way everyone else has them done. It wouldn't be hard to code sitemap [as a XML] and Robots [as a TXT] file generation based on settings. After all, it's what all webpage creation software do out of the box.


Hi, 

Yes, it is really annoying and it is a must to have an extendibility point from which every plugin should be able to modify the Robots.txt file.

I think this should be suggested to the nopCommerce team.


Thanks for your feedback !

Bugs
9 years ago

ernest wrote:
How to manually add the route to the robots.txt file ?


Hi, 

Please read carefully this article.

9 years ago

rogerhaugland99 wrote:
Hi,

The add to cart on mobile still shows the default green bar. Shouldn't it have a better styling also on mobile?  Tested on iphone 6, safari today on your demosite

Regards

Roger


Hi, 

We disable our Ajax Cart on mobile devices, because it is not good user experience to see popups on mobile.

So you are seeing the default nopCommerce added to cart notification.

We have created a hidden setting if anyone wants to enable the Ajax Cart on mobile.

Just go to "All Setting", find this one: "NopAjaxCartSettings.EnableOnMobileDevices" and make its value to be "True".


I hope this helped !