Page 35 of 63 FirstFirst ... 25333435363745 ... LastLast
Results 341 to 350 of 623
  1. #341
    Join Date
    Jun 2005
    Location
    Kelowna, BC Canada
    Posts
    1,075
    Plugin Contributions
    6

    Default Re: Tableau Responsive Theme - Support Thread

    is jquery_tabs_index.js supposed to go somewhere?

  2. #342
    Join Date
    Jun 2005
    Location
    Kelowna, BC Canada
    Posts
    1,075
    Plugin Contributions
    6

    Default Re: Tableau Responsive Theme - Support Thread

    I don't know if anyone's pointed this out (or if they or you care), but your template, as distributed, contains some errors. I came across these pretty quickly so there very well may be more. Easy to fix, and most of them are irrelevant anyway because they really only impact you if you use the default banners.

    In your installer script at: \admin\includes\installers\tableau\1_0_0.php you are missing the closing tag from your banner images, and you have a superfluous one on a div tag, both of which throw validation errors unnecessarily. So change:

    Code:
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/skyhigh.png\" alt=\"\" class=\"banner-img\"><div class=\"banner\" /><p>The sky is the limit!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/success.png\" alt=\"\" class=\"banner-img\"><div class=\"banner\" /><p>Turn Your Idea into Success!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/unique.png\" alt=\"\" class=\"banner-img\"><div class=\"banner\" /><p>Unique and Exciting!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/customized_template.png\" alt=\"\" class=\"banner-img\"><div class=\"banner\" /><p>Get Up and Running Fast!</p></div>', 1, 1),
    to
    Code:
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/skyhigh.png\" alt=\"\" class=\"banner-img\" /><div class=\"banner\"><p>The sky is the limit!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/success.png\" alt=\"\" class=\"banner-img\" /><div class=\"banner\"><p>Turn Your Idea into Success!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/unique.png\" alt=\"\" class=\"banner-img\" /><div class=\"banner\"><p>Unique and Exciting!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/customized_template.png\" alt=\"\" class=\"banner-img\" /><div class=\"banner\"><p>Get Up and Running Fast!</p></div>', 1, 1),
    For those that already installed, there's no point in doing this... you'll instead have to make the same changes to the banners in your admin (but again, you probably customized them anyway so this really is only for the distributed package).


    Another error (that does affect everyone) is thrown by the menu link that goes nowhere on the mobile nav. In \includes\templates\tableau\common\tpl_header.php you have a line like so:
    Code:
    <div id="mobile-nav" class="back"><a href="#menu-selector" class="icon header-menu">&#xe004;</a></div>
    Since there is no element called "menu-selector", an error is thrown (even though it works). I'd suggest either making that href go to simply "#" or, for the sake of not putting a hashtag in your url, you could get rid of href alltogether like this:
    [code]<div id="mobile-nav" class="back"><a class="icon header-menu">&#xe004;</a></div>[code]
    and then modify the \includes\templates\tableau\css\stylesheet_responsive.css file to give you a mouse pointer so it still behaves like an href:
    Code:
    	#mobile-nav {
    		font-family: 'menu-icon';
    		display: block;
    		line-height: 188%;
    	}
    becomes
    Code:
    	#mobile-nav {
    		cursor: pointer;
    		font-family: 'menu-icon';
    		display: block;
    		line-height: 188%;
    	}
    There's more than one way to skin that particular cat, but those changes takes you from 26 validation errors to zero.

  3. #343
    Join Date
    May 2014
    Location
    Planet Earth
    Posts
    18
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Hello, I've setup a test bed and installed zen cart 1.54 and the latest version of tableau 1.5.2. I then added products and when i view the products, the product name and other product related info is overlayed on top of the product image. Here is a pic:

    Click image for larger version. 

Name:	Capture.jpg 
Views:	107 
Size:	19.3 KB 
ID:	15467

    This is a fresh install of zencart, tableau and the only other modification is that I added ezpopulate 4.0 (the version located on github)

    At first I thought it was because something did not upload correctly, but I have completely started from scratch now 3 times. The first two times were with zen 1.54 and tableau 1.5.2 The last attempt was with tableau 1.5.1 thinking there was something wrong with 1.5.2. Unfortuantely, this resulted in the same problem.

    I also tried comparing css from my test site and the demo site on numinix.com

    I also installed this locally with xampp and this problem occurred. I then did fresh installs on my hosting account thinking there would be a difference between the xampp installation and my hosted account. Unfortuantely, the results were exactly the same. I now only have this installed locally so I don't have a link to provide.

    If anyone else has experienced this problem and resolved the issue, I would appreciate your assistance.

    Thanks.

  4. #344
    Join Date
    May 2014
    Location
    Planet Earth
    Posts
    18
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Hello, I've setup a test bed and installed zen cart 1.54 and the latest version of tableau 1.5.2. I then added products and when i view the products, the product name and other product related info is overlapped on top of the product image. Here is a pic:

    Click image for larger version. 

Name:	Capture.jpg 
Views:	107 
Size:	19.3 KB 
ID:	15467

    This is a fresh install of zencart, tableau and the only other modification is that I added ezpopulate 4.0 (the version located on github)

    At first I thought it was because something did not upload correctly, but I have completely started from scratch now 3 times. The first two times were with zen 1.54 and tableau 1.5.2 The last attempt was with tableau 1.5.1 thinking there was something wrong with 1.5.2. Unfortunately, this resulted in the same problem.

    I also tried comparing css from my test site and the demo site on numinix.com and couldn't find a difference.

    Also, I currently have this installed on an xampp installation. I did have this installed on my hosted account and my hosted account is where I tried the three fresh installs. In every case, the resulting overlap issue occured. I only have this installed locally with xampp now so I cannot provide a link at this time.

    If anyone else has experienced this problem and has an answer for what is happening, I would appreciate your solution.

    Thanks.

  5. #345
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,547
    Plugin Contributions
    81

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by Enzo View Post
    Hello, I've setup a test bed and installed zen cart 1.54 and the latest version of tableau 1.5.2. I then added products and when i view the products, the product name and other product related info is overlapped on top of the product image. Here is a pic:

    Click image for larger version. 

Name:	Capture.jpg 
Views:	107 
Size:	19.3 KB 
ID:	15467

    This is a fresh install of zencart, tableau and the only other modification is that I added ezpopulate 4.0 (the version located on github)

    At first I thought it was because something did not upload correctly, but I have completely started from scratch now 3 times. The first two times were with zen 1.54 and tableau 1.5.2 The last attempt was with tableau 1.5.1 thinking there was something wrong with 1.5.2. Unfortunately, this resulted in the same problem.

    I also tried comparing css from my test site and the demo site on numinix.com and couldn't find a difference.

    Also, I currently have this installed on an xampp installation. I did have this installed on my hosted account and my hosted account is where I tried the three fresh installs. In every case, the resulting overlap issue occured. I only have this installed locally with xampp now so I cannot provide a link at this time.

    If anyone else has experienced this problem and has an answer for what is happening, I would appreciate your solution.

    Thanks.
    Hello -

    Can you please provide us with a link to your site?

  6. #346
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,547
    Plugin Contributions
    81

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by s_mack View Post
    is jquery_tabs_index.js supposed to go somewhere?
    Yes it goes inside the jQuery directory as it is packaged with the template.

  7. #347
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,547
    Plugin Contributions
    81

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by s_mack View Post
    I don't know if anyone's pointed this out (or if they or you care), but your template, as distributed, contains some errors. I came across these pretty quickly so there very well may be more. Easy to fix, and most of them are irrelevant anyway because they really only impact you if you use the default banners.

    In your installer script at: \admin\includes\installers\tableau\1_0_0.php you are missing the closing tag from your banner images, and you have a superfluous one on a div tag, both of which throw validation errors unnecessarily. So change:

    Code:
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/skyhigh.png\" alt=\"\" class=\"banner-img\"><div class=\"banner\" /><p>The sky is the limit!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/success.png\" alt=\"\" class=\"banner-img\"><div class=\"banner\" /><p>Turn Your Idea into Success!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/unique.png\" alt=\"\" class=\"banner-img\"><div class=\"banner\" /><p>Unique and Exciting!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/customized_template.png\" alt=\"\" class=\"banner-img\"><div class=\"banner\" /><p>Get Up and Running Fast!</p></div>', 1, 1),
    to
    Code:
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/skyhigh.png\" alt=\"\" class=\"banner-img\" /><div class=\"banner\"><p>The sky is the limit!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/success.png\" alt=\"\" class=\"banner-img\" /><div class=\"banner\"><p>Turn Your Idea into Success!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/unique.png\" alt=\"\" class=\"banner-img\" /><div class=\"banner\"><p>Unique and Exciting!</p></div>', 1, 1),
      ('Your banner title', 'homepageslide', '<img src=\"images/banners/customized_template.png\" alt=\"\" class=\"banner-img\" /><div class=\"banner\"><p>Get Up and Running Fast!</p></div>', 1, 1),
    For those that already installed, there's no point in doing this... you'll instead have to make the same changes to the banners in your admin (but again, you probably customized them anyway so this really is only for the distributed package).


    Another error (that does affect everyone) is thrown by the menu link that goes nowhere on the mobile nav. In \includes\templates\tableau\common\tpl_header.php you have a line like so:
    Code:
    <div id="mobile-nav" class="back"><a href="#menu-selector" class="icon header-menu">&#xe004;</a></div>
    Since there is no element called "menu-selector", an error is thrown (even though it works). I'd suggest either making that href go to simply "#" or, for the sake of not putting a hashtag in your url, you could get rid of href alltogether like this:
    [code]<div id="mobile-nav" class="back"><a class="icon header-menu">&#xe004;</a></div>[code]
    and then modify the \includes\templates\tableau\css\stylesheet_responsive.css file to give you a mouse pointer so it still behaves like an href:
    Code:
        #mobile-nav {
            font-family: 'menu-icon';
            display: block;
            line-height: 188%;
        }
    becomes
    Code:
        #mobile-nav {
            cursor: pointer;
            font-family: 'menu-icon';
            display: block;
            line-height: 188%;
        }
    There's more than one way to skin that particular cat, but those changes takes you from 26 validation errors to zero.
    Thanks for the feedback. We will look into this. We are not sure we totally agree with you approach of getting rid of the href all together from a semantic standpoint; however, we value your suggestion. We will look into fixing the banner problem immediately.

  8. #348
    Join Date
    Jun 2005
    Location
    Kelowna, BC Canada
    Posts
    1,075
    Plugin Contributions
    6

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by numinix View Post
    Yes it goes inside the jQuery directory as it is packaged with the template.
    The package I downloaded has that file just sitting outside of the rest of the structure, in the root zip folder. It is NOT in a jQuery directory, which is why I asked.
    Attached Images Attached Images  

  9. #349
    Join Date
    Apr 2007
    Location
    Vancouver, Canada
    Posts
    1,547
    Plugin Contributions
    81

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by s_mack View Post
    The package I downloaded has that file just sitting outside of the rest of the structure, in the root zip folder. It is NOT in a jQuery directory, which is why I asked.
    Ahh, thanks for pointing that out. We will get that fixed.

    Thanks!

  10. #350
    Join Date
    Aug 2010
    Location
    Hartland, MI
    Posts
    282
    Plugin Contributions
    3

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by Enzo View Post
    Hello, I've setup a test bed and installed zen cart 1.54 and the latest version of tableau 1.5.2. I then added products and when i view the products, the product name and other product related info is overlapped on top of the product image. Here is a pic:

    Click image for larger version. 

Name:	Capture.jpg 
Views:	107 
Size:	19.3 KB 
ID:	15467

    This is a fresh install of zencart, tableau and the only other modification is that I added ezpopulate 4.0 (the version located on github)

    At first I thought it was because something did not upload correctly, but I have completely started from scratch now 3 times. The first two times were with zen 1.54 and tableau 1.5.2 The last attempt was with tableau 1.5.1 thinking there was something wrong with 1.5.2. Unfortunately, this resulted in the same problem.

    I also tried comparing css from my test site and the demo site on numinix.com and couldn't find a difference.

    Also, I currently have this installed on an xampp installation. I did have this installed on my hosted account and my hosted account is where I tried the three fresh installs. In every case, the resulting overlap issue occured. I only have this installed locally with xampp now so I cannot provide a link at this time.

    If anyone else has experienced this problem and has an answer for what is happening, I would appreciate your solution.

    Thanks.
    I am having the same issue on only some of the products... I haven't really dug into it yet but I think it has to do with the size of the image for that item...
    You can see it here on this item - 17-076
    and not here on this item - 17-074

    I'm thinking image issue due to the fast the degree of overlap varies... see here - 20-013

 

 
Page 35 of 63 FirstFirst ... 25333435363745 ... LastLast

Similar Threads

  1. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Templates, Stylesheets, Page Layout
    Replies: 1071
    Last Post: 4 Feb 2024, 04:28 PM
  2. v155 Support Thread - Responsive Color Changes for 155
    By dbltoe in forum Templates, Stylesheets, Page Layout
    Replies: 99
    Last Post: 1 Oct 2021, 12:31 PM
  3. v155 Tableau Theme configuration not working.
    By tunes in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 22 Mar 2017, 06:53 PM
  4. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  5. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR