Page 3 of 16 FirstFirst 1234513 ... LastLast
Results 21 to 30 of 1673

Hybrid View

  1. #1
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,229
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    My Sitemap Page does not load, it is just blank and I am getting these errors.

    [06-Nov-2019 15:03:18 UTC] PHP Fatal error: Call to undefined method zen_SiteMapTree::setParentStartEndStrings() in /home/WEBSITENAME/public_html/includes/modules/pages/site_map/header_php_site_map_zca_bootstrap.php on line 6


    [06-Nov-2019 15:03:18 UTC] Request URI: /index.php?main_page=site_map, IP address: 00.00.000.000
    --> PHP Fatal error: Call to undefined method zen_SiteMapTree::setParentStartEndStrings() in /home/WEBSITENAME/public_html/includes/modules/pages/site_map/header_php_site_map_zca_bootstrap.php on line 6.
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  2. #2
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,229
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    what do I need to do if I want to display two sidebars just before the footer on the mobile layout?
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  3. #3
    Join Date
    Jul 2007
    Posts
    342
    Plugin Contributions
    7

    Default Re: ZCA Bootstrap Template

    I am using Zencart 1.5.6c PHP 7.3
    On the create an account page I am not seeing the newsletter options show:
    Click image for larger version. 

Name:	Screenshot .jpg 
Views:	304 
Size:	12.0 KB 
ID:	18734
    All I am seeing is the Text but no radio buttons or check box
    Can anyone help please, thanks

  4. #4
    Join Date
    Jul 2007
    Posts
    342
    Plugin Contributions
    7

    Default Re: ZCA Bootstrap Template

    Sorry to ask again but has anyone an idea how I can fix this, thanks
    Quote Originally Posted by ianhg View Post
    I am using Zencart 1.5.6c PHP 7.3
    On the create an account page I am not seeing the newsletter options show:
    Click image for larger version. 

Name:	Screenshot .jpg 
Views:	304 
Size:	12.0 KB 
ID:	18734
    All I am seeing is the Text but no radio buttons or check box
    Can anyone help please, thanks

  5. #5
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,229
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by ianhg View Post
    Sorry to ask again but has anyone an idea how I can fix this, thanks
    are the radio buttons in the html when you view the source?
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  6. #6
    Join Date
    Jul 2007
    Posts
    342
    Plugin Contributions
    7

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Nick1973 View Post
    are the radio buttons in the html when you view the source?
    <fieldset>
    <legend>Newsletter and Email Details</legend>
    <input class="custom-control-input" type="checkbox" name="newsletter" value="1" id="newsletter-checkbox" /><label class="checkboxLabel" for="newsletter-checkbox">Subscribe to Our Newsletter.</label><br class="clearBoth" />


    <input class="custom-control-input" type="radio" name="email_format" value="HTML" checked="checked" id="email-format-html" /><label class="radioButtonLabel" for="email-format-html">HTML</label><input class="custom-control-input" type="radio" name="email_format" value="TEXT" id="email-format-text" /><label class="radioButtonLabel" for="email-format-text">TEXT-Only</label><br class="clearBoth" />
    </fieldset>
    Thanks for reply

  7. #7
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,229
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    Still got issues with the sitemap page:

    [24-Jan-2020 10:18:43 UTC] PHP Fatal error: Cannot redeclare class zen_SiteMapTree in /home/MYSITE/public_html/includes/classes/site_map.php on line 19


    [24-Jan-2020 10:18:43 UTC] Request URI: /index.php?main_page=site_map, IP address: 00.00.000.000
    --> PHP Fatal error: Cannot redeclare class zen_SiteMapTree in /home/MYSITE/public_html/includes/classes/site_map.php on line 19.

    Tried replacing includes/classes/site_map.php with the original from a fresh download and I am still getting the same error
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  8. #8
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,229
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Nick1973 View Post
    Still got issues with the sitemap page:

    [24-Jan-2020 10:18:43 UTC] PHP Fatal error: Cannot redeclare class zen_SiteMapTree in /home/MYSITE/public_html/includes/classes/site_map.php on line 19


    [24-Jan-2020 10:18:43 UTC] Request URI: /index.php?main_page=site_map, IP address: 00.00.000.000
    --> PHP Fatal error: Cannot redeclare class zen_SiteMapTree in /home/MYSITE/public_html/includes/classes/site_map.php on line 19.

    Tried replacing includes/classes/site_map.php with the original from a fresh download and I am still getting the same error
    Interesting:

    On line 20 of includes/classes/site_map.php we have this:

    PHP Code:
    class zen_SiteMapTree {   var $root_category_id 0,       $max_level 0,       $data = array(),       $root_start_string '',       $root_end_string '',       $parent_start_string '',       $parent_end_string '',       $parent_group_start_string "\n<ul>",       $parent_group_end_string "</ul>\n",       $child_start_string '<li>',       $child_end_string "</li>\n",       $spacer_string '',       $spacer_multiplier 1
    If I change
    PHP Code:
    var $root_category_id 0
    to
    PHP Code:
    var $root_category_id = -0
    the sitemap displays correctly
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  9. #9
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,229
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Nick1973 View Post

    Interesting:

    On line 20 of includes/classes/site_map.php we have this:

    PHP Code:
    class zen_SiteMapTree {   var $root_category_id 0,       $max_level 0,       $data = array(),       $root_start_string '',       $root_end_string '',       $parent_start_string '',       $parent_end_string '',       $parent_group_start_string "\n<ul>",       $parent_group_end_string "</ul>\n",       $child_start_string '<li>',       $child_end_string "</li>\n",       $spacer_string '',       $spacer_multiplier 1
    If I change
    PHP Code:
    var $root_category_id 0
    to
    PHP Code:
    var $root_category_id = -0
    the sitemap displays correctly
    Strange, that solutions works here:

    https://ventureengravings.uk/index.p..._page=site_map

    but not here:

    https://venturegraphicdesign.uk/inde..._page=site_map

    HELP!!!!
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  10. #10
    Join Date
    Jan 2010
    Posts
    49
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    I recently ran into a roadblock installing an Order Total module (Shipping Insurance - ot_insurance - 3.3.0 from Numinix - 2.3.2 from the addons is similar) on ZC 1.5.6c PHP 7.1.29 on XAMPP. The checkbox for the customer to select/deselect insurance is NOT visible. It is present in the HTML:
    Code:
    <!--bof discount coupon card-->
    <div id="discountCoupon-card" class="card mb-3">
    <h4 id="discountCoupon-card-header" class="card-header">
    Shipping Insurance</h4> 
    
    <div id="discountCoupon-card-body" class="card-body p-3">
    
    <p>Click here to add optional insurance to your order:</p>
    <div id="discountCoupon-gvBal"></div>
    
    <label class="inputLabel" for="opt_insurance">$7.10</label>
    <input class="custom-control-input" type="checkbox" name="opt_insurance" value="1" id="opt_insurance" /><input type="hidden" name="insurance" value="1" /></div>  
    </div>
    <!--eof discount coupon card-->
    I've chased this enough to be quite sure that it has to do with the template and its interactions with Order Total modules (probably also payment and shipping). Shipping is just an example module. I'm not sure how many others, if any, have checkboxes for customer selection.

    I'm not sure what to do to get the checkbox to appear. Suggestions?

 

 
Page 3 of 16 FirstFirst 1234513 ... LastLast

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