Page 4 of 17 FirstFirst ... 2345614 ... LastLast
Results 31 to 40 of 167
  1. #31
    Join Date
    Jan 2009
    Posts
    57
    Plugin Contributions
    0

    Default Re: jScroller Sidebox Package Support Thread

    Quote Originally Posted by clydejones View Post
    admin -> tools -> layout boxes controller

    select the boxes you wish and turn them off

    Thanks Clyde

  2. #32
    Join Date
    Apr 2008
    Posts
    37
    Plugin Contributions
    0

    Default Re: jScroller Sidebox Package Support Thread

    Hello I just installed the jScroller sidebox and wanted to use the best sellers sidebox to scroll, but mine does not scroll at all. Is there something that I am not configuring? Please Advise.

    The other thing is that it numbers it and it appears out of the box slightly, can this be fixed. Please advise.

    My url is http://www.green-ink-store.com/index.php?main_page=

  3. #33
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: jScroller Sidebox Package Support Thread

    Quote Originally Posted by BettyC View Post
    Hello I just installed the jScroller sidebox and wanted to use the best sellers sidebox to scroll, but mine does not scroll at all. Is there something that I am not configuring? Please Advise.

    The other thing is that it numbers it and it appears out of the box slightly, can this be fixed. Please advise.

    My url is http://www.green-ink-store.com/index.php?main_page=
    The scrolling script does not appear to be loading.

    make sure you have uploaded the jscript folder and its contents from the contribution to you custom template folder

    includes.templates/classic/jscript/jscript_scroller.php

  4. #34
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: jScroller Sidebox Package Support Thread

    Quote Originally Posted by clydejones View Post
    The scrolling script does not appear to be loading.

    make sure you have uploaded the jscript folder and its contents from the contribution to you custom template folder

    includes.templates/classic/jscript/jscript_scroller.php
    Quote Originally Posted by BettyC View Post
    Hello I just installed the jScroller sidebox and wanted to use the best sellers sidebox to scroll, but mine does not scroll at all. Is there something that I am not configuring? Please Advise.

    The other thing is that it numbers it and it appears out of the box slightly, can this be fixed. Please advise.

    My url is http://www.green-ink-store.com/index.php?main_page=
    make sure you have all the following files/folders uploaded to your server (The YOUR_TEMPLATE folder should be renamed to match your custom template folder (classic)
    includes/js/jscroller2-1.5.js

    includes/modules/sideboxes/YOUR_TEMPLATE/best_sellers.php
    includes/modules/sideboxes/YOUR_TEMPLATE/specials.php
    includes/modules/sideboxes/YOUR_TEMPLATE/featured.php
    includes/modules/sideboxes/YOUR_TEMPLATE/whats_new.php

    includes/templates/YOUR_TEMPLATE/sideboxesbest_sellers.php
    includes/templates/YOUR_TEMPLATE/sideboxesspecials.php
    includes/templates/YOUR_TEMPLATE/sideboxes/featured.php
    includes/templates/YOUR_TEMPLATE/sideboxes/whats_new.php

    includes/templates/YOUR_TEMPLATE/jscript/jscript_scroller.php

    includes/templates/YOUR_TEMPLATE/css/style_jscroller.css

  5. #35
    Join Date
    Aug 2007
    Location
    UK
    Posts
    66
    Plugin Contributions
    0

    Default Re: jScroller Sidebox Package Support Thread

    Quote Originally Posted by clydejones View Post
    I don't believe the SEO Mod would delete/remove the scroller div portion of the sidebox.

    As I pointed out in my previous post that is what appears to be missing in the what's new sidebox.

    open includes/templates/YOUR_TEMPLATE/sideboxes/tpl_whats_new.php

    and make sure this line of code is present
    Code:
    	$content .= '<div class="scroller_container"><div class="jscroller2_up jscroller2_speed-20 jscroller2_mousemove">' . $wn .'</div></div>';

    Hi Clyde,

    I installed this today on my site and suffered the same issue of the boxes not scrolling. I seen this post and decided to check the downloaded files. I have only checked the includes/templates/YOUR_TEMPLATE/sideboxes/tpl_whats_new.php file and it does not contain the line of code you specify in the above quote.

    I downloaded this package at the start of this week.

    If you wish I can add in the missing code and re upload it to the downloads section?

    Rob

  6. #36
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: jScroller Sidebox Package Support Thread

    Quote Originally Posted by TJR Stores View Post
    Hi Clyde,

    I installed this today on my site and suffered the same issue of the boxes not scrolling. I seen this post and decided to check the downloaded files. I have only checked the includes/templates/YOUR_TEMPLATE/sideboxes/tpl_whats_new.php file and it does not contain the line of code you specify in the above quote.

    I downloaded this package at the start of this week.

    If you wish I can add in the missing code and re upload it to the downloads section?

    Rob
    I just downloaded the mod from the downloads section:

    This is the content of includes templates/includes/templates/YOUR_TEMPLATE/sideboxes/tpl_whats_new.php
    note the highlighted portion.

    Code:
    <?php
    /**
     * Side Box Template
     *
     * @package templateSystem
     * @copyright Copyright 2003-2007 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_whats_new.php 6128 2007-04-08 04:53:32Z birdbrain $
     */
      $content = "";
        $content .= '<div class="sideBoxContent centeredContent">';
      $whats_new_box_counter = 0;
      while (!$random_whats_new_sidebox_product->EOF) {
        $whats_new_price = zen_get_products_display_price($random_whats_new_sidebox_product->fields['products_id']);
        $wn .=  	 '<a href="' . zen_href_link(zen_get_info_page($random_whats_new_sidebox_product->fields['products_id']), 'cPath=' . zen_get_generated_category_path_rev($random_whats_new_sidebox_product->fields['master_categories_id']) . '&products_id=' . $random_whats_new_sidebox_product->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $random_whats_new_sidebox_product->fields['products_image'], $random_whats_new_sidebox_product->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '<br />' . $random_whats_new_sidebox_product->fields['products_name'] . '</a><br /><div>' . $whats_new_price . '<br /><br /></div>';
        $whats_new_box_counter++;
        $random_whats_new_sidebox_product->MoveNextRandom();
      }
      
    	$total = $whats_new_box_counter;
    
    	if ($total > 1) { //if more than one new product exists in the db then scrolling begins
    	$content .= '<div class="scroller_container"><div class="jscroller2_up jscroller2_speed-20 jscroller2_mousemove">' . $wn .'</div></div>';
     }
     elseif ($total == 1) {  // If only one new product exists in the db then the box will remain static
        $content .=  $wn;
     }
     else { //  If there are no new products then this text is displayed
        $content .= "No new products this month!";
     }
    	
        $content .= '</div>';
    //EOF

  7. #37
    Join Date
    Aug 2007
    Location
    UK
    Posts
    66
    Plugin Contributions
    0

    Default Re: jScroller Sidebox Package Support Thread

    Hi Clyde,

    I couldn't find it cause it never had the jscroller2_mousemove section. I checked all the files and they were all the same. I have it all working fine now and it stops when hovered over.

    My initial issue was a very simple mistake on my part.. I only had 1 item displayed in the sidebox

    I am yet to upload the best sellers sidebox and you will see that it does not stop scrolling when you hover over it. I have fixed the other 3 files.


    Rob

  8. #38
    Join Date
    Apr 2008
    Location
    Athens
    Posts
    84
    Plugin Contributions
    0

    Default Re: jScroller Sidebox Package Support Thread

    If have problems with this module,try disable and then enable it again from Admin->Tools->Layout boxes controller

  9. #39
    Join Date
    Apr 2008
    Location
    Athens
    Posts
    84
    Plugin Contributions
    0

    Default Re: jScroller Sidebox Package Support Thread

    Can someone help if can.

    I have 2 languages on my site greek and english. With jscroller each time display the same products 2 times(english&greek). Can modified to show only one version per time?

    The site is http://www.easytechnology.gr/

  10. #40
    Join Date
    Apr 2008
    Location
    Athens
    Posts
    84
    Plugin Contributions
    0

    Default Re: jScroller Sidebox Package Support Thread

    Quote Originally Posted by soki View Post
    Can someone help if can.

    I have 2 languages on my site greek and english. With jscroller each time display the same products 2 times(english&greek). Can modified to show only one version per time?

    The site is http://www.easytechnology.gr/
    I found the solution thanks
    http://www.zen-cart.com/forum/showpo...0&postcount=26

 

 
Page 4 of 17 FirstFirst ... 2345614 ... LastLast

Similar Threads

  1. Social Sidebox Support Thread
    By brandonturpin in forum Addon Sideboxes
    Replies: 32
    Last Post: 21 Mar 2013, 06:51 AM
  2. Facebook sidebox -Support Thread
    By neboztik in forum Addon Sideboxes
    Replies: 31
    Last Post: 22 Jan 2013, 03:34 AM
  3. LiveChat Sidebox - Support Thread
    By b.kubiak in forum Addon Sideboxes
    Replies: 13
    Last Post: 15 Mar 2012, 08:00 PM
  4. v139h Longer Bestsellers sidebox - jScroller Sidebox Package
    By Maynards in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 12 Feb 2012, 07:26 PM
  5. GOB Package Trackers module - Support Thread
    By gob33 in forum Addon Shipping Modules
    Replies: 39
    Last Post: 15 Dec 2010, 02:39 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