-
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.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
Sorry, it changed my code to an apostrophe:
with no spaces.
This actually works better:
Code:
define('DEFINED_VARIABLE','George\'s Store');
The other code worked great, except for the confirmation email showed the code.
-
Re: Tableau Responsive Theme - Support Thread
The Admin Template Selection won't acknowledge this Tableau template in any of the versions listed on this site or on GitHub.
I've followed numinix's directions under Tableau Theme Installation and documentation Table of Contents. I'm running a new install of Zen Cart 1.5.4 on a LAMP server, PHP 5.6.11 MySQL 5.6.23. The Admin Template Selection will not acknowledge the template. I've tried uploading the various versions posted, since it was suggested to someone else in the forums, but Admin Template Selection does not recognize any of them. I even tried the versions on GitHub. If I upload a copy of its' own template_info.php file to its' own top level dir, then the Admin Template Selection will list it, but not boot it. Tried the various permissions settings as stated in the instructions. Cleared caches, everywhere, on all software and hardware.
When I follow the custom template instructions at https://www.zen-cart.com/content.php?180 and at https://www.zen-cart.com/wiki/index...._-_Customizing, the templates I produce using those instructions do show up in the Admin Template Selection.
The instructions state the extracted tarball file structure must be maintained; is the structure correct as intended? If numinix is releasing versions for different carts, those listed here may not be those intended for Zen Cart, or they may need some further tweeking not mentioned in the instructions.
I would like to use the template, but Zen Cart 1.5.4 won't recognize or install any version as downloaded.
What suggestions do you all have?
Thanks.
-
2 Attachment(s)
Re: Tableau Responsive Theme - Support Thread
Hi All.
Any ideas how to resolve a little bug I found? I use Zen 1.54 & PHP 5.4, The template is Version 1!
In The "Account" section, when no orders are present and the "Order History" screen is selected I get the footer mounted where the order details would normally sit, see attached pic.
Attachment 15659
Really don't know what causes this so thought would put out to the community.
Thanks in advance for any suggestions. :smile:
P.s. I love this template. It's probably one of the best free responsive templates I have ever found and use it on more than one store (yes bug in all stores I have).
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
Islesboro
The Admin Template Selection won't acknowledge this Tableau template in any of the versions listed on this site or on GitHub.
I've followed numinix's directions under Tableau Theme Installation and documentation Table of Contents. I'm running a new install of Zen Cart 1.5.4 on a LAMP server, PHP 5.6.11 MySQL 5.6.23. The Admin Template Selection will not acknowledge the template. I've tried uploading the various versions posted, since it was suggested to someone else in the forums, but Admin Template Selection does not recognize any of them. I even tried the versions on GitHub. If I upload a copy of its' own template_info.php file to its' own top level dir, then the Admin Template Selection will list it, but not boot it. Tried the various permissions settings as stated in the instructions. Cleared caches, everywhere, on all software and hardware.
When I follow the custom template instructions at
https://www.zen-cart.com/content.php?180 and at
https://www.zen-cart.com/wiki/index...._-_Customizing, the templates I produce using those instructions do show up in the Admin Template Selection.
The instructions state the extracted tarball file structure must be maintained; is the structure correct as intended? If numinix is releasing versions for different carts, those listed here may not be those intended for Zen Cart, or they may need some further tweeking not mentioned in the instructions.
I would like to use the template, but Zen Cart 1.5.4 won't recognize or install any version as downloaded.
What suggestions do you all have?
Thanks.
Hi,
I have had a similar issue previously and resolved it with the .htaccess (see installation instructions) from a later version. Also I host on Godaddy and tried to use a basic installation with Installatron (zen cart 1.51) and then upload the template. Never ever got it going....... :no:
However a fresh manual install (1.54) and manual database setup with .htaccess modified as per the instructions and it worked.
Honestly I don't know if this is your issue but worth a try. :yes:
-
Re: Tableau Responsive Theme - Support Thread
Thanks So Much Bislewl
Worked A Treat
Has any one noticed on a mobile device sometimes the logo gets cut in half.
Or is there a limit on the size of a logo I can change somewhere
Website address is prohairtherapyltd.co.uk.
-
1 Attachment(s)
Re: Tableau Responsive Theme - Support Thread
I have been asked (via PM's) how I was able to add the Information drop down menu next to the Categories drop down menu in the header of my site - HERE. I have also noticed similar questions posted here, so rather than answer a few PM's I wanted to share this here.
I basically copied the tpl_modules_categories_tabs.php and renamed it tpl_modules_information_tabs.php.
I also created an information defines page to deal with the mobile version of the menu not expanding, when you click on the parent "category" in the information menu it loads this page.
Please do not just upload all of these files to your site, use them as a guide to edit your files, as I have other modules and add-ons installed.
Here are the files I changed/created...
Attachment 15660
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
SpaceMonkey
Hi All.
Any ideas how to resolve a little bug I found? I use Zen 1.54 & PHP 5.4, The template is Version 1!
In The "Account" section, when no orders are present and the "Order History" screen is selected I get the footer mounted where the order details would normally sit, see attached pic.
Really don't know what causes this so thought would put out to the community.
Thanks in advance for any suggestions. :smile:
P.s. I love this template. It's probably one of the best free responsive templates I have ever found and use it on more than one store (yes bug in all stores I have).
I do not have this bug showing up on mine, but I do remember having to do a little tweeking on the account pages... also see if the bug mentioned on GitHub HERE could have anything to do with it.
Looking at the stock tableau 1.6.6 tpl_account_history_default.php and mine this bug fix is the only difference. I didn't notice anything in the footer that would cause this...
-
1 Attachment(s)
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
mikestaps
I have been asked (via PM's) how I was able to add the Information drop down menu next to the Categories drop down menu in the header of my site -
HERE. I have also noticed similar questions posted here, so rather than answer a few PM's I wanted to share this here.
I basically copied the tpl_modules_categories_tabs.php and renamed it tpl_modules_information_tabs.php.
I also created an information defines page to deal with the mobile version of the menu not expanding, when you click on the parent "category" in the information menu it loads this page.
Please do not just upload all of these files to your site, use them as a guide to edit your files, as I have other modules and add-ons installed.
Here are the files I changed/created...
Attachment 15660
I forgot the css file... This goes in the templates/tableau/css folder
Attachment 15661
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
mikestaps
I have been asked (via PM's) how I was able to add the Information drop down menu next to the Categories drop down menu in the header of my site -
HERE. I have also noticed similar questions posted here, so rather than answer a few PM's I wanted to share this here.
I basically copied the tpl_modules_categories_tabs.php and renamed it tpl_modules_information_tabs.php.
I also created an information defines page to deal with the mobile version of the menu not expanding, when you click on the parent "category" in the information menu it loads this page.
Please do not just upload all of these files to your site, use them as a guide to edit your files, as I have other modules and add-ons installed.
Here are the files I changed/created...
Attachment 15660
Thank you for this. Where are the names defined for this?
On my test site, I still have HEADER_TITLE_INFORMATION next to categories, rather than information, also HEADER_TITLE_CUSTOMER_SERVICE, and TITLE_GENERAL.
redsautorehab.com/newzen
-
Re: Tableau Responsive Theme - Support Thread
In the left column sideboxes, the reviews sidebox has blue text that shows REVIEWS [MORE], and I cannot collapse the sidebox. The featured sidebox did the same thing, but I just turned it off, because I don't care about it.
Also, is there a way of setting the default sort order to best selling? When you navigate from a mobile device, it does not have the entire drop down menu, and so main categories are all you see, rather than sub categories.
http://redsautorehab.com/newzen/inde...index&cPath=13
-
Re: Tableau Responsive Theme - Support Thread
Hi everyone, long time since I retouched my heavily customized tableau. this morning i've installed the new one, over a 1.5.4 zencart, using old patched database.
before I go into extra custom work, just got this very odd problem. surely is just something in the settings I am missing...
Ok, in my old version (1.2) the main category page shows all the subcategories
http://www.londonsatman.co.uk/italian-satellite-tv-77/
with the same settings, but on the latest version of the template, the category main page show all the products present in the subcategories
http://www.londonsatman.co.uk/zencar...index&cPath=77
I would like the main category page to show subcategories, and also a small thumb for it. I remember when I tried to update a few months ago this was the result but as I was very busy I've abandoned the upgrade, but can't manage to have it now
here are a few conf settings:
Layout Settings
Main Page - Opens with Category 0
Categories - Always Open to Show SubCategories 1
many thanks for your time in reading this.
-
1 Attachment(s)
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
Thank you for this. Where are the names defined for this?
On my test site, I still have HEADER_TITLE_INFORMATION next to categories, rather than information, also HEADER_TITLE_CUSTOMER_SERVICE, and TITLE_GENERAL.
redsautorehab.com/newzen
In the tableau_defines.php file that is attached... That files goes in the catalog\includes\languages\english\extra_definitions\tableau folder.
I will revise the complete zip file as well.
Attachment 15666
-
1 Attachment(s)
Re: Tableau Responsive Theme - Support Thread
This is the revised zip file for the information tabs
Attachment 15667
-
Re: Tableau Responsive Theme - Support Thread
Under Facebook Like Button Configuration...it only gives me a version number (1.3.2). Should there be more options there?
Also, on the product page, the Facebook text "Be the first of your friends to like this." runs behind the G+ and Pinterest buttons...any way to change that?
Finally...when I view the source code of any page in my web browser, the Categories menu includes links to all the products in the categories that do not have sub categories. These product links do not show up in the actual menu. Is that how it is supposed to be?
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
satello
Hi everyone, long time since I retouched my heavily customized tableau. this morning i've installed the new one, over a 1.5.4 zencart, using old patched database.
before I go into extra custom work, just got this very odd problem. surely is just something in the settings I am missing...
Ok, in my old version (1.2) the main category page shows all the subcategories
http://www.londonsatman.co.uk/italian-satellite-tv-77/
with the same settings, but on the latest version of the template, the category main page show all the products present in the subcategories
http://www.londonsatman.co.uk/zencar...index&cPath=77
I would like the main category page to show subcategories, and also a small thumb for it. I remember when I tried to update a few months ago this was the result but as I was very busy I've abandoned the upgrade, but can't manage to have it now
here are a few conf settings:
Layout Settings
Main Page - Opens with Category 0
Categories - Always Open to Show SubCategories 1
many thanks for your time in reading this.
This is caused by a change in the includes\modules\pages\index\main_template_vars.php file
To switch back to the old way first uncomment lines 64 THROUGH 123 and line 126.
Code:
/*$sql = "SELECT cd.categories_name, c.categories_image
FROM " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
WHERE c.categories_id = :categoriesID
AND cd.categories_id = :categoriesID
AND cd.language_id = :languagesID
AND c.categories_status= '1'";
$sql = $db->bindVars($sql, ':categoriesID', $current_category_id, 'integer');
$sql = $db->bindVars($sql, ':languagesID', $_SESSION['languages_id'], 'integer');
$category = $db->Execute($sql);
if (isset($cPath) && strpos($cPath, '_'))
{
// check to see if there are deeper categories within the current category
$category_links = array_reverse($cPath_array);
for($i=0, $n=sizeof($category_links); $i<$n; $i++)
{
$sql = "SELECT count(*) AS total
FROM " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
WHERE c.parent_id = :parentID
AND c.categories_id = cd.categories_id
AND cd.language_id = :languagesID
AND c.categories_status= '1'";
$sql = $db->bindVars($sql, ':parentID', $category_links[$i], 'integer');
$sql = $db->bindVars($sql, ':languagesID', $_SESSION['languages_id'], 'integer');
$categories = $db->Execute($sql);
if ($categories->fields['total'] < 1)
{
// do nothing, go through the loop
} else {
$categories_query = "SELECT c.categories_id, cd.categories_name, c.categories_image, c.parent_id
FROM " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
WHERE c.parent_id = :parentID
AND c.categories_id = cd.categories_id
AND cd.language_id = :languagesID
AND c.categories_status= '1'
ORDER BY sort_order, cd.categories_name";
$categories_query = $db->bindVars($categories_query, ':parentID', $category_links[$i], 'integer');
$categories_query = $db->bindVars($categories_query, ':languagesID', $_SESSION['languages_id'], 'integer');
break; // we've found the deepest category the customer is in
}
}
} else {
$categories_query = "SELECT c.categories_id, cd.categories_name, c.categories_image, c.parent_id
FROM " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
WHERE c.parent_id = :parentID
AND c.categories_id = cd.categories_id
AND cd.language_id = :languagesID
AND c.categories_status= '1'
ORDER BY sort_order, cd.categories_name";
$categories_query = $db->bindVars($categories_query, ':parentID', $current_category_id, 'integer');
$categories_query = $db->bindVars($categories_query, ':languagesID', $_SESSION['languages_id'], 'integer');
}
$categories = $db->Execute($categories_query);
$number_of_categories = $categories->RecordCount();
$new_products_category_id = $current_category_id;*/
/////////////////////////////////////////////////////////////////////////////////////////////////////
//$tpl_page_body = 'tpl_index_categories.php';
/////////////////////////////////////////////////////////////////////////////////////////////////////
Next comment out this section (129-196):
Code:
//BOF SHOW ALL PRODUCTS FOR PARENT CATEGORIES
if (SHOW_PRODUCT_INFO_ALL_PRODUCTS == '1') {
// set a category filter
$new_products_category_id = $cPath;
} else {
// do not set the category
}
// create column list
$define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL,
'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME,
'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER,
'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE,
'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY,
'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT,
'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE);
/* ,
'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW);
*/
asort($define_list);
reset($define_list);
$column_list = array();
foreach ($define_list as $key => $value)
{
if ($value > 0) $column_list[] = $key;
}
$select_column_list = '';
for ($i=0, $n=sizeof($column_list); $i<$n; $i++)
{
switch ($column_list[$i])
{
case 'PRODUCT_LIST_MODEL':
$select_column_list .= 'p.products_model, ';
break;
case 'PRODUCT_LIST_NAME':
$select_column_list .= 'pd.products_name, ';
break;
case 'PRODUCT_LIST_MANUFACTURER':
$select_column_list .= 'm.manufacturers_name, ';
break;
case 'PRODUCT_LIST_QUANTITY':
$select_column_list .= 'p.products_quantity, ';
break;
case 'PRODUCT_LIST_IMAGE':
$select_column_list .= 'p.products_image, ';
break;
case 'PRODUCT_LIST_WEIGHT':
$select_column_list .= 'p.products_weight, ';
break;
}
}
// always add quantity regardless of whether or not it is in the listing for add to cart buttons
if (PRODUCT_LIST_QUANTITY < 1) {
$select_column_list .= 'p.products_quantity, ';
}
// set the product filters according to selected product type
$typefilter = 'default';
if (isset($_GET['typefilter'])) $typefilter = $_GET['typefilter'];
require(zen_get_index_filters_directory($typefilter . '_filter.php'));
////////////////////////////////////////////////////////////////////////////////////////////////////////////
$tpl_page_body = 'tpl_index_product_list.php';
////////////////////////////////////////////////////////////////////////////////////////////////////////////
//EOF SHOW ALL PRODUCTS FOR PARENT CATEGORIES
This will revert to sub-category photos showing when a parent category is selected.
-
Re: Tableau Responsive Theme - Support Thread
YOU ARE A STAR, YOU REALLY ARE!!!
Thanks for your help, this has been bugging me for a week. Just a question, is this related to this template only, or it is for the core cart?
As I've asked the same question in the main forum, and nobody new anything, thinking as well that was a db problem.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
leon2lil
Thanks So Much Bislewl
Worked A Treat
Has any one noticed on a mobile device sometimes the logo gets cut in half.
Or is there a limit on the size of a logo I can change somewhere
Website address is prohairtherapyltd.co.uk.
The styling that comes with the template assumes a logo that is longer than it is wide (see the Tableau logo for reference).
If your logo has two lines or a little extra height, this will happen.
The reason is that the responsive CSS resizes the image based on width. Meaning, if the width of the image doesn't fit, the CSS makes the image smaller.
So if your image is tall, the CSS won't know to resize it.
Ideally, you could change the CSS from max-width:100% to have max-height:100% so that it would resize based on height, but that isn't how things work.
Instead, do the following and adjust as needed:
1. Open stylesheet_responsive.css
2. Find #logo img {
3. Add max-width: 97px; (for me a width of 97px caused an image resize that fit the height correctly. You will need to adjust this to whatever fits your logo.)
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
satello
YOU ARE A STAR, YOU REALLY ARE!!!
Thanks for your help, this has been bugging me for a week. Just a question, is this related to this template only, or it is for the core cart?
As I've asked the same question in the main forum, and nobody new anything, thinking as well that was a db problem.
I'm thinking that this file would have an effect site wide, and not just in the tableau template, as it is not in a tableau "override" folder. I'm not sure that there is a way to use and override in this case.
-
Re: Tableau Responsive Theme - Support Thread
Suggestion for the developers: as there is the option to customize the colors of the Drop Down Background Color, etc it would be a good idea to include the same color scheme for the responsive design. What I mean is they give the option to customize that part of the layout, and with a little effort in the coding this could be reflected side wide even when in responsive mode
At the moment when drop down are opened in mobile view, the colors are different from the ones in full view (if customized), unless we go hard-coding into the responsive.css and do it ourselves but this is something i really don't want (not because I am not capable...)
just my thoughts
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
mikestaps
I have been asked (via PM's) how I was able to add the Information drop down menu next to the Categories drop down menu in the header of my site -
HERE. I have also noticed similar questions posted here, so rather than answer a few PM's I wanted to share this here.
I basically copied the tpl_modules_categories_tabs.php and renamed it tpl_modules_information_tabs.php.
I also created an information defines page to deal with the mobile version of the menu not expanding, when you click on the parent "category" in the information menu it loads this page.
Please do not just upload all of these files to your site, use them as a guide to edit your files, as I have other modules and add-ons installed.
Here are the files I changed/created...
Attachment 15660
You are very kind for sharing, thanks!
-
Re: Tableau Responsive Theme - Support Thread
mike, nice design and custom work on your site. one thing. the images on the featured section home page carousel look too big, infact they overlap each other.
but very good taste for colours and style
-
Re: Tableau Responsive Theme - Support Thread
How can you get the search box to appear on the top right?
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
spawnie69
How can you get the search box to appear on the top right?
I found my answer in the Layout Box Controller.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
satello
mike, nice design and custom work on your site. one thing. the images on the featured section home page carousel look too big, infact they overlap each other.
but very good taste for colours and style
Thank you. That's is odd, the images look fine from here... what browser are you using?
Ok, So I just double checked in Firefox, IE, and safari (I tend to favor Chrome). IE and firefox produce the image overlap... Somethinng else to dig into.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
Mike G
I am loving the looks of Tableau. Only I can't seem to find out how to change the title on the accordion that says "FEATURES".
As you may know... What is automatically generated in this area when a customer expands this tab are things like Model #, Product Weight, etc. So I don't think "FEATURES" is really the best description for this section.
I've spent days and nights pouring through files and code trying to figure out how and where to (make what I thought would be a simple) change to the title of this tab - I'm at my wits end, feeling dumb and frustrated.
I'm hoping one of the smart :bow: experts here, will be able to explain to me how and where to change this tab's title - like I'm a three year old.
:please: - 'cause the lack of sleep over this one has turned my brain to jello :bangin:
Any idea on how we can remove Features from the product description?
Has anyone figured out how to omit the features info from the product information?
-
Re: Unable to Save Global Config
I am the same, installed 1.6.6 on a fresh domain and fresh install of Zencart 1.5.4 and 1.5.1 and I am unable to save the configurations I make in the initial template configuration..
-
Re: Unable to Save Global Config
current tableau template 1.6.8 on mobile displays just BEST SELLERS only on front Is there a way to have tabs for BEST SELLERS - NEW - FEATURED - SPECIALS ?
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
simmys66
I am the same, installed 1.6.6 on a fresh domain and fresh install of Zencart 1.5.4 and 1.5.1 and I am unable to save the configurations I make in the initial template configuration..
I have had this issue and sometimes need to:
go to admin home
then Tools->Template selection -> Tableau -> Configuration
Also Check for Javascript errors as well...
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
spawnie69
Any idea on how we can remove Features from the product description?
Has anyone figured out how to omit the features info from the product information?
I usually just remove them from the includes/templates/tableau/templates/tpl_SOMETHING.php
That avoids it from loading completely
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
spawnie69
current tableau template 1.6.8 on mobile displays just BEST SELLERS only on front Is there a way to have tabs for BEST SELLERS - NEW - FEATURED - SPECIALS ?
There isn't at this time, however you could flip them around so it would show the one you would like.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
bislewl
I usually just remove them from the includes/templates/tableau/templates/tpl_SOMETHING.php
That avoids it from loading completely
Found the file....tpl_product_info_display.php removed the section that mentioned accordion features. Thanks bislewl for shining the light.
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
bislewl
There isn't at this time, however you could flip them around so it would show the one you would like.
How can I flip from FEATURED to BEST SELLERS?
What file do I change?
thanks
-
Re: Unable to Save Global Config
Why are slider images and my payments image looking stretched in mobile? http://www.gelcandlecompany.com/demo2/
I kept my slider images the same size as the stock images too.
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
spawnie69
How can I flip from FEATURED to BEST SELLERS?
What file do I change?
thanks
I believe this was asked and answered in this thread already, I'll look for the specific post when I get a chance...
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
mikestaps
I believe this was asked and answered in this thread already, I'll look for the specific post when I get a chance...
Found it!
https://www.zen-cart.com/showthread.php?...post1291054
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
mikestaps
Ok so looking into this (because I decided I wanted to do it as well...) The home page product carousel now respects the settings in Admin -> Configuration -> Index Listing
The modifications in the linked post are no longer needed (or possible for that matter, that code is not in the tpl_index_default.php anymore)
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
spawnie69
The payment methods image looks to be stretched in desktop as well (in chrome anyways). Adding:
Code:
.footer--message img {
max-height: 23px;
max-width: 206px;
}
to the stylesheet.css should fix that. I would put it near the css for the .footer--message around line 530.
The flexslider.css file has a min-height set around line 177, turning that off in the inspector in chrome fixes the stretched images in the slider.
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
mikestaps
Ok so looking into this (because I decided I wanted to do it as well...) The home page product carousel now respects the settings in Admin -> Configuration -> Index Listing
The modifications in the linked post are no longer needed (or possible for that matter, that code is not in the tpl_index_default.php anymore)
My site at www.gelcandlecompany.com/demo displays on my phone the BEST SELLERS.
How can I change to FEATURED instead. Can I make that change in Admin -> Configuration -> Index Listing?
by sort order I guess?
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
spawnie69
My site at
www.gelcandlecompany.com/demo displays on my phone the BEST SELLERS.
How can I change to FEATURED instead. Can I make that change in Admin -> Configuration -> Index Listing?
by sort order I guess?
0 is off, 1-4 is sort order
-
Re: Unable to Save Global Config
I just changed it! ....just changing the sort order did the trick in Admin -> Configuration -> Index Listing
No I can have the carousel display in sort order. In my case FEATURED set to 1 to display first. Thanks mikestaps!
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
mikestaps
The payment methods image looks to be stretched in desktop as well (in chrome anyways). Adding:
Code:
.footer--message img {
max-height: 23px;
max-width: 206px;
}
to the stylesheet.css should fix that. I would put it near the css for the .footer--message around line 530.
The flexslider.css file has a min-height set around line 177, turning that off in the inspector in chrome fixes the stretched images in the slider.
Thanks Mike! I managed to get my payment image to show ok now thanks!
On the flexsider.css file I see this on line 177
.flexslider .slides img {
min-height: 130px
How do i shut this off? I can edit this file and upload.
I think you were saying that I can shut his off in chrome using element inspector? I'm sorry for sounding dumb but how do I do that? I right click and click on inspect element and I could see Styles Event Listener etc..am I able to make a change somewhere in here just for observation?
thanks mike for your insight I hope I help someone someday.
-
Re: Unable to Save Global Config
Hi Zenners! I love the new Tableau template, especially for the responsive part, but noticed the product page on quite a few Tableau sites doesn't show the way it should on my smartphone. Although header and footer rescale fine, the middle/product section displays incorrectly, most obviously the image which runs off the right edge (only showing roughly 3/4 before going off the edge) and the Add To Cart button which also runs off the right edge. I considered I might have edited some files incorrectly but several of the sites mentioned in this thread have the same error (the product section not quite corresponding with the width of the screen). The standard laptop/computer page looks fine. Basically, the only site I could find which does have the product page displayed the way it should is this one (direct link to a product page): https://www.ayrbags.co.uk/shop/index...qZjUTlPbjAbFx2 Pretty much all others I came across have The Bug... : (. Btw I got the most recent version of both Zen and Tableau. Does anyone recognise this? Can it be solved? Thanks for your help!! Jen
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
Jen56789
Hi Zenners! I love the new Tableau template, especially for the responsive part, but noticed the product page on quite a few Tableau sites doesn't show the way it should on my smartphone. Although header and footer rescale fine, the middle/product section displays incorrectly, most obviously the image which runs off the right edge (only showing roughly 3/4 before going off the edge) and the Add To Cart button which also runs off the right edge. I considered I might have edited some files incorrectly but several of the sites mentioned in this thread have the same error (the product section not quite corresponding with the width of the screen). The standard laptop/computer page looks fine. Basically, the only site I could find which does have the product page displayed the way it should is this one (direct link to a product page):
https://www.ayrbags.co.uk/shop/index...qZjUTlPbjAbFx2 Pretty much all others I came across have The Bug... : (. Btw I got the most recent version of both Zen and Tableau. Does anyone recognise this? Can it be solved? Thanks for your help!! Jen
I was not able to replicate this. Can you provide an example and also what type of device you are using to check.
-
Re: Unable to Save Global Config
Is there a way to change the product info page accordian to tabs without a complete rewrite? I attempted the rewrite, got about 99% complete and had to toss it due to one nagging issue.
-
1 Attachment(s)
Re: Unable to Save Global Config
Quote:
Originally Posted by
lindasdd
I was not able to replicate this. Can you provide an example and also what type of device you are using to check.
Using a Samsung Phone. I've attached a picture - See how the product picture (top) and Add To Cart button do not fit the screen. Could it be a value in the CMS menu?
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
Jen56789
Using a Samsung Phone. I've attached a picture - See how the product picture (top) and Add To Cart button do not fit the screen. Could it be a value in the CMS menu?
It maybe files or version. Tableau at numinix is 1.6.8 Zen cart's download is still on 1.6.6.
I am running zen cart 1.54 with tableau 1.6.8 at www.gelcandlecompany.com/demo2
All looks good on my samsung s3 except my stretched top logo.
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
mikestaps
The payment methods image looks to be stretched in desktop as well (in chrome anyways). Adding:
Code:
.footer--message img {
max-height: 23px;
max-width: 206px;
}
to the stylesheet.css should fix that. I would put it near the css for the .footer--message around line 530.
The flexslider.css file has a min-height set around line 177, turning that off in the inspector in chrome fixes the stretched images in the slider.
Mike,
you are the Man. I deleted that part of the code and my images are not stretched. Once again many thanks! Have a super week!
-
Re: Unable to Save Global Config
Thanks for your reply! Yes your product page looks fine on my phone. Does this link show correctly too on your phone? (fyi this is not my site, which is not active): http://www.kathijahzohra.com/basic-j...ane-in-chili1? Thanks for checking! zenid=6315151967e7cd0fac7e64c3d680af61
Quote:
Originally Posted by
spawnie69
It maybe files or version. Tableau at numinix is 1.6.8 Zen cart's download is still on 1.6.6.
I am running zen cart 1.54 with tableau 1.6.8 at
www.gelcandlecompany.com/demo2
All looks good on my samsung s3 except my stretched top logo.
-
Re: Unable to Save Global Config
Btw. if you use the Developers Tool Kit under Tools in the admin to find all files which include the name of your logo you might track down the file which defines the size values of the header image. Might want to fiddle around with those a bit to get it to work.
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
Jen56789
Thanks for your reply! Yes your product page looks fine on my phone. Does this link show correctly too on your phone? (fyi this is not my site, which is not active):
http://www.kathijahzohra.com/basic-j...ane-in-chili1? Thanks for checking! zenid=6315151967e7cd0fac7e64c3d680af61
Just check on my phone your product image was justified to the right along with add to cart button.
-
Re: Unable to Save Global Config
Can we place a FULL SITE link somewhere in the footer?
In case a mobile user doesn't like mobile view.
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
spawnie69
Can we place a FULL SITE link somewhere in the footer?
In case a mobile user doesn't like mobile view.
I may be wrong, but I believe the answer is no.
This template is not creating a separate mobile subdomain (in which case you could provide a link to the standard domain.) It is changing the styling based on the screen size and media device.
-
Re: Unable to Save Global Config
Quote:
Originally Posted by
Jen56789
Using a Samsung Phone. I've attached a picture - See how the product picture (top) and Add To Cart button do not fit the screen. Could it be a value in the CMS menu?
I see what you mean. I fiddled with it a bit using Firebug, but without a full file compare I couldn't find the issue.
There is div somewhere on the page that is stretching past the edge. That then is pushing the container past the edge and allowing all elemnts with width 100% to also stretch.
On my test and production sites I have it working correctly so the default should be correct.
As an aside, I find styling this template to be rather difficult due to the reset.css file.
-
Re: Unable to Save Global Config
Actually Spawnie69 was right, this problem is solved by one of the latest updates listed at the Numinix site (the Zen Cart site does not list the most recent version)! Installing the files from the 1.6.7 update fixes the bug. I'd advice all users of an earlier version to check whether their product page looks ok on cell phone and if not install the updated files. Thanks Spawnie69 :smile:
Quote:
Originally Posted by
lindasdd
I see what you mean. I fiddled with it a bit using Firebug, but without a full file compare I couldn't find the issue.
There is div somewhere on the page that is stretching past the edge. That then is pushing the container past the edge and allowing all elemnts with width 100% to also stretch.
On my test and production sites I have it working correctly so the default should be correct.
As an aside, I find styling this template to be rather difficult due to the reset.css file.
-
1 Attachment(s)
Re: Paypal Express Spacing Issue
Cool, great to hear Jen56789
If you happen to accept paypal express you may want to check if you have a spacing issue between the paypal express button and the continue shopping link in the shopping cart with at least one item.
I have this spacing issue on my samsung phone and my wifes tablet. On desktop looks fine. From what I could find, it was only mentioned once early in the thread but never fixed? not too sure though.
-
Re: Paypal Express Spacing Issue
Quote:
Originally Posted by
spawnie69
Cool, great to hear Jen56789
If you happen to accept paypal express you may want to check if you have a spacing issue between the paypal express button and the continue shopping link in the shopping cart with at least one item.
I have this spacing issue on my samsung phone and my wifes tablet. On desktop looks fine. From what I could find, it was only mentioned once early in the thread but never fixed? not too sure though.
If anything I would change the CSS styling on that section to display:none; - even though technically you are not supposed to. It is just a distraction.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
mikestaps
This is caused by a change in the includes\modules\pages\index\main_template_vars.php file
To switch back to the old way first uncomment lines 64 THROUGH 123 and line 126.
Code:
/*$sql = "SELECT cd.categories_name, c.categories_image
FROM " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
WHERE c.categories_id = :categoriesID
AND cd.categories_id = :categoriesID
AND cd.language_id = :languagesID
AND c.categories_status= '1'";
$sql = $db->bindVars($sql, ':categoriesID', $current_category_id, 'integer');
$sql = $db->bindVars($sql, ':languagesID', $_SESSION['languages_id'], 'integer');
$category = $db->Execute($sql);
if (isset($cPath) && strpos($cPath, '_'))
{
// check to see if there are deeper categories within the current category
$category_links = array_reverse($cPath_array);
for($i=0, $n=sizeof($category_links); $i<$n; $i++)
{
$sql = "SELECT count(*) AS total
FROM " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
WHERE c.parent_id = :parentID
AND c.categories_id = cd.categories_id
AND cd.language_id = :languagesID
AND c.categories_status= '1'";
$sql = $db->bindVars($sql, ':parentID', $category_links[$i], 'integer');
$sql = $db->bindVars($sql, ':languagesID', $_SESSION['languages_id'], 'integer');
$categories = $db->Execute($sql);
if ($categories->fields['total'] < 1)
{
// do nothing, go through the loop
} else {
$categories_query = "SELECT c.categories_id, cd.categories_name, c.categories_image, c.parent_id
FROM " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
WHERE c.parent_id = :parentID
AND c.categories_id = cd.categories_id
AND cd.language_id = :languagesID
AND c.categories_status= '1'
ORDER BY sort_order, cd.categories_name";
$categories_query = $db->bindVars($categories_query, ':parentID', $category_links[$i], 'integer');
$categories_query = $db->bindVars($categories_query, ':languagesID', $_SESSION['languages_id'], 'integer');
break; // we've found the deepest category the customer is in
}
}
} else {
$categories_query = "SELECT c.categories_id, cd.categories_name, c.categories_image, c.parent_id
FROM " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
WHERE c.parent_id = :parentID
AND c.categories_id = cd.categories_id
AND cd.language_id = :languagesID
AND c.categories_status= '1'
ORDER BY sort_order, cd.categories_name";
$categories_query = $db->bindVars($categories_query, ':parentID', $current_category_id, 'integer');
$categories_query = $db->bindVars($categories_query, ':languagesID', $_SESSION['languages_id'], 'integer');
}
$categories = $db->Execute($categories_query);
$number_of_categories = $categories->RecordCount();
$new_products_category_id = $current_category_id;*/
/////////////////////////////////////////////////////////////////////////////////////////////////////
//$tpl_page_body = 'tpl_index_categories.php';
/////////////////////////////////////////////////////////////////////////////////////////////////////
Next comment out this section (129-196):
Code:
//BOF SHOW ALL PRODUCTS FOR PARENT CATEGORIES
if (SHOW_PRODUCT_INFO_ALL_PRODUCTS == '1') {
// set a category filter
$new_products_category_id = $cPath;
} else {
// do not set the category
}
// create column list
$define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL,
'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME,
'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER,
'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE,
'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY,
'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT,
'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE);
/* ,
'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW);
*/
asort($define_list);
reset($define_list);
$column_list = array();
foreach ($define_list as $key => $value)
{
if ($value > 0) $column_list[] = $key;
}
$select_column_list = '';
for ($i=0, $n=sizeof($column_list); $i<$n; $i++)
{
switch ($column_list[$i])
{
case 'PRODUCT_LIST_MODEL':
$select_column_list .= 'p.products_model, ';
break;
case 'PRODUCT_LIST_NAME':
$select_column_list .= 'pd.products_name, ';
break;
case 'PRODUCT_LIST_MANUFACTURER':
$select_column_list .= 'm.manufacturers_name, ';
break;
case 'PRODUCT_LIST_QUANTITY':
$select_column_list .= 'p.products_quantity, ';
break;
case 'PRODUCT_LIST_IMAGE':
$select_column_list .= 'p.products_image, ';
break;
case 'PRODUCT_LIST_WEIGHT':
$select_column_list .= 'p.products_weight, ';
break;
}
}
// always add quantity regardless of whether or not it is in the listing for add to cart buttons
if (PRODUCT_LIST_QUANTITY < 1) {
$select_column_list .= 'p.products_quantity, ';
}
// set the product filters according to selected product type
$typefilter = 'default';
if (isset($_GET['typefilter'])) $typefilter = $_GET['typefilter'];
require(zen_get_index_filters_directory($typefilter . '_filter.php'));
////////////////////////////////////////////////////////////////////////////////////////////////////////////
$tpl_page_body = 'tpl_index_product_list.php';
////////////////////////////////////////////////////////////////////////////////////////////////////////////
//EOF SHOW ALL PRODUCTS FOR PARENT CATEGORIES
This will revert to sub-category photos showing when a parent category is selected.
This is exactly what I wanted to get the category listing back but it seems to break the sort filter and the listing the products by cheapest to highest price. Or the old to new . I am not sure if you can have both. It would be good if you can as the price low to high is a nice feature..
Has anyone else noticed this and is there a fix somewhere that I have not been able to see on the forum/thread.
Thank you.
MG
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
MIKEYFM
This is exactly what I wanted to get the category listing back but it seems to break the sort filter and the listing the products by cheapest to highest price. Or the old to new . I am not sure if you can have both. It would be good if you can as the price low to high is a nice feature..
Has anyone else noticed this and is there a fix somewhere that I have not been able to see on the forum/thread.
Thank you.
MG
I resolved it by doing the following:
created a file: includes/functions/extra_functions/sort_by_functions.php
PHP Code:
<?php
function order_by_sort_by_sql($sortby, $order_by = true) {
if($order_by == true){
$listing_sql = ' ORDER BY ';
}
switch ($sortby) {
case '1':
//newest
$listing_sql .= " p.products_date_added DESC ";
break;
case '3':
//price HIGH->LOW
$listing_sql .= " p.products_price DESC ";
break;
case '4':
//price LOW->HIGH
$listing_sql .= " p.products_price ASC ";
break;
case '5':
//Name ASC
$listing_sql .= " pd.products_name ASC ";
break;
case '6':
//Name DESC
$listing_sql .= " pd.products_name DESC ";
break;
case '0':
default:
//products defualt sort order
$listing_sql .= " p.products_sort_order, pd.products_name";
break;
}
return $listing_sql;
}
includes/index_filters/default_filter.php
commented out: (around line 90ish) also similarly in the includes/modules/advanced_search_results/header_php.php
PHP Code:
array('id' => 0, 'text' => 'Default Order'),
array('id' => 1, 'text' => 'Newest First'),
//array('id' => 2, 'text' => 'Most Popular'),
array('id' => 3, 'text' => 'Price (High to Low)'),
array('id' => 4, 'text' => 'Price (Low to High)'),
array('id' => 5, 'text' => 'Name (A-Z)'),
array('id' => 6, 'text' => 'Name (Z-A)'),
...
case 'PRODUCT_LIST_WEIGHT':
$listing_sql .= " order by p.products_weight " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name";
break;
case 'PRODUCT_LIST_PRICE':
$listing_sql .= " order by p.products_price_sorter " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name";
break;
}
}
}
modified includes/templates/tableau/templates/tpl_modules_product_listing.php to have the
HTML Code:
<div class="sort-listings-wrapper">
look like this:
PHP Code:
<div class="sort-listings-wrapper">
<?php echo zen_draw_form('sortbyform', zen_href_link(zen_db_prepare_input($_GET['main_page']), zen_get_all_get_params(array('sortby', 'sort','keyword','search_in_description','inc_subcat','')), $request_type, false), 'get') . zen_hide_session_id();?>
<?php
echo zen_draw_hidden_field('main_page', zen_db_prepare_input($_GET['main_page']));
$sortbyparams = explode('&', zen_get_all_get_params(array('sortby', 'sort','')));
foreach($sortbyparams as $param) {
$param = explode('=', $param);
if(strlen($param[0]) > 1){
echo zen_draw_hidden_field($param[0], $param[1]);
}
}
?>
<label>Sort By:</label>
<?php
$sortby_array = array(
array('id' => 0, 'text' => 'Default Order'),
array('id' => 1, 'text' => 'Newest First'),
//array('id' => 2, 'text' => 'Most Popular'),
array('id' => 3, 'text' => 'Price (High to Low)'),
array('id' => 4, 'text' => 'Price (Low to High)'),
array('id' => 5, 'text' => 'Name (A-Z)'),
array('id' => 6, 'text' => 'Name (Z-A)'),
);
echo zen_draw_pull_down_menu('sortby', $sortby_array, $_GET['sortby'], 'onchange="this.form.submit();"');
?>
<?php echo '</form>';?>
</div><!--EOF .sort-listings-wrapper-->
<?php if($_GET['showall'] == 1) {?>
Hopefully that helps!
-
Re: Tableau Responsive Theme - Support Thread
I think I spoke too soon, it looks like the sort bug was fixed in version 1.6.5
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
bislewl
I think I spoke too soon, it looks like the sort bug was fixed in version 1.6.5
It was only kind of fixed... If you set a default sort order in the Admin ->Configuration -> Product Listing you cannot select/re-select that sort option in the drop down.
This was also brought up on github - here
-
Re: Tableau Responsive Theme - Support Thread
I asked a question a month ago, that never got answered. Here it is again:
Quote:
In the left column sideboxes, the reviews sidebox has blue text that shows REVIEWS [MORE], and I cannot collapse the sidebox. The featured sidebox did the same thing, but I just turned it off, because I don't care about it.
Also, is there a way of setting the default sort order to best selling? When you navigate from a mobile device, it does not have the entire drop down menu, and so main categories are all you see, rather than sub categories.
http://redsautorehab.com/index.php?m...=index&cPath=8
The reviews sidebox only shows one review, with no link to any other reviews. I would like to have it show 3, or 4 reviews.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
The # of reviews in the side is in the admin. Admin -> Configuration ->Maximum Values -> Random Product Reviews for SideBox
To collapse the side boxes edit includes\templates\tableau\jscript\jquery\jquery_filters.js
I took the code for #recentproducts and copied it for each additional sidebox I added.
PHP Code:
// original code
jQuery('#recentproducts .collapse-sidebox').on('click', function(){
jQuery(this).parent().siblings().slideToggle(function(){
});
jQuery('#recentproducts .collapse-sidebox').toggleClass('expand-sidebox');
});
// added code
jQuery('#information .collapse-sidebox').on('click', function(){
jQuery(this).parent().siblings().slideToggle(function(){
});
jQuery('#information .collapse-sidebox').toggleClass('expand-sidebox');
});
I did the collapse fix to mine awhile back, I'm not 100% there wasn't another little edit I had to do, but give this a try.
-
Re: Tableau Responsive Theme - Support Thread
Shouldn't the "more" next to "reviews" in the sidebox be a hyperlink? I would assume so, because the text is blue, but it does nothing.
-
Re: Tableau Responsive Theme - Support Thread
I just successfully updated my database from 1.39 to 1.54 on a demo shop at www.gelcandlecompany.com/demo2
For some reason the Categories link is no longer displaying the drop down categories.
Is this due to the dbase upgrade? Should I reinstall the tableau template again?
thanks for your help
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
Shouldn't the "more" next to "reviews" in the sidebox be a hyperlink? I would assume so, because the text is blue, but it does nothing.
I agree does nothing. One day numnix will get around to it, I guess.
-
Re: Tableau Responsive Theme - Support Thread
I've been working on my tableau demo2 site for a couple of weeks now and got it running and working great with it's zen cart demo store items. Once I upgraded my 1.39h database it defaulted to the classic green template, I then activated the tableau template and now the CATEGORIES link on my home page is not displaying the just imported categories. I just tried uploading template files again and nothing. Any insight is much appreciated.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
spawnie69
I've been working on my tableau demo2 site for a couple of weeks now and got it running and working great with it's zen cart demo store items. Once I upgraded my 1.39h database it defaulted to the classic green template, I then activated the tableau template and now the CATEGORIES link on my home page is not displaying the just imported categories. I just tried uploading template files again and nothing. Any insight is much appreciated.
Check your logs folder. I imagine it is setting an error.
-
Re: Tableau Responsive Theme - Support Thread
I had to replace my /includes/templates/tableau/templates/tpl_index_default.php file to prevent rss feed issues.
I still cannot see my categories appear from the link at my home page. Any other suggestions.
No more log entries that I can see. Any help is appreciated, thanks.
-
Re: Tableau Responsive Theme - Support Thread
I recently imported my 1.34h database onto my tableau template at www.gelcandlecompany.com/demo2
After the import I was welcomed with the green zen cart template, I then changed the template selection to tableau to activate.
I then discovered the CATEGORIES link on my front page will not display my imported database's categories. I see products in my listings and my admin.
Just not able to see on desktop or phone. What could this be?
Was I wrong to work on tableau template first then import data?
Anyone's advice is greatly appreciated. thank you.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
spawnie69
I just successfully updated my database from 1.39 to 1.54 on a demo shop at
www.gelcandlecompany.com/demo2
For some reason the Categories link is no longer displaying the drop down categories.
Is this due to the dbase upgrade? Should I reinstall the tableau template again?
thanks for your help
Check Admin => configuration => layout settings => Categories Tabs ON/OFF
This needs to be set to ON
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
spawnie69
I agree does nothing. One day numnix will get around to it, I guess.
It does nothing because of the collapse/expand nature of the sideboxes. To collapse or expand the side box you are clicking on the div that holds the title (ie the link) of the sidebox, with the way the "layers" are you cannot "reach" the [more] link. You could adjust the z-index of link so it would be on top, but then you wouldn't be able to expand/collapse that sidebox.
If I were using the reviews sidebox I would just edit the templates/tableau/sideboxes/tpl_reviews_random.php file to remove the link and the [more] text from the title.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
mikestaps
It does nothing because of the collapse/expand nature of the sideboxes. To collapse or expand the side box you are clicking on the div that holds the title (ie the link) of the sidebox, with the way the "layers" are you cannot "reach" the [more] link. You could adjust the z-index of link so it would be on top, but then you wouldn't be able to expand/collapse that sidebox.
If I were using the reviews sidebox I would just edit the templates/tableau/sideboxes/tpl_reviews_random.php file to remove the link and the [more] text from the title.
That file does not exist.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
That file does not exist.
Template override system....
Look in the template default folder. Copy it to the template specific folder, then edit.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
mikestaps
Template override system....
Look in the template default folder. Copy it to the template specific folder, then edit.
That file still did not have the link. After almost an hour of searching for the link, I commented out lines 13-15 in: includes/templates/tableau/common/tpl_box_default_left.php
Code:
// if ($title_link) {
// $title = '<a href="' . zen_href_link($title_link) . '">' . $title . BOX_HEADING_LINKS . '</a>';
// }
I'm no expert, but that seems like a better idea, because it will shut down links in the top of all the left sideboxes
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
mikestaps
Check Admin => configuration => layout settings => Categories Tabs ON/OFF
This needs to be set to ON
That was it! I thought that would never happen to me and it did. Thanks again Mike!
-
Re: Tableau Responsive Theme - Support Thread
Two more things.
1. I would like to change the yellow color on the social media tab, around the search bar, and several other places on the site. I changed it in the configure tableau area, but that doesn't change all of it.
2. in responsive mode, I can only expand categories, not sub categories, which makes navigation more difficult than it needs to be. If there is a way of making the main category open the sub category menu only in the drop down menu, that would be best. Another option, would be to give links for the sub categories above the products once you click on the main category, since the categories side menu does not exist in the responsive form.
http://redsautorehab.com/index.php?m...=index&cPath=8
http://redsautorehab.com/index.php?m...index&cPath=13
The second one is a better example of difficult to navigate. there are 48 products form four different sub categories, that all show up on the same page.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
Two more things.
1. I would like to change the yellow color on the social media tab, around the search bar, and several other places on the site. I changed it in the configure tableau area, but that doesn't change all of it.
2. in responsive mode, I can only expand categories, not sub categories, which makes navigation more difficult than it needs to be. If there is a way of making the main category open the sub category menu only in the drop down menu, that would be best. Another option, would be to give links for the sub categories above the products once you click on the main category, since the categories side menu does not exist in the responsive form.
http://redsautorehab.com/index.php?m...=index&cPath=8
http://redsautorehab.com/index.php?m...index&cPath=13
The second one is a better example of difficult to navigate. there are 48 products form four different sub categories, that all show up on the same page.
They say you can change colors in CSS file. Involves inspecting element and looking for it.
I too see no sub categories Wow.
-
Re: Tableau Responsive Theme - Support Thread
I would think that seeing subcategories would be important on mobile. Has this been mentioned? I maybe incorrect but I tried using searching and found nothing. Even Sheffield blue has sub categories in mobile but no search feature. Darn.
-
Re: Tableau Responsive Theme - Support Thread
[QUOTE=vanhorn_s;1295806]Two more things.
1. I would like to change the yellow color on the social media tab, around the search bar, and several other places on the site. I changed it in the configure tableau area, but that doesn't change all of it.
2. in responsive mode, I can only expand categories, not sub categories, which makes navigation more difficult than it needs to be. If there is a way of making the main category open the sub category menu only in the drop down menu, that would be best. Another option, would be to give links for the sub categories above the products once you click on the main category, since the categories side menu does not exist in the responsive form.
http://redsautorehab.com/index.php?m...=index&cPath=8
http://redsautorehab.com/index.php?m...index&cPath=13
The second one is a better example of difficult to navigate. there are 48 products form four different sub categories, that all show up on the same page.[/
I would think that seeing subcategories would be important on mobile. Has this been mentioned? I maybe incorrect but I tried using searching and found nothing. Even Sheffield blue has sub categories in mobile but no search feature. Darn.
-
Re: Tableau Responsive Theme - Support Thread
RE: Sub Categories - The Category Menu that comes stock in the Tableau template is a one level menu. That is not a bug. If you want something with multiple sub menus you will need to install a different category menu. My guess is this was done on purpose because when on mobile you don't want to complicate things with submenus (the styling becomes quite tricky to execute.)
RE: Coloring and CSS - You will find that CSS changes on the Tableau template are rather....cumbersome. There are many style sheets, lots of use of the !important tag, a separate stylesheet.php file that seems to override actual stylesheets,etc.
-
Re: Tableau Responsive Theme - Support Thread
If you use product reviews I may have stumbled on a minor 'bug':
It is entirely possible I'm incorrect, but I think part of the file includes\classes\observers\nmx_structured_data\class.breadcrumbs.php
doesn't validate (http://www.w3.org) because this code: on line 48:
'<meta itemprop="author" content='.$reviews->fields['customers_name'].'">'.
should be:
'<meta itemprop="author" content="'.$reviews->fields['customers_name'].'">'.
The change is an addition of a " at the end of content=
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
spawnie69
They say you can change colors in CSS file. Involves inspecting element and looking for it.
I too see no sub categories Wow.
I tried the developers toolkit, and searching for #CAF200, which is the color used, and nothing comes up. I will play around with it some more next week.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
lindasdd
If you use product reviews I may have stumbled on a minor 'bug':
It is entirely possible I'm incorrect, but I think part of the file includes\classes\observers\nmx_structured_data\class.breadcrumbs.php
doesn't validate (
http://www.w3.org) because this code: on line 48:
'<meta itemprop="author" content='.$reviews->fields['customers_name'].'">'.
should be:
'<meta itemprop="author" content="'.$reviews->fields['customers_name'].'">'.
The change is an addition of a " at the end of content=
Thank you for that. I haven't attempted validation yet, because I have been working on other aspects.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
lindasdd
RE: Sub Categories - The Category Menu that comes stock in the Tableau template is a one level menu. That is not a bug. If you want something with multiple sub menus you will need to install a different category menu. My guess is this was done on purpose because when on mobile you don't want to complicate things with submenus (the styling becomes quite tricky to execute.)
RE: Coloring and CSS - You will find that CSS changes on the Tableau template are rather....cumbersome. There are many style sheets, lots of use of the !important tag, a separate stylesheet.php file that seems to override actual stylesheets,etc.
It looks like I am going to need a drop down menu for each category in order to have the site mobile friendly. I already did the drop down information menu mentioned earlier in this thread, so I will just clone that one, and modify it.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
It looks like I am going to need a drop down menu for each category in order to have the site mobile friendly. I already did the drop down information menu mentioned earlier in this thread, so I will just clone that one, and modify it.
I made a drop down menu for each sub category, and got rid of the categories drop down menu.
http://redsautorehab.com/
Waht I did is at this thread: https://www.zen-cart.com/showthread....ategory-number
-
Re: Tableau Responsive Theme - Support Thread
Looks like 1.6.9 is now available from numinix at https://www.numinix.com/templates/ze...nsive-template
Wonder what are the latest changes. I'll ask them and report later if they reply.
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
spawnie69
From the version history: removed remaining files from Numinix Structured Data
Not sure what that means, but if you look at the change log, they removed quite a few files.
-
Re: Tableau Responsive Theme - Support Thread
How can I add links underneath 'All Categories' in the 'Shops' left footer column?
I can't seem to find in forum. thanks
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
From the version history: removed remaining files from Numinix Structured Data
Not sure what that means, but if you look at the change log, they removed quite a few files.
where is the change log located? thanks
-
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
vanhorn_s
From the version history: removed remaining files from Numinix Structured Data
Not sure what that means, but if you look at the change log, they removed quite a few files.
They removed outdated structured data files. IT was brought to their attention based on my validation post a couple posts back that I alerted them to as well. If you still want the structured data add on it can be found on their site.