Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
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...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.
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
SPH
The options seem to be working in the demo:
http://www.numinix.com/demos/tableau...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.
Quote:
Originally Posted by
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 :)
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....t-form-gt-call
FROM:
Code:
$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');
TO:
Code:
$content .= zen_draw_form('quick_find_header', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', $request_type, false), 'get');
OR
Code:
$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:
Quote:
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:
Code:
<?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_CONTACT_US, 'action=send')); ?>
TO
Code:
<?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:
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
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:
Code:
#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.
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
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:
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?
Re: Tableau Responsive Theme - Support Thread
Perhaps a link to these other sites will help in determining what it is.
Re: Tableau Responsive Theme - Support Thread
This site shows the nested menu under Information:
http://sicassracing.com/store-1st_1-5-4/
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
JoshS
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.
Re: Tableau Responsive Theme - Support Thread
Quote:
Originally Posted by
numinix
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.
Ok...thank you.