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

Tableau Responsive Theme - Support Thread

Views: 229,232

Results 421 to 440 of 624
1 Oct 2015, 12:32 AM
#421
vanhorn_s avatar

vanhorn_s

Zen Follower

Join Date:
Apr 2010
Posts:
283
Plugin Contributions:
0

Tableau Responsive Theme - Support Thread

In the left column sideboxes, the reviews sidebox has blue text that shows REVIEWS [MORE], and I cannot collapse the sidebox. The featured sidebox did the same thing, but I just turned it off, because I don't care about it.
Also, is there a way of setting the default sort order to best selling? When you navigate from a mobile device, it does not have the entire drop down menu, and so main categories are all you see, rather than sub categories.

http://redsautorehab.com/newzen/index.php?main_page=index&cPath=13

4 Oct 2015, 10:13 AM
#422
satello avatar

satello

New Zenner

Join Date:
Jan 2014
Posts:
62
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

Hi everyone, long time since I retouched my heavily customized tableau. this morning i've installed the new one, over a 1.5.4 zencart, using old patched database.

before I go into extra custom work, just got this very odd problem. surely is just something in the settings I am missing...

Ok, in my old version (1.2) the main category page shows all the subcategories

http://www.londonsatman.co.uk/italian-satellite-tv-77/

with the same settings, but on the latest version of the template, the category main page show all the products present in the subcategories

http://www.londonsatman.co.uk/zencart154/index.php?main_page=index&cPath=77

I would like the main category page to show subcategories, and also a small thumb for it. I remember when I tried to update a few months ago this was the result but as I was very busy I've abandoned the upgrade, but can't manage to have it now

here are a few conf settings:

Layout Settings

Main Page - Opens with Category 0
Categories - Always Open to Show SubCategories 1

many thanks for your time in reading this.

5 Oct 2015, 5:26 PM
#423
mikestaps avatar

mikestaps

Zen Follower

Join Date:
Aug 2010
Location:
Grand Blanc, MI
Posts:
305
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

vanhorn_s:

Thank you for this. Where are the names defined for this?
On my test site, I still have HEADER_TITLE_INFORMATION next to categories, rather than information, also HEADER_TITLE_CUSTOMER_SERVICE, and TITLE_GENERAL.

redsautorehab.com/newzen

In the tableau_defines.php file that is attached... That files goes in the catalog\includes\languages\english\extra_definitions\tableau folder.
I will revise the complete zip file as well.

Attachment #15666

5 Oct 2015, 5:28 PM
#424
mikestaps avatar

mikestaps

Zen Follower

Join Date:
Aug 2010
Location:
Grand Blanc, MI
Posts:
305
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

This is the revised zip file for the information tabs

Attachment #15667

6 Oct 2015, 9:18 PM
#425
joshs avatar

joshs

New Zenner

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

Re: Tableau Responsive Theme - Support Thread

Under Facebook Like Button Configuration...it only gives me a version number (1.3.2). Should there be more options there?

Also, on the product page, the Facebook text "Be the first of your friends to like this." runs behind the G+ and Pinterest buttons...any way to change that?

Finally...when I view the source code of any page in my web browser, the Categories menu includes links to all the products in the categories that do not have sub categories. These product links do not show up in the actual menu. Is that how it is supposed to be?

8 Oct 2015, 2:32 PM
#426
mikestaps avatar

mikestaps

Zen Follower

Join Date:
Aug 2010
Location:
Grand Blanc, MI
Posts:
305
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

satello:

Hi everyone, long time since I retouched my heavily customized tableau. this morning i've installed the new one, over a 1.5.4 zencart, using old patched database.

before I go into extra custom work, just got this very odd problem. surely is just something in the settings I am missing...

Ok, in my old version (1.2) the main category page shows all the subcategories

http://www.londonsatman.co.uk/italian-satellite-tv-77/

with the same settings, but on the latest version of the template, the category main page show all the products present in the subcategories

http://www.londonsatman.co.uk/zencart154/index.php?main_page=index&cPath=77

I would like the main category page to show subcategories, and also a small thumb for it. I remember when I tried to update a few months ago this was the result but as I was very busy I've abandoned the upgrade, but can't manage to have it now

here are a few conf settings:

Layout Settings

Main Page - Opens with Category 0
Categories - Always Open to Show SubCategories 1

many thanks for your time in reading this.

This is caused by a change in the includes\modules\pages\index\main_template_vars.php file
To switch back to the old way first uncomment lines 64 THROUGH 123 and line 126.

  /*$sql = "SELECT cd.categories_name, c.categories_image
          FROM   " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
          WHERE      c.categories_id = :categoriesID
          AND        cd.categories_id = :categoriesID
          AND        cd.language_id = :languagesID
          AND        c.categories_status= '1'";

  $sql = $db->bindVars($sql, ':categoriesID', $current_category_id, 'integer');
  $sql = $db->bindVars($sql, ':languagesID', $_SESSION['languages_id'], 'integer');
  $category = $db->Execute($sql);

  if (isset($cPath) && strpos($cPath, '_'))
  {
    // check to see if there are deeper categories within the current category
    $category_links = array_reverse($cPath_array);
    for($i=0, $n=sizeof($category_links); $i<$n; $i++)
    {
      $sql = "SELECT count(*) AS total
              FROM   " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
              WHERE      c.parent_id = :parentID
              AND        c.categories_id = cd.categories_id
              AND        cd.language_id = :languagesID
              AND        c.categories_status= '1'";

      $sql = $db->bindVars($sql, ':parentID', $category_links[$i], 'integer');
      $sql = $db->bindVars($sql, ':languagesID', $_SESSION['languages_id'], 'integer');
      $categories = $db->Execute($sql);

      if ($categories->fields['total'] < 1)
      {
        // do nothing, go through the loop
      } else {
        $categories_query = "SELECT c.categories_id, cd.categories_name, c.categories_image, c.parent_id
                             FROM   " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
                             WHERE      c.parent_id = :parentID
                             AND        c.categories_id = cd.categories_id
                             AND        cd.language_id = :languagesID
                             AND        c.categories_status= '1'
                             ORDER BY   sort_order, cd.categories_name";

        $categories_query = $db->bindVars($categories_query, ':parentID', $category_links[$i], 'integer');
        $categories_query = $db->bindVars($categories_query, ':languagesID', $_SESSION['languages_id'], 'integer');
        break; // we've found the deepest category the customer is in
      }
    }
  } else {
    $categories_query = "SELECT c.categories_id, cd.categories_name, c.categories_image, c.parent_id
                         FROM   " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd
                         WHERE      c.parent_id = :parentID
                         AND        c.categories_id = cd.categories_id
                         AND        cd.language_id = :languagesID
                         AND        c.categories_status= '1'
                         ORDER BY   sort_order, cd.categories_name";

    $categories_query = $db->bindVars($categories_query, ':parentID', $current_category_id, 'integer');
    $categories_query = $db->bindVars($categories_query, ':languagesID', $_SESSION['languages_id'], 'integer');
  }
  $categories = $db->Execute($categories_query);
  $number_of_categories = $categories->RecordCount();
  $new_products_category_id = $current_category_id;*/

  /////////////////////////////////////////////////////////////////////////////////////////////////////
  //$tpl_page_body = 'tpl_index_categories.php';
  /////////////////////////////////////////////////////////////////////////////////////////////////////
  

Next comment out this section (129-196):

//BOF SHOW ALL PRODUCTS FOR PARENT CATEGORIES
   if (SHOW_PRODUCT_INFO_ALL_PRODUCTS == '1') {
    // set a category filter
    $new_products_category_id = $cPath;
  } else {
    // do not set the category
  }
  // create column list
  $define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL,
  'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME,
  'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER,
  'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE,
  'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY,
  'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT,
  'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE);

  /*                         ,
  'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW);
  */
  asort($define_list);
  reset($define_list);
  $column_list = array();
  foreach ($define_list as $key => $value)
  {
    if ($value > 0) $column_list[] = $key;
  }

  $select_column_list = '';

  for ($i=0, $n=sizeof($column_list); $i<$n; $i++)
  {
    switch ($column_list[$i])
    {
      case 'PRODUCT_LIST_MODEL':
      $select_column_list .= 'p.products_model, ';
      break;
      case 'PRODUCT_LIST_NAME':
      $select_column_list .= 'pd.products_name, ';
      break;
      case 'PRODUCT_LIST_MANUFACTURER':
      $select_column_list .= 'm.manufacturers_name, ';
      break;
      case 'PRODUCT_LIST_QUANTITY':
      $select_column_list .= 'p.products_quantity, ';
      break;
      case 'PRODUCT_LIST_IMAGE':
      $select_column_list .= 'p.products_image, ';
      break;
      case 'PRODUCT_LIST_WEIGHT':
      $select_column_list .= 'p.products_weight, ';
      break;
    }
  }
  // always add quantity regardless of whether or not it is in the listing for add to cart buttons
  if (PRODUCT_LIST_QUANTITY < 1) {
    $select_column_list .= 'p.products_quantity, ';
  }

  // set the product filters according to selected product type
  $typefilter = 'default';
  if (isset($_GET['typefilter'])) $typefilter = $_GET['typefilter'];
  require(zen_get_index_filters_directory($typefilter . '_filter.php'));

  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
  $tpl_page_body = 'tpl_index_product_list.php';
  ////////////////////////////////////////////////////////////////////////////////////////////////////////////
   
   //EOF SHOW ALL PRODUCTS FOR PARENT CATEGORIES

This will revert to sub-category photos showing when a parent category is selected.

9 Oct 2015, 11:16 PM
#427
satello avatar

satello

New Zenner

Join Date:
Jan 2014
Posts:
62
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

YOU ARE A STAR, YOU REALLY ARE!!!

Thanks for your help, this has been bugging me for a week. Just a question, is this related to this template only, or it is for the core cart?

As I've asked the same question in the main forum, and nobody new anything, thinking as well that was a db problem.

11 Oct 2015, 2:19 PM
#428
lindasdd avatar

lindasdd

Zen Follower

Join Date:
Jun 2007
Posts:
474
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

leon2lil:

Thanks So Much Bislewl
Worked A Treat

Has any one noticed on a mobile device sometimes the logo gets cut in half.
Or is there a limit on the size of a logo I can change somewhere

Website address is prohairtherapyltd.co.uk.

The styling that comes with the template assumes a logo that is longer than it is wide (see the Tableau logo for reference).

If your logo has two lines or a little extra height, this will happen.

The reason is that the responsive CSS resizes the image based on width. Meaning, if the width of the image doesn't fit, the CSS makes the image smaller.

So if your image is tall, the CSS won't know to resize it.

Ideally, you could change the CSS from max-width:100% to have max-height:100% so that it would resize based on height, but that isn't how things work.

Instead, do the following and adjust as needed:

  1. Open stylesheet_responsive.css
  2. Find #logo img {
  3. Add max-width: 97px; (for me a width of 97px caused an image resize that fit the height correctly. You will need to adjust this to whatever fits your logo.)
12 Oct 2015, 12:46 PM
#429
mikestaps avatar

mikestaps

Zen Follower

Join Date:
Aug 2010
Location:
Grand Blanc, MI
Posts:
305
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

satello:

YOU ARE A STAR, YOU REALLY ARE!!!

Thanks for your help, this has been bugging me for a week. Just a question, is this related to this template only, or it is for the core cart?

As I've asked the same question in the main forum, and nobody new anything, thinking as well that was a db problem.

I'm thinking that this file would have an effect site wide, and not just in the tableau template, as it is not in a tableau "override" folder. I'm not sure that there is a way to use and override in this case.

16 Oct 2015, 10:11 AM
#430
satello avatar

satello

New Zenner

Join Date:
Jan 2014
Posts:
62
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

Suggestion for the developers: as there is the option to customize the colors of the Drop Down Background Color, etc it would be a good idea to include the same color scheme for the responsive design. What I mean is they give the option to customize that part of the layout, and with a little effort in the coding this could be reflected side wide even when in responsive mode

At the moment when drop down are opened in mobile view, the colors are different from the ones in full view (if customized), unless we go hard-coding into the responsive.css and do it ourselves but this is something i really don't want (not because I am not capable...)

just my thoughts

16 Oct 2015, 4:45 PM
#431
spawnie69 avatar

spawnie69

Totally Zenned

Join Date:
Sep 2005
Location:
Ocala, FL
Posts:
527
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

mikestaps:

I have been asked (via PM's) how I was able to add the Information drop down menu next to the Categories drop down menu in the header of my site - HERE. I have also noticed similar questions posted here, so rather than answer a few PM's I wanted to share this here.
I basically copied the tpl_modules_categories_tabs.php and renamed it tpl_modules_information_tabs.php.
I also created an information defines page to deal with the mobile version of the menu not expanding, when you click on the parent "category" in the information menu it loads this page.

Please do not just upload all of these files to your site, use them as a guide to edit your files, as I have other modules and add-ons installed.

Here are the files I changed/created...
Attachment #15660

You are very kind for sharing, thanks!

16 Oct 2015, 9:40 PM
#432
satello avatar

satello

New Zenner

Join Date:
Jan 2014
Posts:
62
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

mike, nice design and custom work on your site. one thing. the images on the featured section home page carousel look too big, infact they overlap each other.

but very good taste for colours and style

17 Oct 2015, 12:02 AM
#433
spawnie69 avatar

spawnie69

Totally Zenned

Join Date:
Sep 2005
Location:
Ocala, FL
Posts:
527
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

How can you get the search box to appear on the top right?

19 Oct 2015, 4:34 PM
#434
spawnie69 avatar

spawnie69

Totally Zenned

Join Date:
Sep 2005
Location:
Ocala, FL
Posts:
527
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

spawnie69:

How can you get the search box to appear on the top right?

I found my answer in the Layout Box Controller.

19 Oct 2015, 5:47 PM
#435
mikestaps avatar

mikestaps

Zen Follower

Join Date:
Aug 2010
Location:
Grand Blanc, MI
Posts:
305
Plugin Contributions:
1

Re: Tableau Responsive Theme - Support Thread

satello:

mike, nice design and custom work on your site. one thing. the images on the featured section home page carousel look too big, infact they overlap each other.

but very good taste for colours and style

Thank you. That's is odd, the images look fine from here... what browser are you using?

Ok, So I just double checked in Firefox, IE, and safari (I tend to favor Chrome). IE and firefox produce the image overlap... Somethinng else to dig into.

21 Oct 2015, 3:36 AM
#436
spawnie69 avatar

spawnie69

Totally Zenned

Join Date:
Sep 2005
Location:
Ocala, FL
Posts:
527
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

Mike G:

I am loving the looks of Tableau. Only I can't seem to find out how to change the title on the accordion that says "FEATURES".

As you may know... What is automatically generated in this area when a customer expands this tab are things like Model #, Product Weight, etc. So I don't think "FEATURES" is really the best description for this section.

I've spent days and nights pouring through files and code trying to figure out how and where to (make what I thought would be a simple) change to the title of this tab - I'm at my wits end, feeling dumb and frustrated.

I'm hoping one of the smart :bow: experts here, will be able to explain to me how and where to change this tab's title - like I'm a three year old.

:please: - 'cause the lack of sleep over this one has turned my brain to jello :bangin:

Any idea on how we can remove Features from the product description?

Has anyone figured out how to omit the features info from the product information?

21 Oct 2015, 8:35 AM
#437
simmys66 avatar

simmys66

New Zenner

Join Date:
Mar 2011
Posts:
11
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

I am the same, installed 1.6.6 on a fresh domain and fresh install of Zencart 1.5.4 and 1.5.1 and I am unable to save the configurations I make in the initial template configuration..

21 Oct 2015, 2:42 PM
#438
spawnie69 avatar

spawnie69

Totally Zenned

Join Date:
Sep 2005
Location:
Ocala, FL
Posts:
527
Plugin Contributions:
0

Re: Tableau Responsive Theme - Support Thread

current tableau template 1.6.8 on mobile displays just BEST SELLERS only on front Is there a way to have tabs for BEST SELLERS - NEW - FEATURED - SPECIALS ?

22 Oct 2015, 12:11 AM
#439
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Tableau Responsive Theme - Support Thread

simmys66:

I am the same, installed 1.6.6 on a fresh domain and fresh install of Zencart 1.5.4 and 1.5.1 and I am unable to save the configurations I make in the initial template configuration..

I have had this issue and sometimes need to:

go to admin home
then Tools->Template selection -> Tableau -> Configuration

Also Check for Javascript errors as well...

22 Oct 2015, 12:12 AM
#440
bislewl avatar

bislewl

Totally Zenned

Join Date:
Dec 2011
Location:
Wisconsin, USA
Posts:
674
Plugin Contributions:
12

Re: Tableau Responsive Theme - Support Thread

spawnie69:

Any idea on how we can remove Features from the product description?

Has anyone figured out how to omit the features info from the product information?

I usually just remove them from the includes/templates/tableau/templates/tpl_SOMETHING.php

That avoids it from loading completely