Page 164 of 164 FirstFirst ... 64114154162163164
Results 1,631 to 1,640 of 1640
  1. #1631
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,742
    Plugin Contributions
    95

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by wmorris View Post
    Now I don't know how. It showing product price twice in the product page and I haven't done anything.
    Quote Originally Posted by wmorris View Post
    I found what the problem was. I was using the attribute so I can use the POSM. Also, if I use POSM I don't want to display the attributes in the product info pages. How can I hide it?
    Right, there is a configuration setting (Product Info Pricing Location) that identifies where the product pricing is displayed if the product has attributes; its value defaults to "Both".

    Why would you want to define product attributes and then not display them?

  2. #1632
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,669
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    Right, there is a configuration setting (Product Info Pricing Location) that identifies where the product pricing is displayed if the product has attributes; its value defaults to "Both".

    Why would you want to define product attributes and then not display them?
    Then How can keep it from showing twice?

  3. #1633
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,669
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    Right, there is a configuration setting (Product Info Pricing Location) that identifies where the product pricing is displayed if the product has attributes; its value defaults to "Both".

    Why would you want to define product attributes and then not display them?
    I got it.

  4. #1634
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,669
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I still need help with the other area where I mentioned about the product dimensions and Product material(s). How can I display to where the model and weight is on the product info page?

  5. #1635
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,669
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by wmorris View Post
    Ok, I want to add 2 or 3 fields for the (Materials, Product Size and Weight) how can I do that?

    I still need help with this area.

  6. #1636
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,742
    Plugin Contributions
    95

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by wmorris View Post
    Then How can keep it from showing twice?
    By choosing "Above Only" or "Below Only" as the setting.

  7. #1637
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,742
    Plugin Contributions
    95

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by wmorris View Post
    Ok, here is the tpl_product_info_display_details.php I need to help to add the dimensions and product materials.
    Code:
    <?php
    /**
     * Page Template
     *
     * BOOTSTRAP v3.7.7
     *
     * Provides the default display for a product's info-page details list.  A product-type,
     * e.g. product_music_info, can provide customized display of these details
     * by including a module named `tpl_{product_type}_display_details.php.  For
     * product_music_info, this file is named tpl_product_music_info_display_details.php.
     */
    $display_product_model = ($flag_show_product_info_model === '1' && $products_model !== '');
    $display_product_weight = ($flag_show_product_info_weight === '1' && $products_weight != 0);
    $display_product_quantity = ($flag_show_product_info_quantity === '1');
    $display_product_manufacturer = ($flag_show_product_info_manufacturer === '1' && !empty($manufacturers_name));
    
    $additional_details = [];
    $zco_notifier->notify('NOTIFY_PRODUCT_INFO_DISPLAY_DETAILS', [], $additional_details);
    
    if ($display_product_model || $display_product_weight || $display_product_quantity || $display_product_manufacturer || count($additional_details) !== 0) {
    ?>
                <ul id="<?= $html_id_prefix ?>-productDetailsList" class="productDetailsList list-group mb-3">
                    <?= (($display_product_model === true) ? '<li class="list-group-item">' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n" ?>
                    <?= (($display_product_weight === true) ? '<li class="list-group-item">' . TEXT_PRODUCT_WEIGHT .  $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>'  : '') . "\n" ?>
                    <?= (($display_product_quantity === true) ? '<li class="list-group-item">' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>'  : '') . "\n" ?>
                    <?= (($display_product_manufacturer === true) ? '<li class="list-group-item">' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n" ?>
    <?php
        foreach ($additional_details as $next_detail) {
            echo '<li class="list-group-item">' . $next_detail . '</li>' . "\n";
        }
    ?>
                </ul>
    <?php
    }
    Quote Originally Posted by wmorris View Post
    I still need help with this area.
    Quote Originally Posted by lat9 View Post
    By choosing "Above Only" or "Below Only" as the setting.
    You'll need to add the additional items to the $additional_details array, based on the product's information. If you don't know how, you'll need to hire someone to do that for you.

  8. #1638
    Join Date
    Feb 2008
    Location
    Philadelphia
    Posts
    289
    Plugin Contributions
    3

    Default Re: ZCA Bootstrap Template

    How do you get the add to cart "button" and the quantity box to be same size which really is just the quantity box being controlled is fine various attempts didn't work but seems like it "should" be simple and probably is. TYIA
    Attached Images Attached Images  

  9. #1639
    Join Date
    Feb 2008
    Location
    Philadelphia
    Posts
    289
    Plugin Contributions
    3

    Default Re: ZCA Bootstrap Template

    So I wrote a reply so if this is dup what can u do.

    Answer was I changed the class in modules bootstrap product fields then add some css in stylesheet and done.

    This became an issue as I had changed the field to a number field since they are buying stuff and number field v default text brings up number keyboard automatically in mobile had changed number field years ago but yesterday changed the product lists from default large format to very thin product listings so I can list 100+ in small space and people can order a few dozen skus easy on a phone blah blah.

    Worth making the change in general just to have the number keyboard launch instantly on your website IMO v a text keyboard

  10. #1640
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,669
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Can someone tell me how to hide the attributes box in the product info page? I am using POSM and when I setup on the Attributes it shows whats in stock in the attributes and I don't want that to be shown.

 

 

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

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