Zen Cart Logo
Forums / Addon Templates / Tableau Responsive Theme - Support Thread

Tableau Responsive Theme - Support Thread

Views: 229,273

Results 281 to 300 of 624
18 May 2015, 4:35 AM
#281
ericbel avatar

ericbel

New Zenner

Join Date:
Feb 2011
Posts:
16
Plugin Contributions:
0

Tableau Responsive Theme - Support Thread

Hi Numinix

Before installing Tableau on my test site I try you demon site (http://www.numinix.com/demo/index.php?mod=936) with my iPhone6.

Test with Google Chrome & Safari

First impression was not really good...
First, the demo page didn't adjust to my screen and I can't resize it to fit.

Is it a bad understanding of something on my side or your demo site didn't work well with iOS device ?

Bye !

19 May 2015, 11:36 PM
#282
arthurdent avatar

arthurdent

New Zenner

Join Date:
Nov 2005
Posts:
38
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

Hi,

Thanks for the excellent template. Working through a few issues... As mentioned earlier in this thread, the product Sort By filter doesn't work - presumably as the code for handling the 'sortby' variable hasn't been written yet. Doing so is beyond me for the moment, but here's how I fixed it to use the current ZC Price & Name sorting capability (but not the Newest First & Most Popular options, which AFAIK aren't available in the ZC code):

In tpl_modules_product_listing.php:

  1. Line 21. Change:
    $sortbyparams = explode('&', zen_get_all_get_params(array('sortby', 'sort')));
    to:
    $sortbyparams = explode('&', zen_get_all_get_params(array('sortby', 'sort', 'page')));
    (This stops the page number variable being passed, so you always get the first page of the newly selected order)

  2. Line 30. Change the $sortby_array to:
    array('id' => '4d', 'text' => 'Price (High to Low)'),
    array('id' => '4a', 'text' => 'Price (Low to High)'),
    array('id' => '3a', 'text' => 'Name (A-Z)'),
    array('id' => '3d', 'text' => 'Name (Z-A)'),

  3. Line 37. Change:
    echo zen_draw_pull_down_menu('sortby', $sortby_array, $_GET['sortby'], 'onchange="this.form.submit();"');
    to:
    echo zen_draw_pull_down_menu('sort', $sortby_array, $_GET['sort'], 'onchange="this.form.submit();"');

  4. I also removed 'sort' in the ignore vars array of the zen_get_all_get_params functions in both the "View All" and "View Less" links (both above & below the product listing) - so any chosen sort order is kept when viewing all/less. (And FYI 'showall' is also listed twice in the "View Less" links).

19 May 2015, 11:37 PM
#283
arthurdent avatar

arthurdent

New Zenner

Join Date:
Nov 2005
Posts:
38
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

I also tidied up the display logic of the View All/Less links, so it now looks like this:

<?php if($_GET['showall'] == 1) { ?>
<!-- display all products num -->
<span class="quantity-products"><?php echo sprintf(TEXT_DISPLAY_NUMBER_OF_VIEW_ALL_PRODUCTS, $listing_split->number_of_rows); ?></span>
<!-- end/display all products num -->
       
<!-- show less products -->
<a href="<?php echo zen_href_link($_GET['main_page'], zen_get_all_get_params(array('showall', 'page', 'main_page')))?>" class="show-less">View Less</a>
<!-- end/show less products -->
<?php } else { ?>
<!-- display split products num -->
<span class="quantity-products"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></span>
<!-- end/display split products num -->

<?php
if($listing_split->number_of_rows > MAX_DISPLAY_PRODUCTS_LISTING)
{
?>
	<!-- show all products -->
	 <a class="show-all" href="<?php echo zen_href_link($_GET['main_page'], zen_get_all_get_params(array('showall', 'page', 'main_page')) . '&showall=1')?>">View All</a>
	<!-- end/show all products -->
<?php
}
?>
    
<!-- pagination -->
<div class="links-pagination"><?php echo TEXT_RESULT_PAGE . ' ' . $listing_split->display_links(MAX_DISPLAY_PAGE_LINKS, zen_get_all_get_params(array('page', 'info', 'x', 'y', 'main_page'))); ?></div>
<!-- end/pagination -->
<?php } ?>

Don't forget to do this both above & below the product listing (assuming you have both set to display in your Admin Product Listing config).

You'll also need to create this in your english.php:
define('TEXT_DISPLAY_NUMBER_OF_VIEW_ALL_PRODUCTS', 'Displaying <strong>%d</strong> products');

20 May 2015, 5:51 PM
#284
rufusclc avatar

rufusclc

Zen Follower

Join Date:
Sep 2008
Location:
San Diego
Posts:
159
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

Hi:
and thanks for a great responsive thread - it looks good;
and more so thanks for your patience and very quick response to my IM's with a couple queries.
Rufus

20 May 2015, 9:10 PM
#285
rufusclc avatar

rufusclc

Zen Follower

Join Date:
Sep 2008
Location:
San Diego
Posts:
159
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

rufusclc:

Hi:
and thanks for a great responsive thread - it looks good;
and more so thanks for your patience and very quick response to my IM's with a couple queries.
Rufus
Hi:
ooops, meant to say great responsive template
Rufus

23 May 2015, 9:58 PM
#286
arthurdent avatar

arthurdent

New Zenner

Join Date:
Nov 2005
Posts:
38
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

OK... I've gone to Admin/Tools/Image Handler to find out what Image Handler's all about, and in About/Help, it says "It is very strongly recommend you read through the ENTIRE "Configuration" & "Usage" sections of the Image Handler4 readme file. There you will find out exactly what Image Handler4 can do."

Maybe I'm being dim... can anybody tell me where the Image Handler4 readme file is? It doesn't appear to be anywhere in the Tableau folder.

Thankee.

25 May 2015, 3:16 AM
#287
arthurdent avatar

arthurdent

New Zenner

Join Date:
Nov 2005
Posts:
38
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

Found a wee bug...

In tpl_modules_categories_tabs.php

Line 26 - $cPath = explode('_', $_GET['cPath']); & subsequent line 33 using this exploded $cPath.

Setting $cPath as an array here caused a few errors... a couple of PHP Warnings about strpos() in main_template_vars.php on line 75, and trim() in functions_general.php on line 63, and it also meant the Manufacturer filter didn't work as $cPath wasn't getting passed as a hidden field.

Changing this to $cPath_ary = explode('_', $_GET['cPath']);, and replacing $cPath with $cPath_ary in line 34 seems to do the job. (I'd have used the more obvious "$cPath_array" but it's used elsewhere and didn't want to risk messing up some other code.)

25 May 2015, 4:08 AM
#288
llmcdonald avatar

llmcdonald

New Zenner

Join Date:
Aug 2014
Location:
Etobicoke
Posts:
48
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

When trying to add a product, I enter all the info. then click 'preview'. The preview comes up, and when I click on 'Insert' it gives me the following error:

WARNING an error occurred, please refresh the page and try again.

I have installed Canada Post Module, FedEx Web Services, UPSXML, and ckeditor.

Using ZenCart version 1.5.4

Checked error log and this is what it has in it:

[24-May-2015 21:54:04 America/Denver] PHP Fatal error: 1054:Unknown column 'products_weight_type' in 'field list' :: insert into jog_products (products_quantity, products_type, products_model, products_price, products_date_available, products_weight, products_weight_type, products_dim_type, products_length, products_width, products_height, products_ready_to_ship, products_status, products_virtual, products_tax_class_id, manufacturers_id, products_quantity_order_min, products_quantity_order_units, products_priced_by_attribute, product_is_free, product_is_call, products_quantity_mixed, product_is_always_free_shipping, products_qty_box_status, products_quantity_order_max, products_sort_order, products_discount_type, products_discount_type_from, products_price_sorter, products_image, products_date_added, master_categories_id) values ('0', '1', '', '0', null, '0', 'kgs', 'cm', '0', '0', '0', '0', '1', '0', '0', '0', '1', '1', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '', now(), '66') ==> (as called by) /home1/lhalspor/public_html/zenadmin/includes/functions/database.php on line 53 <== in /home1/lhalspor/public_html/includes/classes/db/mysql/query_factory.php on line 155

Any help would be appreciated.

25 May 2015, 6:31 AM
#289
llmcdonald avatar

llmcdonald

New Zenner

Join Date:
Aug 2014
Location:
Etobicoke
Posts:
48
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

llmcdonald:

When trying to add a product, I enter all the info. then click 'preview'. The preview comes up, and when I click on 'Insert' it gives me the following error:

WARNING an error occurred, please refresh the page and try again.

I have installed Canada Post Module, FedEx Web Services, UPSXML, and ckeditor.

Using ZenCart version 1.5.4

Checked error log and this is what it has in it:

[24-May-2015 21:54:04 America/Denver] PHP Fatal error: 1054:Unknown column 'products_weight_type' in 'field list' :: insert into jog_products (products_quantity, products_type, products_model, products_price, products_date_available, products_weight, products_weight_type, products_dim_type, products_length, products_width, products_height, products_ready_to_ship, products_status, products_virtual, products_tax_class_id, manufacturers_id, products_quantity_order_min, products_quantity_order_units, products_priced_by_attribute, product_is_free, product_is_call, products_quantity_mixed, product_is_always_free_shipping, products_qty_box_status, products_quantity_order_max, products_sort_order, products_discount_type, products_discount_type_from, products_price_sorter, products_image, products_date_added, master_categories_id) values ('0', '1', '', '0', null, '0', 'kgs', 'cm', '0', '0', '0', '0', '1', '0', '0', '0', '1', '1', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '', now(), '66') ==> (as called by) /home1/lhalspor/public_html/zenadmin/includes/functions/database.php on line 53 <== in /home1/lhalspor/public_html/includes/classes/db/mysql/query_factory.php on line 155

Any help would be appreciated.

Disregard. Cleared the history and cache on my browser, closed it and restarted. Now it's working.

26 May 2015, 3:13 PM
#290
sjdeines avatar

sjdeines

New Zenner

Join Date:
Apr 2012
Posts:
37
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

How do you change the home page of the Tableau template as to add "Monthly Specials"? I have successfully installed the Tableau template on two Zen Cart 1.5.4 engines, and have changed the settings in 'Configuration > Layout Settings' of 'Categories Box - Show Specials Link' to 'true', which was the default though it doesn't show up. Thoughts? Help! I want to use so many more of the Numinix products but need this issue solved first. Thank you!

26 May 2015, 7:29 PM
#291
sjdeines avatar

sjdeines

New Zenner

Join Date:
Apr 2012
Posts:
37
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

sjdeines:

How do you change the home page of the Tableau template as to add "Monthly Specials"? I have successfully installed the Tableau template on two Zen Cart 1.5.4 engines, and have changed the settings in 'Configuration > Layout Settings' of 'Categories Box - Show Specials Link' to 'true', which was the default though it doesn't show up. Thoughts? Help! I want to use so many more of the Numinix products but need this issue solved first. Thank you!

Does anyone know what the TITLE_HOME_TAB_NEW_PRODUCTS should be changed to in order to reflect the SPECIALS that are on listed in ZenCart? PLEASE NOTE - Simply changing 'TITLE_HOME_TAB_NEW_PRODUCTS' to 'TITLE_HOME_TAB_SPECIALS' did not work.

I have been able to get almost everything working, regarding my question above, by editing the english.php file in the folders includes\languages\tableau. I tried to paste the code here, but was limited by number of characters I could post. I tried to upload the file but was told I was trying to upload an "Invalid File".

27 May 2015, 4:12 AM
#292
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Tableau Responsive Theme - Support Thread

sjdeines:

Does anyone know what the TITLE_HOME_TAB_NEW_PRODUCTS should be changed to in order to reflect the SPECIALS that are on listed in ZenCart? PLEASE NOTE - Simply changing 'TITLE_HOME_TAB_NEW_PRODUCTS' to 'TITLE_HOME_TAB_SPECIALS' did not work.

I have been able to get almost everything working, regarding my question above, by editing the english.php file in the folders includes\languages\tableau. I tried to paste the code here, but was limited by number of characters I could post. I tried to upload the file but was told I was trying to upload an "Invalid File".

Hello -

Thanks for pointing this out to us. When we created this template we did not design it to be able to have a specials tab. With that said, we understand the need for some to have this functionality. We will work on getting a release of this out to rectify this problem. Please expect the fix by the end of the week.

27 May 2015, 4:14 AM
#293
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Tableau Responsive Theme - Support Thread

numinix:

Hello -

Thanks for pointing this out to us. When we created this template we did not design it to be able to have a specials tab. With that said, we understand the need for some to have this functionality. We will work on getting a release of this out to rectify this problem. Please expect the fix by the end of the week.

Please note that you might not see it changed on Zen-Cart.com but instead might have to go to the Github repo instead. We hope to see the fix on Zen-Cart.com by next week.

2 Jun 2015, 3:24 AM
#294
sjdeines avatar

sjdeines

New Zenner

Join Date:
Apr 2012
Posts:
37
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

I have done a search on Github, though I might have checked a little to soon. I wanted to ask if you'd post the link here for everyone to find the most recent version or updates?

4 Jun 2015, 12:12 AM
#295
picci avatar

picci

Zen Follower

Join Date:
Feb 2006
Posts:
125
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

I'm using ZC 1.5.4 & Tableau 1.5.1

Test site: http://godblessyoga.com

On home page the image carousel does not load correctly, it stalls until one of the 3 top links ( BEST SELLERS, FEATURED, SPECIALS) is clicked, then the image carousel loads. Does anyone know a solution for this?

Also on home page, the 3 columns with "About Us", Twitter and Blog, keep losing their alignment, as seen in the link above. I haven't touched the CSS in this section.

If anyone has any suggestions or comments, please let me know.

4 Jun 2015, 1:05 AM
#296
picci avatar

picci

Zen Follower

Join Date:
Feb 2006
Posts:
125
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

After further review, I have more info on the 3 columns with "About Us", Twitter and Blog, that lose their alignment.

After viewing the source code for the page and comparing it to the code in tpl_index_default.php , I see that the first 2 DIV tags in the blog section are not being written to the page, and that breaks the page formatting, as the end tags are being written to the page.

Can anyone figure this out? Could this be related to the javascript calls not loading properly in the section above it?

4 Jun 2015, 1:35 AM
#297
picci avatar

picci

Zen Follower

Join Date:
Feb 2006
Posts:
125
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

After checking the log file, I found that the problem with the 3 column alignment was because I did not have a valid BLOG feed URL in the Tableau Template Configuration settings.

For anyone with a similar issue:

Go to Tools > Template Selection

Click the "Configure" button on the Tableau image

Go to the "Home" section

Add a valid Blog RSS URL

Hope this helps someone.

I am still having the problem with the image carousel. Please let me know if you can help.

4 Jun 2015, 5:40 AM
#298
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Tableau Responsive Theme - Support Thread

Picci:

I'm using ZC 1.5.4 & Tableau 1.5.1

Test site: http://godblessyoga.com

On home page the image carousel does not load correctly, it stalls until one of the 3 top links ( BEST SELLERS, FEATURED, SPECIALS) is clicked, then the image carousel loads. Does anyone know a solution for this?

Also on home page, the 3 columns with "About Us", Twitter and Blog, keep losing their alignment, as seen in the link above. I haven't touched the CSS in this section.

If anyone has any suggestions or comments, please let me know.

In reference to the tab section, there was an error with the latest release that we are working on rectifying as we speak. The reason the images do that is due to line 3 inside of YOUR_CATALOG => includes => templates => tableau => jscript => jquery => jquery_tabs_index.js. You need to change line 3 to:

jQuery('.tabContent').hide().first().show();

We will be releasing the fix to this asap. Thanks!

4 Jun 2015, 5:46 AM
#299
numinix avatar

numinix

Totally Zenned

Join Date:
Apr 2007
Location:
Vancouver, Canada
Posts:
1,566
Plugin Contributions:
58

Re: Tableau Responsive Theme - Support Thread

We just released 1.5.1 which fixes the image problem. Thanks!

4 Jun 2015, 8:08 PM
#300
picci avatar

picci

Zen Follower

Join Date:
Feb 2006
Posts:
125
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

numinix:

In reference to the tab section, there was an error with the latest release that we are working on rectifying as we speak. The reason the images do that is due to line 3 inside of YOUR_CATALOG => includes => templates => tableau => jscript => jquery => jquery_tabs_index.js. You need to change line 3 to:

jQuery('.tabContent').hide().first().show();

We will be releasing the fix to this asap. Thanks!

Thank you Numinix, for your help, and thank you for this beautiful theme.

To upgrade to the latest version of Tableau, can I just upload the new files and over write the old ones, or are there any other steps to follow?