I was having a look at the demo of this template and noticed a "my favorites" link at the navmain Wrapper next to login. I would like to do the same and know where I can go to add other links there as well. Thanks !
Printable View
I was having a look at the demo of this template and noticed a "my favorites" link at the navmain Wrapper next to login. I would like to do the same and know where I can go to add other links there as well. Thanks !
the "my favorites" is related to a commercial wishlist plugin on lat9s website
I know I have asked before and got different answers. What is the correct way to remove the Back to Top icon from appearing?
The last suggestion was to enter in the site specific CSS the following below. But there was some that said it should not be done there. It worked on older versions but it reappeared on the upgrade.
<style>
#back-to-top.show {
display: none;
}
</style>
I wish this was a configurable option in the admin settings
Thank you
includes/extra_datafiles/dist.site-specific-bootstrap-settings.php
rename file to site-specific-bootstrap-settings.php
then edit line 23 from
toCode://$zca_disable_back_to_top = false;
Code:$zca_disable_back_to_top = true;
Hi,
I posted this in another thread, but no replies.. seeing as it's a Template related question, I am going to try here.
I have successfully installed the newest version of ZC - v2.1.0
I can't fix the following 2 issues and so after hours of trying and searching, I am coming here for help.
I am using the Bootstrap Template. I have the following 2 issues.
1. No matter what I do, I am not able to disable (remove) the Notifications Bar - Notify me of updates to ... under each product.
I have disabled sideboxes/product_notifications.php and in configuration I have Customer Product Notification Status on 0
It's still there under each product.!
2. My site has 3 columns. As soon as I click on a product, it opens a new window and all the right Side-boxes disappear. Is there a setting where I can enable these to show on all pages? I am assuming this is a template issue?
thank you to anyone who can help
Okay, so after a bit more research I see that the column says : 3 Column Layout (removes right column on product info, shopping cart & checkout pages). So this is not optional??
As to the notifications it says (or used to say): Option to include the Product Notification and Manufacturer Info side boxes on the product info pages. I don't have an option to disable this under Product info pages.. also as I mentioned above, I have tried removing the sidebox and notificaton.
The template, by default, disables the right/left columns on various pages in its /common/tpl_main_page.php:
You can change that by modifying that file in your site's clone of the template.PHP Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base, explode(',', str_replace(' ', '', 'product_info, document_general_info, document_product_info, product_music_info, product_free_shipping_info, shopping_cart, checkout_shipping, checkout_shipping_address, checkout_payment, checkout_payment_address, checkout_confirmation, checkout_success')))) {
$flag_disable_right = true;
}
if (in_array($current_page_base, explode(',', str_replace(' ', '', 'checkout_shipping, checkout_shipping_address, checkout_payment, checkout_payment_address, checkout_confirmation')))) {
$flag_disable_left = true;
}
For the notifications' choice removal, see Configuration // Bootstrap Template Settings // Display the Notifications Box on Product Pages
Not entirely a Bootstrap question but since it is the template I am using:
Is it possible to remove the Price column in the shopping cart and have the product price move after or near the product name?
I find the column redundant in my special case and feel i would be more clear at least on mobile if possible
Thank you