Page 39 of 63 FirstFirst ... 29373839404149 ... LastLast
Results 381 to 390 of 623
  1. #381
    Join Date
    Mar 2010
    Location
    Green Bay, WI
    Posts
    360
    Plugin Contributions
    1

    Default Re: Unable to Save Global Config

    Quote Originally Posted by cybermama View Post
    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.
    Forums are for helping people!! if you don't want to help people then shut up and get off the forum!

  2. #382
    Join Date
    Nov 2014
    Posts
    5
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by satello View Post
    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?

  3. #383
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    121
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by jenchord View Post
    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!
    Quote Originally Posted by RickyDicky View Post
    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.
    Quote Originally Posted by Donna_in_MO View Post
    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:

    Code:
    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:

    Code:
    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:

    Code:
    <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:

    Code:
    <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.

    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

  4. #384
    Join Date
    Mar 2010
    Location
    Green Bay, WI
    Posts
    360
    Plugin Contributions
    1

    Default 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?
    Forums are for helping people!! if you don't want to help people then shut up and get off the forum!

  5. #385
    Join Date
    Mar 2010
    Location
    Green Bay, WI
    Posts
    360
    Plugin Contributions
    1

    Default Re: Tableau Responsive Theme - Support Thread

    I forgot to add the link for the issues above....

    http://www.driftbuildstore.com/index...ain_page=index
    Forums are for helping people!! if you don't want to help people then shut up and get off the forum!

  6. #386
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    121
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by outeredge2 View Post
    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

  7. #387
    Join Date
    Mar 2010
    Location
    Green Bay, WI
    Posts
    360
    Plugin Contributions
    1

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by SpaceMonkey View Post
    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?
    Forums are for helping people!! if you don't want to help people then shut up and get off the forum!

  8. #388
    Join Date
    Nov 2013
    Location
    Dorset, UK
    Posts
    121
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by outeredge2 View Post
    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! )

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

    Sorry I can't help fully but stumbled on this myself. Rant warning..... 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.

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

    SpaceMonkey

  9. #389
    Join Date
    Mar 2010
    Location
    Green Bay, WI
    Posts
    360
    Plugin Contributions
    1

    Default 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...oducts_id=6992
    Forums are for helping people!! if you don't want to help people then shut up and get off the forum!

  10. #390
    Join Date
    Mar 2010
    Location
    Green Bay, WI
    Posts
    360
    Plugin Contributions
    1

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by outeredge2 View Post
    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...oducts_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...
    Forums are for helping people!! if you don't want to help people then shut up and get off the forum!

 

 
Page 39 of 63 FirstFirst ... 29373839404149 ... 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