Page 29 of 63 FirstFirst ... 19272829303139 ... LastLast
Results 281 to 290 of 623
  1. #281
    Join Date
    Feb 2011
    Posts
    16
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Hi Numinix

    Before installing Tableau on my test site I try you demon site (http://www.numinix.com/demo/index.php?mod=936) with my iPhone6.

    Test with Google Chrome & Safari

    First impression was not really good...
    First, the demo page didn't adjust to my screen and I can't resize it to fit.

    Is it a bad understanding of something on my side or your demo site didn't work well with iOS device ?

    Bye !

  2. #282
    Join Date
    Nov 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Hi,

    Thanks for the excellent template. Working through a few issues... As mentioned earlier in this thread, the product Sort By filter doesn't work - presumably as the code for handling the 'sortby' variable hasn't been written yet. Doing so is beyond me for the moment, but here's how I fixed it to use the current ZC Price & Name sorting capability (but not the Newest First & Most Popular options, which AFAIK aren't available in the ZC code):

    In tpl_modules_product_listing.php:

    1. Line 21. Change:
    $sortbyparams = explode('&', zen_get_all_get_params(array('sortby', 'sort')));
    to:
    $sortbyparams = explode('&', zen_get_all_get_params(array('sortby', 'sort', 'page')));
    (This stops the page number variable being passed, so you always get the first page of the newly selected order)

    2. Line 30. Change the $sortby_array to:
    array('id' => '4d', 'text' => 'Price (High to Low)'),
    array('id' => '4a', 'text' => 'Price (Low to High)'),
    array('id' => '3a', 'text' => 'Name (A-Z)'),
    array('id' => '3d', 'text' => 'Name (Z-A)'),

    3. Line 37. Change:
    echo zen_draw_pull_down_menu('sortby', $sortby_array, $_GET['sortby'], 'onchange="this.form.submit();"');
    to:
    echo zen_draw_pull_down_menu('sort', $sortby_array, $_GET['sort'], 'onchange="this.form.submit();"');

    4. I also removed 'sort' in the ignore vars array of the zen_get_all_get_params functions in both the "View All" and "View Less" links (both above & below the product listing) - so any chosen sort order is kept when viewing all/less. (And FYI 'showall' is also listed twice in the "View Less" links).

  3. #283
    Join Date
    Nov 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    I also tidied up the display logic of the View All/Less links, so it now looks like this:

    <?php
    if($_GET['showall'] == 1)
    {
    ?>
    <!-- display all products num -->
    <span class="quantity-products"><?php echo sprintf(TEXT_DISPLAY_NUMBER_OF_VIEW_ALL_PRODUCTS, $listing_split->number_of_rows); ?></span>
    <!-- end/display all products num -->

    <!-- show less products -->
    <a href="<?php echo zen_href_link($_GET['main_page'], zen_get_all_get_params(array('showall', 'page', 'main_page')))?>" class="show-less">View Less</a>
    <!-- end/show less products -->
    <?php
    }
    else
    {
    ?>
    <!-- display split products num -->
    <span class="quantity-products"><?php echo $listing_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS); ?></span>
    <!-- end/display split products num -->

    <?php
    if($listing_split->number_of_rows > MAX_DISPLAY_PRODUCTS_LISTING)
    {
    ?>
    <!-- show all products -->
    <a class="show-all" href="<?php echo zen_href_link($_GET['main_page'], zen_get_all_get_params(array('showall', 'page', 'main_page')) . '&showall=1')?>">View All</a>
    <!-- end/show all products -->
    <?php
    }
    ?>

    <!-- pagination -->
    <div class="links-pagination"><?php echo TEXT_RESULT_PAGE . ' ' . $listing_split->display_links(MAX_DISPLAY_PAGE_LINKS, zen_get_all_get_params(array('page', 'info', 'x', 'y', 'main_page'))); ?></div>
    <!-- end/pagination -->
    <?php
    }
    ?>

    Don't forget to do this both above & below the product listing (assuming you have both set to display in your Admin Product Listing config).

    You'll also need to create this in your english.php:
    define('TEXT_DISPLAY_NUMBER_OF_VIEW_ALL_PRODUCTS', 'Displaying <strong>%d</strong> products');

  4. #284
    Join Date
    Sep 2008
    Location
    San Diego
    Posts
    159
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Hi:
    and thanks for a great responsive thread - it looks good;
    and more so thanks for your patience and very quick response to my IM's with a couple queries.
    Rufus

  5. #285
    Join Date
    Sep 2008
    Location
    San Diego
    Posts
    159
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by rufusclc View Post
    Hi:
    and thanks for a great responsive thread - it looks good;
    and more so thanks for your patience and very quick response to my IM's with a couple queries.
    Rufus
    Hi:
    ooops, meant to say great responsive template
    Rufus

  6. #286
    Join Date
    Nov 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    OK... I've gone to Admin/Tools/Image Handler to find out what Image Handler's all about, and in About/Help, it says "It is very strongly recommend you read through the ENTIRE "Configuration" & "Usage" sections of the Image Handler4 readme file. There you will find out exactly what Image Handler4 can do."

    Maybe I'm being dim... can anybody tell me where the Image Handler4 readme file is? It doesn't appear to be anywhere in the Tableau folder.

    Thankee.

  7. #287
    Join Date
    Nov 2005
    Posts
    38
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Found a wee bug...

    In tpl_modules_categories_tabs.php

    Line 26 - $cPath = explode('_', $_GET['cPath']); & subsequent line 33 using this exploded $cPath.

    Setting $cPath as an array here caused a few errors... a couple of PHP Warnings about strpos() in main_template_vars.php on line 75, and trim() in functions_general.php on line 63, and it also meant the Manufacturer filter didn't work as $cPath wasn't getting passed as a hidden field.

    Changing this to $cPath_ary = explode('_', $_GET['cPath']);, and replacing $cPath with $cPath_ary in line 34 seems to do the job. (I'd have used the more obvious "$cPath_array" but it's used elsewhere and didn't want to risk messing up some other code.)

  8. #288
    Join Date
    Aug 2014
    Location
    Etobicoke
    Posts
    48
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    When trying to add a product, I enter all the info. then click 'preview'. The preview comes up, and when I click on 'Insert' it gives me the following error:

    WARNING an error occurred, please refresh the page and try again.

    I have installed Canada Post Module, FedEx Web Services, UPSXML, and ckeditor.

    Using ZenCart version 1.5.4

    Checked error log and this is what it has in it:

    [24-May-2015 21:54:04 America/Denver] PHP Fatal error: 1054:Unknown column 'products_weight_type' in 'field list' :: insert into jog_products (products_quantity, products_type, products_model, products_price, products_date_available, products_weight, products_weight_type, products_dim_type, products_length, products_width, products_height, products_ready_to_ship, products_status, products_virtual, products_tax_class_id, manufacturers_id, products_quantity_order_min, products_quantity_order_units, products_priced_by_attribute, product_is_free, product_is_call, products_quantity_mixed, product_is_always_free_shipping, products_qty_box_status, products_quantity_order_max, products_sort_order, products_discount_type, products_discount_type_from, products_price_sorter, products_image, products_date_added, master_categories_id) values ('0', '1', '', '0', null, '0', 'kgs', 'cm', '0', '0', '0', '0', '1', '0', '0', '0', '1', '1', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '', now(), '66') ==> (as called by) /home1/lhalspor/public_html/zenadmin/includes/functions/database.php on line 53 <== in /home1/lhalspor/public_html/includes/classes/db/mysql/query_factory.php on line 155

    Any help would be appreciated.

  9. #289
    Join Date
    Aug 2014
    Location
    Etobicoke
    Posts
    48
    Plugin Contributions
    0

    Default Re: Tableau Responsive Theme - Support Thread

    Quote Originally Posted by llmcdonald View Post
    When trying to add a product, I enter all the info. then click 'preview'. The preview comes up, and when I click on 'Insert' it gives me the following error:

    WARNING an error occurred, please refresh the page and try again.

    I have installed Canada Post Module, FedEx Web Services, UPSXML, and ckeditor.

    Using ZenCart version 1.5.4

    Checked error log and this is what it has in it:

    [24-May-2015 21:54:04 America/Denver] PHP Fatal error: 1054:Unknown column 'products_weight_type' in 'field list' :: insert into jog_products (products_quantity, products_type, products_model, products_price, products_date_available, products_weight, products_weight_type, products_dim_type, products_length, products_width, products_height, products_ready_to_ship, products_status, products_virtual, products_tax_class_id, manufacturers_id, products_quantity_order_min, products_quantity_order_units, products_priced_by_attribute, product_is_free, product_is_call, products_quantity_mixed, product_is_always_free_shipping, products_qty_box_status, products_quantity_order_max, products_sort_order, products_discount_type, products_discount_type_from, products_price_sorter, products_image, products_date_added, master_categories_id) values ('0', '1', '', '0', null, '0', 'kgs', 'cm', '0', '0', '0', '0', '1', '0', '0', '0', '1', '1', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '', now(), '66') ==> (as called by) /home1/lhalspor/public_html/zenadmin/includes/functions/database.php on line 53 <== in /home1/lhalspor/public_html/includes/classes/db/mysql/query_factory.php on line 155

    Any help would be appreciated.
    Disregard. Cleared the history and cache on my browser, closed it and restarted. Now it's working.

  10. #290
    Join Date
    Apr 2012
    Posts
    37
    Plugin Contributions
    1

    Default Re: Tableau Responsive Theme - Support Thread

    How do you change the home page of the Tableau template as to add "Monthly Specials"? I have successfully installed the Tableau template on two Zen Cart 1.5.4 engines, and have changed the settings in 'Configuration > Layout Settings' of 'Categories Box - Show Specials Link' to 'true', which was the default though it doesn't show up. Thoughts? Help! I want to use so many more of the Numinix products but need this issue solved first. Thank you!

 

 
Page 29 of 63 FirstFirst ... 19272829303139 ... 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: 1087
    Last Post: 18 Jan 2025, 07:23 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