Close

Profile: Deni

Avatar

User posts

Hi, 

As I said you have to put the code right before the closing tag of the <div class="gallery sevenspikes-cloudzoom-gallery"> element.

Your code should look like this:

<div class="gallery">
  <div class="picture" id="sevenspikes-cloud-zoom" data-zoomWindowElementId="@Model.ElementId" 
   data-selectorOfTheParentElementOfTheCloudZoomWindow="@Model.SettingsModel.SelectorOfTheParentElementOfTheCloudZoomWindow" 
   data-defaultImageContainerSelector="@Model.SettingsModel.DefaultImageContainerSelector">
    <a href="@Model.DefaultPicture.FullSizeImageUrl" class="cloud-zoom" id="zoom1" rel="@Model.DefaultPicture.DefaultRelation">
      <img src="@Model.DefaultPicture.SmallImageUrl" alt="@Model.DefaultPicture.AlternateText" title="@Model.DefaultPicture.Title" id="cloudZoomImage" />
    </a>
  </div>
  @if (Model.Pictures.Count > 1)
  {
    <div class="picture-thumbs">
      @if (Model.SettingsModel.EnablePictureThumbnailsInCarousel)
      {
        <ul id="carousel" class="jcarousel jcarousel-skin-thumbs">
          @foreach (var picture in Model.Pictures)
          {
            <li><a href="@picture.FullSizeImageUrl" class="cloud-zoom-gallery" title="@picture.Title" rel="@picture.GalleryRelation">
              <img class="cloud-zoom-gallery-img" src="@picture.TinyImageUrl" alt="@picture.AlternateText" title="@picture.Title"/>
            </a></li>
          }
        </ul>
      }
      else
      {
        foreach (var picture in Model.Pictures)
        {
        <a href="@picture.FullSizeImageUrl" class="cloud-zoom-gallery" title="@picture.Title" rel="@picture.GalleryRelation">
          <img class="cloud-zoom-gallery-img" src="@picture.TinyImageUrl" alt="@picture.AlternateText" title="@picture.Title" />
        </a>
        }
      }
    </div>
  }




  <div><a href="@Model.DefaultPicture.FullSizeImageUrl" target="_blank">Download Picture</a></div>
</div>


I hope this helped !

Hi, 

It is strange that the link is not visible, but it does not matter, because I have thought of even a better way for showing this link. Remove the code I gave you and place this code:

<div><a href="@Model.DefaultPicture.FullSizeImageUrl" target="_blank">Download Picture</a></div>

into this file: /Plugins/SevenSpikes.Nop.Plugins.CloudZoom/Views/CloudZoom/CloudZoom.cshtml right before the closing tag of the <div class="gallery sevenspikes-cloudzoom-gallery"> element.

Other way to download the image is to left-click on the image. This will open the high resolution image in popup and then the customer will be able to download the full-size image.


I hope this helped !

9 years ago

babi82 wrote:
hello,
I am using nopCom 3.60, I copied all plugins to localhost plugin folder but nothing shown!
I upgraded it also with the sql script still no affects!


Hi, 

Yesterday were creating the new deploy process for the upcoming v3.70 and by accident broke the 3.60 packages. Please do not use the package with build number between #18379 and #18393.

We have just started the deploy process again and it will be ready in less than an hour. Please update your products after that.


Sorry for the inconvenience!

bizsol wrote:
Hi to anyone who as this issue How to enable right click image save as function, using cloud zoom I need to allow website visitors to right click on an image and save as so they can download image.  Can anyone help with this  Many Thanks


Hi, 

The Cloud Zoom plugin does not allow users to right-click on the image. It is not a common practice to let users download images. If they want, they can still do it by inspecting the element.

In your case, you can show a link to the picture so the users can download it even easier. You can add it in the end of the _ProductDetailsPictures file like this:

<div><a href="@Model.DefaultPictureModel.FullSizeImageUrl" target="_blank">Download Picture</a></div>



I hope this helped !

9 years ago

bizsol wrote:
Hi to anyone who as this issue
How to enable right click image save as function, using cloud zoom
I need to allow website visitors to right click on an image and save as
so they can download image.

Can anyone help with this

Many Thanks


Hi, 

Please do not duplicate forum posts. We will reply to your other post.

9 years ago

ambitiousNOP wrote:
Some of the products that have attributes in the admin are not showing those attributes on the site display page.  Any ideas?


Hi, 

If the product attribute does not have any values it may not show on the product details page.

If you are talking about specification attributes, they have a setting "Show on product page".

I can not think of any other case when the attributes will not show up.

H1 tag
9 years ago

RichardS wrote:
Can the SEO plugin generate H1 tags for the main, category, and product pages?


Hi, 

The H1 tags are supposed to be generated by the name of the category/product.

The Smart SEO plugin does not generate/modify the H1 tags. It modifies the meta data which is related to the current page by using templates predefined in the admin site.

I hope this helped !

Bugs
9 years ago

justinhof wrote:
Hello,

Anyone ever have the search stop working? Right now it looks like it is processing, but always returns an empty result set. Even going to advanced search always returns nothing.

Anything I can check to fix this?

https://www.deepblueyachtsupply.com/

Saarch on ABLE

Thanks,
Justin


Hi, 

I have checked your site and it is really strange that the search returns an empty result. Please raise a ticket, providing us credentials to your site so it could be easier for us to detect what is causing this issue.

Bugs
9 years ago

MotorStarters wrote:
Stefan,

I think i used the ajax fiters from this download - NopElectronicsTheme_3.6.761.17358.zip.
.product-grid, .product-list are in that box.
I've enabled infinite scrolling for now (didn't notice that before, nice feature :) )

Regards, Rob



Hi, 

If you want us to check the problem with the pager, please raise a ticket in our system providing admin credentials to your site, so we can disable the Infinite scroll for moment and test the pager.

Thanks for your feedback !

9 years ago

baloghc wrote:
Thanks for the quick response. So if we have a single slider that has 50 images, we can add JavaScript to the .cshtml or .js file in order to track each image individually? I wasn't sure if just the slider had an id to track by or if it was possible to do it for each image.


Hi, 

Yes, it is OK to add the JS either in the .cshtml or .js files. Each slider has an ID, by which you can make your tracking.

You will just need to add a logic to add each image unique ID, for easier tracking or you can just use their URLs.


I hope this helped !