Page 155 of 156 FirstFirst ... 55105145153154155156 LastLast
Results 1,541 to 1,550 of 1554
  1. #1541
    Join Date
    Aug 2020
    Location
    Richarson
    Posts
    141
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    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 !

  2. #1542
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,813
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    the "my favorites" is related to a commercial wishlist plugin on lat9s website
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  3. #1543
    Join Date
    Mar 2005
    Posts
    140
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    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

  4. #1544
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,813
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    includes/extra_datafiles/dist.site-specific-bootstrap-settings.php
    rename file to site-specific-bootstrap-settings.php
    then edit line 23 from
    Code:
    //$zca_disable_back_to_top = false;
    to
    Code:
    $zca_disable_back_to_top = true;
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  5. #1545
    Join Date
    Nov 2010
    Posts
    139
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    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

  6. #1546
    Join Date
    Nov 2010
    Posts
    139
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Dustie View Post
    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.

  7. #1547
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,354
    Plugin Contributions
    94

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Dustie View Post
    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:
    PHP Code:
    // the following IF statement can be duplicated/modified as needed to set additional flags
    if (in_array($current_page_baseexplode(','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_baseexplode(','str_replace(' ''''checkout_shipping, checkout_shipping_address, checkout_payment, checkout_payment_address, checkout_confirmation')))) {
        
    $flag_disable_left true;

    You can change that by modifying that file in your site's clone of the template.

    For the notifications' choice removal, see Configuration // Bootstrap Template Settings // Display the Notifications Box on Product Pages

  8. #1548
    Join Date
    Nov 2010
    Posts
    139
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by lat9 View Post
    The template, by default, disables the right/left columns on various pages in its /common/tpl_main_page.php:
    PHP Code:
    // the following IF statement can be duplicated/modified as needed to set additional flags
    if (in_array($current_page_baseexplode(','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_baseexplode(','str_replace(' ''''checkout_shipping, checkout_shipping_address, checkout_payment, checkout_payment_address, checkout_confirmation')))) {
        
    $flag_disable_left true;

    You can change that by modifying that file in your site's clone of the template.

    For the notifications' choice removal, see Configuration // Bootstrap Template Settings // Display the Notifications Box on Product Pages
    Thank you so much! I was totally blind to the Configuration/Bootstrap Template settings!! That issue is now fixed. The other one will try - thank you again.

  9. #1549
    Join Date
    Apr 2011
    Posts
    507
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    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

  10. #1550
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,354
    Plugin Contributions
    94

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by nicksab View Post
    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
    Not via configuration; that'll require some sort of code-edit on your site's template-clone.

 

 

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 107
    Last Post: 11 Nov 2024, 08:28 PM
  2. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  3. v155 ZCA Bootstrap Template 1.0 (BETA)
    By rbarbour in forum Addon Templates
    Replies: 74
    Last Post: 25 Apr 2018, 07:05 PM
  4. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR