Close

Profile: Deni

Avatar

User posts

10 years ago

jakubz wrote:
Maybe Smart Responsive theme support lazy loading? 


Hi, 

Unfortunately, the Smart theme does not have lazy loading functionality, but you can implement it easily via any jQuery lazy loading plugin.

chrisADK wrote:
When you click on the manufacturer page that shows them all and then click on the individual manufacturer and it lists all their products. Need to hide the add to cart/price there. Ideally it would be cool if that could be done per manufacturer.
Thanks Chris


Hi, 

You can hide the add-to-cart/price by modifying the previous code like this:
.instant-search-item .detail .price,
.search-page .item-box .add-info,
.manufacturer-page .product-item .add-info {
  display: none;
}

Unfortunately, you can not do this per manufacturer.

Rönning wrote:
Thanks for the reply, I had tried changing that setting (confirmed in browser that the script value had changed to 768) but nothing changed, I´m going to check my css settings if they are also causing this to switch at 980px, My mega menu is heavily modified I just wanted to clarify where it changed in the script, too much work to troubleshoot if it would not  be the right place.

I had to manually add in css hiding of the menu/responsive-menu after my change to 3.5 because otherwise on slow connections people could see both menus before the script hid the menu that was supposed to be hidden depending on the viewport


Hi, 

As you can see in the MegaMenu.css file in the plugin, there are already CSS rules for hiding the menus. You just need to modify the Media Query to be 768px. I hope this helped !

Rönning wrote:
Hi there
I would like to change the mega menu from going to responsive mode in 980px width, I would like it to change to responsive mode when the site width is 768px

It´s in a script somewhere if I remember correctly but cant figure out how to change it, can you point me in the right direcion?


Hi, 

You will find it in this file: \Plugins\SevenSpikes.Nop.Plugins.Core\Scripts\SevenSpikesExtensions.js. The beginning of the file contains this:

var breakPointWidth = 980

Edit it to be 

var breakPointWidth = 768

That is all. Note that this may lead to unexpected behaviour of any other elements on the page.

Hi, 

Please clarify about which Manufacturer search you are talking about. On which page is it? Give me a hint :)

10 years ago

Hi, 

I know that our demo has not the latest version. We will update it ASAP. But if you download the latest package of the Store Locator plugin I ensure you, that you will have these features.

10 years ago

hayden wrote:
<div id="TA_selfserveprop593" class="TA_selfserveprop">
<ul id="LCh6CdusYLm" class="TA_links Vx69DKk4W03A">
<li id="nv9RQZu1aZRV" class="HYuMmMaP"><a href="http://www.tripadvisor.co.uk/Hotel_Review-g186508-d253582-Reviews-Castle_Venlaw_Hotel-Peebles_Scottish_Borders_Scotland.html

target="> Castle Venlaw Hotel and Restaurant</a> in Peebles</li>
</ul>
</div>
<script src="http://www.jscache.com/wejs?wtype=selfserveprop&amp;uniq=593&amp;locationId=253582&amp;lang=en_UK&amp;rating=true&amp;nreviews=5&amp;writereviewlink=true&amp;popIdx=true&amp;iswide=true"></script>


Hi, 

In your case, you can create your script this way:

<p>
<script>// <![CDATA[
(function() {
    var script = document.createElement("script");
    script.src = "http://www.jscache.com/wejs?wtype=selfserveprop&amp;uniq=593&amp;locationId=253582&amp;lang=en_UK&amp;rating=true&amp;nreviews=5&amp;writereviewlink=true&amp;popIdx=true&amp;iswide=true";
    document.body.appendChild(script);
})();
// ]]></script>
</p>

10 years ago

defer wrote:
Still problem with issue from post #8611. Have updated the latest SevenSpikes: Core, Ajax Filters and StoreLocator dll files from suggested post #8707 with no result.

The uploaded image file still gets filename "xxxxx_300" and get cropped to 300px width on the AllShops overview. And "xxxx_400" on the Shop detail page.

All Media Settings in admin is set to 360px and the image I upload is 360px.

What I'm doing wrong here?


Hi, 

After your suggestion, we decided that the Media settings should not be used in the Store Locator plugin. So we made separate settings in the Store Locator plugin. If you are with the latest version of the plugin, you will see in its setting page the two new settings: All Shops Page Image Size and Shop Details Page Image Size.

Hi, 

You can get this menu item back, by going to the MegaMenu.cshtml view and somewhere between the other LIs elements add this code:

@Html.Action("TopicBlock", "MegaMenu", new { systemName = "AboutUs", enableDropDown = !isMegaMenuResponsive })


This will show the About Us topic with a dropdown with its content. I hope this helped!

10 years ago

hayden wrote:
i have a few pages that display a tripadvisor rating/reviews box - it is displayed using a script from tripadvisor that is included on the product details page
- however, when i enable tabs, the review does not display - instead, only a link to tripadvisor is displayed (fyi, it is only the link that is displayed in admin product details page - the review box only appears on the storefront)so i think maybe there is a problem running scripts in the tabs. is there a solution for this ?


Hi, 

The Quick Tabs can execute JS, if it is wrapper in CDATA. When you create a new tab, in the content editor, from its menu, click Tools > Source Code. Place this code for example and you will see that it works:

<p>JavaScript included in the Quick Tabs should be wrapper in CDATA!</p>
<p>
<script>// <![CDATA[
alert('JavaScript included in the Quick Tabs should be wrapper in CDATA!');
// ]]></script>
</p>


I hope this helped!