Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 30
  1. #11
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    if anyone can help me out with this problem, I would greatly appreciate it ;)

  2. #12
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    http://www.dezinashop.com/demo/

    Best Sellers Scrolling Sidebox, left side at above...

  3. #13
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    Quote Originally Posted by misty View Post
    http://www.dezinashop.com/demo/

    Best Sellers Scrolling Sidebox, left side at above...

    Yeah I see that it works, just trying to figure out what I am doing wrong on my end

  4. #14
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    Quote Originally Posted by chris32882 View Post
    Yeah I see that it works, just trying to figure out what I am doing wrong on my end
    Quoted url so you could VIEW SOURCE...

    my code...
    Code:
    <MARQUEE style="position:relative" behavior= "scroll" align= "center" direction= "up" width="140" height="160" scrollamount= "2" scrolldelay= "5" onmouseover='this.stop()' onmouseout='this.start()'>
    Your Code
    Code:
    <MARQUEE behavior= "scroll" align= "center" direction= "up" width="150" height="160" scrollamount= "1" scrolldelay= "5" onmouseover='this.stop()' onmouseout='this.start()'>
    Image Handler 2 installed affects scolling sideboxes...

  5. #15
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    Quote Originally Posted by misty View Post
    Quoted url so you could VIEW SOURCE...

    my code...
    Code:
    <MARQUEE style="position:relative" behavior= "scroll" align= "center" direction= "up" width="140" height="160" scrollamount= "2" scrolldelay= "5" onmouseover='this.stop()' onmouseout='this.start()'>
    Your Code
    Code:
    <MARQUEE behavior= "scroll" align= "center" direction= "up" width="150" height="160" scrollamount= "1" scrolldelay= "5" onmouseover='this.stop()' onmouseout='this.start()'>
    Image Handler 2 installed affects scolling sideboxes...
    I'm sorry I didn't see what you meant by the that post, I realize that now.

    I changed the marquee code with the code that was on your website and it messed up the site more for some reason..

  6. #16
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    if someone can be more descriptive and explain to me what I am doing or what I can change to solve this problem I would appreciate it. I isntalled this contribution thought it would work right out of the box it didn't explain how to install it whatsoever or if it was compatible with image handler or not.

  7. #17
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    or if it was compatible with image handler or not.
    Image Handler 2 does not show mousepver image with
    Bestsellers scrolling sidebox as you can see on my demo site..which version of this mod did you install?

  8. #18
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    Quote Originally Posted by misty View Post
    Image Handler 2 does not show mousepver image with
    Bestsellers scrolling sidebox as you can see on my demo site..which version of this mod did you install?
    I believe its the latest version...

    scrolling_bestsellers_sidebox_1-0.rar is what I downloaded

  9. #19
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    Quote Originally Posted by chris32882 View Post
    I believe its the latest version...

    scrolling_bestsellers_sidebox_1-0.rar is what I downloaded
    Code:
    <?php
    /**
     * Scrolling Best Sellers Side Box Template
     * Updated by dezina.com - December 2008
     * @package templateSystem
     * @copyright Copyright 2003-2005 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_best_sellers.php 2982 2006-02-07 07:56:41Z birdbrain $
     */
      $content = '';
      $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent centeredContent">';
      for ($i=1; $i<=sizeof($bestsellers_list); $i++) {
        $rp .=   '<br /><center><a href="' . zen_href_link(zen_get_info_page($bestsellers_list[$i]['id']), 'products_id=' . $bestsellers_list[$i]['id']) . '">' . '<img class="bestsellers_thumbnail" src="images/' . $bestsellers_list[$i]['image'] . '">' . '<br>' .zen_trunc_string($bestsellers_list[$i]['name'], BEST_SELLERS_TRUNCATE, BEST_SELLERS_TRUNCATE_MORE) . '</a></center><br /><br />' . "\n";
      }
      $total = $i;
     if ($total > 1) { //if more than one special exists in the db then scrolling begins
     $content .= '<MARQUEE style="position:relative" behavior= "scroll" align= "center" direction= "up" width="140" height="160" scrollamount= "2" scrolldelay= "5" onmouseover=\'this.stop()\' onmouseout=\'this.start()\'>' . $rp .'</MARQUEE>';
     }
     elseif ($total == 1) {  // If only one special exists in the db then the specials box will remain static
        $content .=  $rp;
     }
     else { //  If there are no bestsellers then this text is displayed
        $content .= "No bestsellers this month!";
     }
     $content .= '</div>';
    ?>
    Above is code from my own amended tpl_best_sellers.php

  10. #20
    Join Date
    Oct 2008
    Location
    Hornell, NY
    Posts
    334
    Plugin Contributions
    1

    Default Re: "Best sellers" scrolling sidebox thumbnail problem

    Quote Originally Posted by misty View Post
    Code:
    <?php
    /**
     * Scrolling Best Sellers Side Box Template
     * Updated by dezina.com - December 2008
     * @package templateSystem
     * @copyright Copyright 2003-2005 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_best_sellers.php 2982 2006-02-07 07:56:41Z birdbrain $
     */
      $content = '';
      $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent centeredContent">';
      for ($i=1; $i<=sizeof($bestsellers_list); $i++) {
        $rp .=   '<br /><center><a href="' . zen_href_link(zen_get_info_page($bestsellers_list[$i]['id']), 'products_id=' . $bestsellers_list[$i]['id']) . '">' . '<img class="bestsellers_thumbnail" src="images/' . $bestsellers_list[$i]['image'] . '">' . '<br>' .zen_trunc_string($bestsellers_list[$i]['name'], BEST_SELLERS_TRUNCATE, BEST_SELLERS_TRUNCATE_MORE) . '</a></center><br /><br />' . "\n";
      }
      $total = $i;
     if ($total > 1) { //if more than one special exists in the db then scrolling begins
     $content .= '<MARQUEE style="position:relative" behavior= "scroll" align= "center" direction= "up" width="140" height="160" scrollamount= "2" scrolldelay= "5" onmouseover=\'this.stop()\' onmouseout=\'this.start()\'>' . $rp .'</MARQUEE>';
     }
     elseif ($total == 1) {  // If only one special exists in the db then the specials box will remain static
        $content .=  $rp;
     }
     else { //  If there are no bestsellers then this text is displayed
        $content .= "No bestsellers this month!";
     }
     $content .= '</div>';
    ?>
    Above is code from my own amended tpl_best_sellers.php
    ahh that fixed the problem with the webpage and I see the product title now, for some reason the pictures are big when it scrolls

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. v139h restoring "Products Ordered" list anr therefore best sellers box
    By freedude in forum General Questions
    Replies: 1
    Last Post: 17 Jun 2012, 06:00 PM
  2. Why "Best Sellers" linked to "Specials" (sales module?)?
    By Cluelessjt in forum Basic Configuration
    Replies: 1
    Last Post: 29 Aug 2010, 02:54 AM
  3. Display "Best Sellers" like "What's New" or "Specials" lists.
    By jsmooth in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 22 Jun 2010, 12:06 AM
  4. Replies: 4
    Last Post: 3 Dec 2007, 02:10 PM

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