Page 41 of 63 FirstFirst ... 31394041424351 ... LastLast
Results 401 to 410 of 623
  1. #401
    Join Date
    Apr 2014
    Location
    Canada
    Posts
    249
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    How do I remove Best Sellers / New Arrivals / On Sale completely from the main page? I tried turning off conf->index->'Show New Products on Main Page','Show Featured Products on Main Page','Show Special Products on Main Page' and 'Show Upcoming Products on Main Page' to no avail. I also checked to disable layout box featured but it's not showing as active. I see nothing logically hard coded in tpl_main either.

  2. #402
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by plc613 View Post
    How do I remove Best Sellers / New Arrivals / On Sale completely from the main page? I tried turning off conf->index->'Show New Products on Main Page','Show Featured Products on Main Page','Show Special Products on Main Page' and 'Show Upcoming Products on Main Page' to no avail. I also checked to disable layout box featured but it's not showing as active. I see nothing logically hard coded in tpl_main either.
    it's kinda a hack but you can comment out:
    PHP Code:
      require( $template->get_template_dir('tpl_modules_hp_product_carousels.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_modules_hp_product_carousels.php'); 
    around line 68 in \includes\templates\tableau\templates\tpl_index_default.php

  3. #403
    Join Date
    Apr 2014
    Location
    Canada
    Posts
    249
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by bislewl View Post
    it's kinda a hack but you can comment out:
    PHP Code:
      require( $template->get_template_dir('tpl_modules_hp_product_carousels.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_modules_hp_product_carousels.php'); 
    around line 68 in \includes\templates\tableau\templates\tpl_index_default.php
    Thanks!

  4. #404
    Join Date
    Jan 2012
    Posts
    38
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Hi,
    Thanks for the help before...
    Is there a way to add links next to categories on that nav bar?
    I.e having categories then like home contact us about us

  5. #405
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by leon2lil View Post
    Hi,
    Thanks for the help before...
    Is there a way to add links next to categories on that nav bar?
    I.e having categories then like home contact us about us
    Yes, you can use Ez-Pages header settings. they will NOT have drop downs

    For more complicated items.

    Otherwise you can modify the includes/templates/tableau/common/tpl_header.php

    in the
    HTML Code:
    <ul id="nav-menu">
    you can add li's

    example:

    for just a single item add:
    HTML Code:
    <li>
         <a href="page_link"><span>PAGE NAME HERE</span></a>
    </li>

    for drop downs
    HTML Code:
    <li>
    <a href="top_page"><span>TOP</span></a>
          <ul class="sub-menu">
              <li><a href="page_link1"><span>PAGE NAME HERE 1</span></a></li>
          </ul>
    </li>
    for dropdowns with dropdowns
    HTML Code:
    <li>
    <a href="top_page"><span>TOP</span></a>
         <ul class="sub-menu">
             <li><a href="page_link1"><span>PAGE NAME HERE 1</span></a>
                 <ul class="sub--sub-menu">
                     <li><a href="page_link1">PAGE NAME HERE 1</a></li>
                 </ul>
            </li>
         </ul>
    </li>
    Note the span tag on the first one

  6. #406
    Join Date
    Apr 2010
    Posts
    269
    Plugin Contributions
    1

    Default Re: Tableau Responsive Theme - Support Thread

    I didn't see it mentioned anywhere, but if the store name has an apostrophe in it, the admin page will be unavailable. I had to replace the apostrophe in my store name in the database to: ’

  7. #407
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by vanhorn_s View Post
    I didn't see it mentioned anywhere, but if the store name has an apostrophe in it, the admin page will be unavailable. I had to replace the apostrophe in my store name in the database to: ’
    You can escape the ' with a \

    Example:
    PHP Code:
    define('DEFINED_VARIABLE','George\'s Store'); 

  8. #408
    Join Date
    Apr 2010
    Posts
    269
    Plugin Contributions
    1

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by vanhorn_s View Post
    I didn't see it mentioned anywhere, but if the store name has an apostrophe in it, the admin page will be unavailable. I had to replace the apostrophe in my store name in the database to: ’
    Sorry, it changed my code to an apostrophe:
    Code:
     & # 8 2 1 7 ;
    with no spaces.
    Last edited by vanhorn_s; 28 Sep 2015 at 10:30 PM.

  9. #409
    Join Date
    Apr 2010
    Posts
    269
    Plugin Contributions
    1

    Default Re: Tableau Responsive Theme - Support Thread

    Error in log folder when opening home page:
    Code:
    [28-Sep-2015 17:14:46 America/Denver] Request URI: /newzen/, IP address: 97.117.133.180
    #1  DOMDocument->load() called at [/home2/redsauto/public_html/newzen/includes/templates/tableau/templates/tpl_index_default.php:100]
    #2  require(/home2/redsauto/public_html/newzen/includes/templates/tableau/templates/tpl_index_default.php) called at [/home2/redsauto/public_html/newzen/includes/modules/pages/index/main_template_vars.php:366]
    #3  require(/home2/redsauto/public_html/newzen/includes/modules/pages/index/main_template_vars.php) called at [/home2/redsauto/public_html/newzen/includes/templates/tableau/common/tpl_main_page.php:201]
    #4  require(/home2/redsauto/public_html/newzen/includes/templates/tableau/common/tpl_main_page.php) called at [/home2/redsauto/public_html/newzen/index.php:97]
    
    [28-Sep-2015 17:14:46 America/Denver] PHP Warning:  DOMDocument::load(): Empty string supplied as input in /home2/redsauto/public_html/newzen/includes/templates/tableau/templates/tpl_index_default.php on line 100

  10. #410
    Join Date
    Apr 2010
    Posts
    269
    Plugin Contributions
    1

    Default Re: Tableau Responsive Theme - Support Thread

    Another question. at the bottom of the home page, can I switch positions with specials, and featured? I don't have specials all the time, and so the default is blank.

 

 
Page 41 of 63 FirstFirst ... 31394041424351 ... LastLast

Similar Threads

  1. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Templates, Stylesheets, Page Layout
    Replies: 1087
    Last Post: 18 Jan 2025, 07:23 PM
  2. v155 Support Thread - Responsive Color Changes for 155
    By dbltoe in forum Templates, Stylesheets, Page Layout
    Replies: 99
    Last Post: 1 Oct 2021, 12:31 PM
  3. v155 Tableau Theme configuration not working.
    By tunes in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 22 Mar 2017, 06:53 PM
  4. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  5. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 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