Close

Profile: hristo

Avatar

User posts

3 months ago

This is not as simple as changing the href attribute of the link. The Reviews tab is hidden as it is not the first tab that is open by default so it can't be accessed by directing the href to it.
You will need some custom development to do that.

Correct, Cloud Zoom is not available for extended gallery (big images), it only integrates in the standard gallery (big image + thumbnails). The plugin will not integrate in custom layout structures, it requires the original gallery structure.

Kitch9 wrote:
Is there an easy way to do this with a plugin of some kind as we're trying to avoid custom code to assist with the future upgradability of the site?


No, sorry, there is no such functionality available in Pacific theme. You will need some custom development to achieve that.

3 months ago

You can't do that from the administration, you have to edit the footer template file.
For Venture theme the file location is this: Themes\Venture\Views\Shared\Components\Footer\Default.cshtml

3 months ago

Hello.

There is no straight forward way to remove the category title image, can be done by editing the css code or by using additional css code. The reason you can't click the links after you removed the image is probably because the empty image container is still there and covering the links so you are actually clicking on it, and not on the links themselves.

5 months ago

We are no able to reproduce your issue, the Rich Blog comment section is working as expected at our side. Please open a support ticket at nop-templates.com and provide us with access to your site there so we can inspect the situation.

There is no restriction, all subcategories are shown.

There are two possible workarounds for this.

One is to switch your Home Page layout to Home Page Category Boxes Layout - Layout One from the Pacific Settings page. Layout One does not include subcategories at all. However it's a very different layout, you will probably need new slider images with it, etc.

The other one is to hide your subcategories by using some extra CSS code, like this:

.sub-categories-list {
    display: none !important;
}

Just put it into the "Custom Head Styles" panel on your Pacific Settings page in the administration and it will be injected into the site, hiding all subcategories on Home Page.
Here is also another piece of code that will allow up the 5 subcategories and will hide all the rest:

.sub-categories-list li:nth-child(n+6) {
    display: none;
}

Hello Jakub.

Every possible setup is shown on the Pacific demos. There are 4 demos so check them all.
By default it's not possible to have a gallery layout like the one in Voyage theme.

"buy Voyage Theme and copy product page and inject CSS from voyage"
This is not going to work, at least not without some modifications.
If you just swap the Product Details templates your Product Details page will stop working.

I guess your best bet is to use the "Product Page Layout - Layout Two" in Pacific which will render the HTML structure you need, and from there you restyle the gallery to get 2 images per row instead of one. This way it will be just CSS changes.

6 months ago

Make sure the code is applied to your site - clear all types of cache including server cache (if any). If the problem persists please start a support ticket and provide us with admin login credentials so we can log into your site a inspect the situation

6 months ago

Hello.

By default the "SKU" element is not allowed on catalog pages in Emporium theme, it is always hidden. You can override this behavior by using this piece of code (just put it into the Custom Head Styles panel in the administration, on the Emporiun Settings page):

.item-box .sku {
    display: block !important;
}

There is no guarantee it will work as expected and will be problem-free, so you have to test it out on your own.