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.
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
plc613
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
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
bislewl
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!
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
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
leon2lil
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
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: ’
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
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');
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
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: with no spaces.
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
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.