Page 3 of 8 FirstFirst 12345 ... LastLast
Results 21 to 30 of 80
  1. #21
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,475
    Plugin Contributions
    88

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    I've checked this plugin; it's compatible with Zen Cart v1.5.4 and v1.5.5 (no core-file changes).

  2. #22
    Join Date
    May 2014
    Location
    UK
    Posts
    317
    Plugin Contributions
    0

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    Hi.

    Is there a simple way to change one of these side boxes into displaying Expected Products? I'm still getting my head around the MySQL queries that would be needed to do so.

    Thanks in advance :)

  3. #23
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,475
    Plugin Contributions
    88

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    You could re-use the SQL queries from /includes/modules/upcoming.php (that's the centerbox implementation).

  4. #24
    Join Date
    May 2014
    Location
    UK
    Posts
    317
    Plugin Contributions
    0

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    OK thanks .. I am looking at it .. just as a trial though I installed the Best Sellers scroller but ti doesn't scroll it just produces a list of the top 10 books??

  5. #25
    Join Date
    Feb 2016
    Location
    Canada
    Posts
    143
    Plugin Contributions
    0

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    Great Add-on!!

    For the what's new scroller, what changes would have to be made to "tpl_whats_new_scrolling.php" to display the product description under the product name?

    Thanks,

  6. #26
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,475
    Plugin Contributions
    88

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    Quote Originally Posted by allmart View Post
    Great Add-on!!

    For the what's new scroller, what changes would have to be made to "tpl_whats_new_scrolling.php" to display the product description under the product name?

    Thanks,
    To make the change you're requesting, you'll need to change (at least) two files, adding the portions identified like this:

    /includes/modules/sideboxes/YOUR_TEMPLATE/whats_new_scrolling.php:
    Code:
    // -----
    // Scrolling "what's new" sidebox, based on the whats_new.php sidebox that's built into Zen Cart!
    //
    // Copyright (c) 2014, Vinos de Frutas Tropicales (lat9)
    // Copyright 2003-2010 Zen Cart Development Team
    // Copyright 2003 osCommerce
    // License: http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    //
    $display_limit = zen_get_new_date_range();
    $whats_new_scrolling_sql = "SELECT p.products_id, p.products_image, p.products_tax_class_id, p.products_price, pd.products_name, p.master_categories_id, pd.products_description
                                  FROM (" . TABLE_PRODUCTS . " p LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id )
                                 WHERE p.products_id = pd.products_id
                                   AND pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                                   AND p.products_status = 1 " . $display_limit;
    
    $whats_new_scrolling = $db->ExecuteRandomMulti ($whats_new_scrolling_sql, MAX_RANDOM_SELECT_NEW);
    
    if (!$whats_new_scrolling->EOF) {
      require ($template->get_template_dir('tpl_whats_new_scrolling.php', DIR_WS_TEMPLATE, $current_page_base, 'sideboxes') . '/tpl_whats_new_scrolling.php');
      $title =  BOX_HEADING_WHATS_NEW_SCROLLING;
      $title_link = FILENAME_PRODUCTS_NEW;
      require ($template->get_template_dir ($column_box_default, DIR_WS_TEMPLATE, $current_page_base, 'common') . '/' . $column_box_default);
      
    }
    and then change the /includes/templates/YOUR_TEMPLATE/sideboxes/tpl_whats_new_scrolling.php to display that information:
    Code:
    // -----
    // Scrolling "what's new" sidebox, based on the whats_new.php sidebox that's built into Zen Cart!
    //
    // Copyright (c) 2014, Vinos de Frutas Tropicales (lat9)
    // Copyright 2003-2011 Zen Cart Development Team
    // Copyright 2003 osCommerce
    // License: http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    //
    $content = '<div class="sideBoxContent centeredContent">';
    while (!$whats_new_scrolling->EOF) {
      $whats_new_price = zen_get_products_display_price ($whats_new_scrolling->fields['products_id']);
      $content .= "\n" . '  <div class="sideBoxContentItem hiddenField whatsNewScroller">';
      $content .= '<a href="' . zen_href_link (zen_get_info_page ($whats_new_scrolling->fields['products_id']), 'cPath=' . zen_get_generated_category_path_rev ($whats_new_scrolling->fields['master_categories_id']) . '&products_id=' . $whats_new_scrolling->fields['products_id']) . '">' . zen_image (DIR_WS_IMAGES . $whats_new_scrolling->fields['products_image'], $whats_new_scrolling->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
      $content .= '<br />' . $whats_new_scrolling->fields['products_name'] . '</a>';
      $content .= '<div>' . zen_trunc_string (zen_clean_html ($whats_new_scrolling->fields['products_description'])) . '</div>';
      $content .= '<div>' . $whats_new_price . '</div>';
      $content .= '</div>';
      $whats_new_scrolling->MoveNextRandom();
    }
    $content .= '</div><script type="text/javascript">$("div.whatsNewScroller").cycle(10000);</script>' . "\n";

  7. #27
    Join Date
    Feb 2016
    Location
    Canada
    Posts
    143
    Plugin Contributions
    0

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    Thank you very much... worked like a charm. I am hoping you can give me guidance to where I can change the css to address the following minor issue I have. in responsive mode/mobile the scrolling box is not centered on the screen I would guess because it is designed for the sidebox. Is it possible to centre the scrolling box and have the heading box full width.

    Name:  Untitled-1.jpg
Views: 160
Size:  55.7 KB

    Thanks,

  8. #28
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,475
    Plugin Contributions
    88

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    You're very welcome. If you'd post a link to the site, perhaps I can help further.

  9. #29
    Join Date
    Feb 2016
    Location
    Canada
    Posts
    143
    Plugin Contributions
    0

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    Here's the link http://www.allmart.ca/store/ it's work in progress, learning slowly.

  10. #30
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,475
    Plugin Contributions
    88

    Default Re: jQuery Scrolling Sideboxes [Support Thread]

    It's looking good! Unfortunately, there's more change required that just a CSS centering for the mobile display, since the scrolling somehow sets the page at the top after every image-update.

    It's going to be easier to simply hide that display for mobile devices by editing your /includes/templates/responsive_classic/jscript/jscript_responsive_framework.php, adding the following to the mobile-device clause:
    Code:
    $('#whatsnewscrolling).css({ 'display': 'none', 'visibility': 'hidden' });
    P.S. You're letting yourself in for a "world of hurt" by directly modifying the responsive_classic files, since you'll need to merge any updates in with your changes from the get-go on the next Zen Cart update. Better to use the Clone a Template plugin, clone what you've currently got for the responsive_classic and then make further edits on your cloned version.

 

 
Page 3 of 8 FirstFirst 12345 ... LastLast

Similar Threads

  1. Best Seller's Scrolling Images - support thread
    By chaiavi in forum Addon Sideboxes
    Replies: 32
    Last Post: 25 Jun 2022, 03:23 AM
  2. v152 jQuery Banners (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 30 Sep 2015, 02:07 AM
  3. Jquery Zoom [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 384
    Last Post: 11 Dec 2013, 02:41 AM
  4. Jquery Lightbox [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 257
    Last Post: 2 Aug 2012, 10:57 PM
  5. Scrolling Featured Sidebox support thread
    By misty in forum Addon Sideboxes
    Replies: 86
    Last Post: 28 May 2010, 05:14 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