Page 21 of 125 FirstFirst ... 1119202122233171121 ... LastLast
Results 201 to 210 of 1248
  1. #201
    Join Date
    Feb 2010
    Posts
    237
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Hi:

    I took out the text in the bannerboxHeading. I could not remove the heading altogether but the heading got smaller so that will work for me for right now.

    Thanks for your help.

    Dave

  2. #202
    Join Date
    Mar 2005
    Posts
    26
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Hi I would appreciate those files as a logo in a sidebox sounds like a plan.
    Cheers in anticipation Bob

  3. #203
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,846
    Plugin Contributions
    25

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by merlin57 View Post
    Hi I would appreciate those files as a logo in a sidebox sounds like a plan.
    Cheers in anticipation Bob
    Please send me a PM, with your email address, so I can send them to you.

  4. #204
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    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

  5. #205
    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:
    Name:  Screenshot .jpg
Views: 224
Size:  12.0 KB
    All I am seeing is the Text but no radio buttons or check box
    Can anyone help please, thanks

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

    red flag Re: ZCA Bootstrap Template

    This is the PHP in includes/classes/site_map.php. As you can see it already contains the lines you suggest could be wrong in my site_map.php file.

    PHP Code:
    <?php/** * site_map.php * * @package general * @copyright Copyright 2003-2018 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: Drbyte Mon Nov 5 09:42:04 2018 -0500 Modified in v1.5.6 $ */if (!defined('IS_ADMIN_FLAG')) {  die('Illegal Access');}/** * site_map.php * * @package general */ 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;
       function __construct() {     global $db;     $this->data = array();     $categories_query = "select c.categories_id, cd.categories_name, c.parent_id                      from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd                      where c.categories_id = cd.categories_id                      and cd.language_id = '" . (int)$_SESSION['languages_id'] . "'                      and c.categories_status != '0'                      order by c.parent_id, c.sort_order, cd.categories_name";         $categories = $db->Execute($categories_query);         while (!$categories->EOF) {           $this->data[$categories->fields['parent_id']][$categories->fields['categories_id']] = array('name' => $categories->fields['categories_name'], 'count' => 0);           $categories->MoveNext();         }   }
       function buildBranch($parent_id, $level = 0, $parent_link = '') {    $result = $this->parent_group_start_string;
        if (isset($this->data[$parent_id])) {      foreach ($this->data[$parent_id] as $category_id => $category) {        $category_link = $parent_link . $category_id;        $result .= $this->child_start_string;        if (isset($this->data[$category_id])) {          $result .= $this->parent_start_string;        }
            if ($level == 0) {          $result .= $this->root_start_string;        }        $result .= str_repeat($this->spacer_string, $this->spacer_multiplier * $level) . '<a href="' . zen_href_link(FILENAME_DEFAULT, 'cPath=' . $category_link) . '">';        $result .= $category['name'];        $result .= '</a>';
            if ($level == 0) {          $result .= $this->root_end_string;        }
            if (isset($this->data[$category_id])) {          $result .= $this->parent_end_string;        }
    //        $result .= $this->child_end_string;
           if (isset($this->data[$category_id]) && (($this->max_level == '0') || ($this->max_level > $level+1))) {         $result .= $this->buildBranch($category_id, $level+1, $category_link . '_');       }       $result .= $this->child_end_string;
         }   }
        $result .= $this->parent_group_end_string;
        return $result;  }   function buildTree() {     return $this->buildBranch($this->root_category_id);   }//-bof-zca_bootstrap  *** 1 of 1 ***    public function setParentStartEndStrings($start, $end = "</ul>\n")    {        $this->parent_group_start_string = $start;        $this->parent_group_end_string = $end;    }    public function setChildStartString($start, $end = "</li>\n")    {        $this->child_start_string = $start;        $this->child_end_string = $end;    }//-eof-zca_bootstrap  *** 1 of 1 ***    }
    Quote Originally Posted by OldNGrey View Post
    I can reproduce the error by using the original ZC 156c site_map.php in \includes\classes\.
    This needs to be edited or replaced with site_map.php provided in the Bootstrap template.

    The lines from approximately line 93, starting with "//-bof-zca_bootstrap *** 1 of 1 ***" must be in the file.

    --------
    environment Dev: Zen Cart 156c; Apache 2.4.33; PHP 7.3.1; MySQL 5.7.21; Windows 10
    environment Test: Zen Cart 156a; Apache 2.4.29; PHP 7.2.4; MySQL 5.7.24; Linux 4.15.0

    packages / add-ons:
    ckeditor ; clone template 1.2.0; payment module fee; Direct bank Deposit V1.5.revised; zencart155 securepayxml (modified); ozpost v4.2.7;
    ceon_back_in_stock_notifications.9 (modified); export_shipping_information_V1.3.5 (modified); edit_orders-4.3.5; master password 4; admin log in as customer; ZCA bootstrap template-for-156-v2.0.0c; image checker 2.0; sales report 3.2.2; email archive manager 1-8e; zenNoncaptcha v0.5
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  7. #207
    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:
    Name:  Screenshot .jpg
Views: 224
Size:  12.0 KB
    All I am seeing is the Text but no radio buttons or check box
    Can anyone help please, thanks

  8. #208
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    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

  9. #209
    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

  10. #210
    Join Date
    Jul 2007
    Posts
    6
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Hi,

    I am just testign your template. I find it great.
    But I have some question.

    I present my price without VAT and with VAT. But the font size is too large. I can not change te font-size, while <h2> size is defined in https://stackpath.bootstrapcdn.com/b...ndor/_rfs.scss.

    How can I make this links as local and make some small changes to use it with mobile phone ...?

    thank you for your reply
    B.

 

 

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 94
    Last Post: 16 Mar 2024, 04:13 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