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

Tableau Responsive Theme - Support Thread

Views: 229,232

Results 381 to 400 of 624
22 Aug 2015, 3:33 AM
#381
cybermama avatar

cybermama

New Zenner

Join Date:
Apr 2005
Location:
Singapore
Posts:
17
Plugin Contributions:
0

Tableau Responsive Theme - Support Thread

cybermama:

I am unable to save the changes I made on the template via the Tableau Configuration

When I click Save Changes, nothing happens.

If anyone can help. Would be great

I am unable to make changes needed due to this on my website https://www.kathijahzohra.com

Sorry, I also am unable to save description.

24 Aug 2015, 2:02 PM
#382
outeredge2 avatar

outeredge2

Zen Follower

Join Date:
Mar 2010
Location:
Green Bay, WI
Posts:
362
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

cybermama:

Sorry, I also am unable to save description.

By description, you mean main page info?

I have the same issue if that is what you meant.

28 Aug 2015, 8:23 PM
#383
cargo1223 avatar

cargo1223

New Zenner

Join Date:
Nov 2014
Posts:
5
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

satello:

hi, i'm the process of updating both cart and template. i've done it on a test site, which is curretly working on 1.5.3 and tableau 1.3.2

so tonite i started to do the template on live site with 1.3.3, it all looks fine a part a very big problem. don't know for what reason, the header just duplicate itself right in the middle of the screen. this happened to the test site as well, and it only happens when the Numinix Disk Cache is enabled, no problems when it is disabled, on both live and test site.

i am now uploading a backup to the live site, but if you would like to have a look check here

please note, there is some problem with images not showing as well on the test site, but this did not happened on the live one. server is the same. any help or hint would be very appreciated

http://test.londonsatman.co.uk/

How did you fix the dublicate header when disk cache is on?

29 Aug 2015, 5:21 AM
#384
spacemonkey avatar

spacemonkey

Zen Follower

Join Date:
Nov 2013
Location:
Dorset, UK
Posts:
124
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

jenchord:

Loving the template!

In fact, my store is about to go live. A couple of very minor things I want to tweak yet.
For one, I would like to have the featured products be the default active tab instead of the bestsellers tab.
I know what to modify as far as the template files go, but when it comes to javascript I'm lost. Anybody have any suggestions?

This template has such a good look and I love it on mobile too. Thanks, Numinix!

RickyDicky:

Anyone figure out how to change the tab that the carousel start on from "Best Sellers" to "Featured"? Read a few posts a while back and managed to change the order of the tabs, but not which one appears first/open.

Donna_in_MO:

Greetings,

I am in the process of implementing this template on my site. I have modified it so that on the main page that it shows Newest Items, Featured, then Best Sellers.

I was wondering how I could get the default 'selection' to be the newest items instead of best sellers?

Thanks,
Donna

Hi Guys,

If your still interested here's how it's done.

Two files to modify:

File 1. includes\templates\tableau\jscript\jqueryjquery_tabs_index.js

Change this:

jQuery(document).ready(function() {
  // create and process tabs
	jQuery('.tabContent').hide().first().show();

    jQuery('#infoTabs li').bind('click', function(){
		//open when click
		jQuery('#infoTabs li').removeClass('active');
		jQuery(this).addClass('active');
		jQuery('.tabContent').hide();
		jQuery('#' + jQuery(this).attr('id') + 'Content').show();
		jQuery('#' + jQuery(this).attr('id') + 'Content').find("img").each(function(e){
			
			var $img = jQuery(this).attr("data-src");

			jQuery(this).attr("src", $img);
			
		});
	});
});

To this:

jQuery(document).ready(function() {
  // create and process tabs
	jQuery('.tabContent').not('#tabFeaturedContent').hide();
	jQuery('#infoTabs li').bind('click', function(){
		//open when click
		jQuery('#infoTabs li').removeClass();
		jQuery(this).addClass("active");
		jQuery('.tabContent').hide();
		jQuery('#' + jQuery(this).attr('id') + 'Content').show();
		jQuery('#' + jQuery(this).attr('id') + 'Content').find("img").each(function(e){
			
			var $img = jQuery(this).attr("data-src");

			jQuery(this).attr("src", $img);
			
		});
	});
});

File 2. includes\templates\tableau\templates\tpl_index_default.php

Find this:

<ul id="infoTabs">
				<li id="tabBestSellers" class="active"><span><?php echo TITLE_HOME_TAB_BEST_SELLER; ?></span></li>
				<li id="tabFeatured"><span><?php echo TITLE_HOME_TAB_FEATURED_ITEMS; ?></span></li>
				<li id="tabNew"><span><?php echo TITLE_HOME_TAB_NEW_PRODUCTS; ?></span></li>

Change it to this:

<ul id="infoTabs">
				<li id="tabBestSellers"><span><?php echo TITLE_HOME_TAB_BEST_SELLER; ?></span></li>
				<li id="tabFeatured" class="active"><span><?php echo TITLE_HOME_TAB_FEATURED_ITEMS; ?></span></li>
				<li id="tabNew"><span><?php echo TITLE_HOME_TAB_NEW_PRODUCTS; ?></span></li>

Just change the bit in red. :yes:

If you wanted to have the new tab open change the reference in files 1 & 2 for the tabNew in both files.

I hope this helps someone else. Enjoy :smile:

3 Sep 2015, 1:25 PM
#385
outeredge2 avatar

outeredge2

Zen Follower

Join Date:
Mar 2010
Location:
Green Bay, WI
Posts:
362
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

have a couple questions on this template. I have it installed and working for the most part. The issues I have are below:

  1. The Blog info - I updated it as listed in the read me file (using the template config section) and on the actual site I get an error Cannot connect to Blog at this time

  2. I want to display text on the main page. I edit the Main page file in Define pages editor and nothing show up. Thoughts?

3 Sep 2015, 3:07 PM
#387
spacemonkey avatar

spacemonkey

Zen Follower

Join Date:
Nov 2013
Location:
Dorset, UK
Posts:
124
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

outeredge2:

have a couple questions on this template. I have it installed and working for the most part. The issues I have are below:

  1. The Blog info - I updated it as listed in the read me file (using the template config section) and on the actual site I get an error Cannot connect to Blog at this time

  2. I want to display text on the main page. I edit the Main page file in Define pages editor and nothing show up. Thoughts?

Hi,

I can't help with blog. Not used it and don't know how.

However Main page is as follow: Depending on your ZEN settings one of these -

includes/templates/tableau/templates/tpl_index_default.php
includes/templates/tableau/templates/tpl_index_categories.php
includes/templates/tableau/templates/tpl_index_product_list.php

depending on which view you use for home page. The template default is

includes/templates/tableau/templates/tpl_index_default.php

Hope that helps

3 Sep 2015, 9:07 PM
#388
outeredge2 avatar

outeredge2

Zen Follower

Join Date:
Mar 2010
Location:
Green Bay, WI
Posts:
362
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

SpaceMonkey:

Hi,

I can't help with blog. Not used it and don't know how.

However Main page is as follow: Depending on your ZEN settings one of these -

includes/templates/tableau/templates/tpl_index_default.php
includes/templates/tableau/templates/tpl_index_categories.php
includes/templates/tableau/templates/tpl_index_product_list.php

depending on which view you use for home page. The template default is

includes/templates/tableau/templates/tpl_index_default.php

Hope that helps

I didnt know there where different views of the home page..... More details?

3 Sep 2015, 11:07 PM
#389
spacemonkey avatar

spacemonkey

Zen Follower

Join Date:
Nov 2013
Location:
Dorset, UK
Posts:
124
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

outeredge2:

I didnt know there where different views of the home page..... More details?

Hi,

I was afraid you would ask. I will explain as much as I can and maybe someone else can fill in the blanks....

includes/templates/tableau/templates/tpl_index_default.php
includes/templates/tableau/templates/tpl_index_categories.php
includes/templates/tableau/templates/tpl_index_product_list.php

I have Zen Cart v1.54 and Tableau installed.

Log into your Admin Panel and select Configuration>Layout Settings>Main Page - Opens with Category. Now set the Value to Zero. Have a look at your site homepage.

Now your default index view will be set to show all Categories. Hence using tpl_index_categories.php

Hint: Configuration>Layout Settings>Main Page - Opens with Category needs to be reset back to blank to return to tpl_index_default.php (another 15 mins of life looking for a setting! :blush:)

I don't know where the trigger is for tpl_index_product_list.php but guess the name hints as to what it does :smartalec: (just spent 15 mins looking for this trigger.... Still not found :blush:)

Sorry I can't help fully but stumbled on this myself. Rant warning..... :rant: So many settings for Zen Cart and then Addons and Templates and Users and then Email and Customers. Argggggggh how did it ever seem like a good idea. :rant:

Only messing really. I hope it helps get you towards your aim.

SpaceMonkey

9 Sep 2015, 1:44 AM
#390
outeredge2 avatar

outeredge2

Zen Follower

Join Date:
Mar 2010
Location:
Green Bay, WI
Posts:
362
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

Thanks for the help Space Monkey.

I have another question on a separate issue....

I added attributes to some of my products and they show up, all the values correct and everything works (need to add dynamic price updater though). My issue is that the Options name does not appear in this template. I have some complex products with a bunch of options and I would really like to display the Options (Attributes) name.

Here is a sample of how it currently displays.
http://www.driftbuildstore.com/index.php?main_page=product_info&cPath=2178&products_id=6992

10 Sep 2015, 9:11 PM
#391
outeredge2 avatar

outeredge2

Zen Follower

Join Date:
Mar 2010
Location:
Green Bay, WI
Posts:
362
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

outeredge2:

Thanks for the help Space Monkey.

I have another question on a separate issue....

I added attributes to some of my products and they show up, all the values correct and everything works (need to add dynamic price updater though). My issue is that the Options name does not appear in this template. I have some complex products with a bunch of options and I would really like to display the Options (Attributes) name.

Here is a sample of how it currently displays.
http://www.driftbuildstore.com/index.php?main_page=product_info&cPath=2178&products_id=6992

ANyone got any suggestions... Numinix isnt responding right now and I really need to speel this out. Some of these items are pretty complex to order...

11 Sep 2015, 5:41 PM
#392
sph avatar

sph

Totally Zenned

Join Date:
Jan 2006
Posts:
1,556
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

outeredge2:

ANyone got any suggestions... Numinix isnt responding right now and I really need to speel this out. Some of these items are pretty complex to order...

The options seem to be working in the demo:

http://www.numinix.com/demos/tableau/index.php?main_page=product_info&cPath=22&products_id=34

Are you certain that you have your options set-up properly in your admin?

EDIT : Or is the demo also not properly working with option names? I think I now see what you mean. You cannot enter names like "color" and "size" with this template?

PS: When I click on Specials in your header area I get a page that says TEXT_NO_PRODUCTS. Even if you have no specials, I think this is an error.

I do like this template.

11 Sep 2015, 6:30 PM
#393
outeredge2 avatar

outeredge2

Zen Follower

Join Date:
Mar 2010
Location:
Green Bay, WI
Posts:
362
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

SPH:

The options seem to be working in the demo:

http://www.numinix.com/demos/tableau/index.php?main_page=product_info&cPath=22&products_id=34

Are you certain that you have your options set-up properly in your admin?

EDIT : Or is the demo also not properly working with option names? I think I now see what you mean. You cannot enter names like "color" and "size" with this template?

Yes thats what i mean. They are working perfect, Just not displaying what each options is for.

SPH:

PS: When I click on Specials in your header area I get a page that says TEXT_NO_PRODUCTS. Even if you have no specials, I think this is an error.

I do like this template.

I did not have any specials set up when you looked. I just activated a couple and they are working as planned. Thanks for checking though. if you see any other issues let me know :)

12 Sep 2015, 7:48 AM
#394
enzo avatar

enzo

New Zenner

Join Date:
May 2014
Location:
Planet Earth
Posts:
18
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

SSL ISSUES

I Found the following issues with insecure form calls when using SSL.

To test your own pages: https://www.whynopadlock.com/index.html

The first issue concerns the search form.

Design75 offered the following correction in this thread https://www.zen-cart.com/showthread.php?216576-Insecure-lt-form-gt-call

FROM:

$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');  

TO:

$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', $request_type, false), 'get');  

OR```
$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'SSL', false), 'get');


Apply this correction to:  /includes/templates/tableau/sideboxes/tpl_search_header.php 

As was the case with the original poster, the first correction worked for me as well.


**The second issue concerns Tableau's Contact_Us page:  **

If the following is not changed, you will receive the following message when you attempt to send a message using Tableau's contact form:
> *
> The information you have entered on this page will be sent over an insecure connection and could be read by a third party.
> 
> Are you sure you want to send this information?:*

Google Chrome will also add a yellow warning on the padlock when view your site. 

To correct this issue, I changed the following file:  /includes/templates/tableau/templates/tpl_contact_us_default.php 

FROM:
<?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send')); ?>
TO
<?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send', 'SSL')); ?>


I didn't have an issue creating an account when using the registration form and submitting the login page to whynopadlock.com yielded no further concerns.

Hopefully this saves someone some time.  :smile:
12 Sep 2015, 8:19 AM
#395
enzo avatar

enzo

New Zenner

Join Date:
May 2014
Location:
Planet Earth
Posts:
18
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

MIKEYFM:

Enzo, not sure if you have solved this but I have the same issue and here is the solution that seems to work.

in the file: product_info.css found in ../templates/tableau/css

find:

#productMainImage a { ...........
}

and add the following:

         max-height: 350px;
     max-width: 330px
     overflow:hidden;
> 
> Obviously change those values to match and line up for your site but those values work for my site straight out the box.
> 
> Best of luck.  
> 
> Michael

Thanks Michael and to everyone that responded.   :smile:

I did solve the problem by using XnView (a batch conversion and image processor) to change the dimensions of all my images to a consistent width of 175px and that worked for me for both product images and for the carousel on the home page.  

I did try setting image sizes in the admin configuration panel and via css to no avail.  Not sure why, but by that time I had changed the image sizes; found that it worked well for my purposes and moved on.

I then used Image Handler to create larger versions for the product info pages.  

I don't know if there is a better solution but that's what worked for me.  Having uniform image sizes is also more attractive IMO so it worked out well.
12 Sep 2015, 9:13 AM
#396
enzo avatar

enzo

New Zenner

Join Date:
May 2014
Location:
Planet Earth
Posts:
18
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

Picci:

@Enzo
The current version available on Numinix' web site is version 1.6.1. There have been some bug fixes, maybe the new version has addressed that but I don't know for sure.

Thanks Picci,

I've been so focused on getting my site up and running that I hadn't even realized there have been new versions of the template since then.

To top it off, I just posted on how to correct SSL issues in version 1.5.2 - don't know if the solutions I posted apply to the latest version (which is now 1.6.2) but it's too late now. :laugh:

13 Sep 2015, 1:21 AM
#397
joshs avatar

joshs

New Zenner

Join Date:
Dec 2010
Posts:
15
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

I have seen some sites using this theme that have other nested drop down menus in the header beside the categories. I thought maybe this was done with EZ-Pages, but I can not seem to figure it out. Can someone give me some direction?

13 Sep 2015, 5:44 PM
#398
sph avatar

sph

Totally Zenned

Join Date:
Jan 2006
Posts:
1,556
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

Perhaps a link to these other sites will help in determining what it is.

13 Sep 2015, 10:39 PM
#399
joshs avatar

joshs

New Zenner

Join Date:
Dec 2010
Posts:
15
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

This site shows the nested menu under Information:

http://sicassracing.com/store-1st_1-5-4/

16 Sep 2015, 2:42 AM
#400
numinix avatar

numinix

Totally Zenned

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

Re: Tableau Responsive Theme - Support Thread

JoshS:

This site shows the nested menu under Information:

http://sicassracing.com/store-1st_1-5-4/

Hello vanilla Tableau does not come with this feature. It looks like they took the code used for the categories and made this work for another dropdown menu.