Page 5 of 10 FirstFirst ... 34567 ... LastLast
Results 41 to 50 of 94
  1. #41
    Join Date
    Apr 2006
    Posts
    320
    Plugin Contributions
    0

    Default Re: "Whats New" Scrolling Sidebox

    This is a very nifty and very easy to install gem. I have found that it works with my two language site very nicely...

    The only hitch I have encountered so far is I can’t seem to get rid of the border around the image... I have $nfborders set to borders: "0" but I still get a thin black line around the whole image. (all my images are gifs using a transparent background that makes each ‘image‘ the same size.)

    Perhaps there is something over-riding it?

    If anyone has any ideas, i would appreciate it.

  2. #42
    Join Date
    Aug 2006
    Location
    Istanbul
    Posts
    31
    Plugin Contributions
    0

    Re: "Whats New" Scrolling Sidebox

    The products scolling twice ? Same product 2 times ! Is there any solution for thsi problem.
    see my web page on the left sidebox.

    http://www.keyiflimagaza.com/index.p...ex&language=en

    Please help!

  3. #43
    Join Date
    Feb 2004
    Posts
    1,776
    Plugin Contributions
    14

    Default Re: "Whats New" Scrolling Sidebox

    Quote Originally Posted by Remzi
    The products scolling twice ? Same product 2 times ! Is there any solution for thsi problem.
    see my web page on the left sidebox.

    http://www.keyiflimagaza.com/index.p...ex&language=en

    Please help!
    Goto page 4 of this thread.

  4. #44
    Join Date
    Aug 2006
    Location
    Istanbul
    Posts
    31
    Plugin Contributions
    0

    Re: "Whats New" Scrolling Sidebox

    Thanks, but as a new zenner. I can't find the solution at the 4th page in this tread. Pleade , can you advise me what to do.
    Thanks in advance.

  5. #45
    Join Date
    Aug 2006
    Location
    Istanbul
    Posts
    31
    Plugin Contributions
    0

    Default Re: "Whats New" Scrolling Sidebox

    Quote Originally Posted by Remzi
    Thanks, but as a new zenner. I can't find the solution at the 4th page in this tread. Pleade , can you advise me what to do.
    Thanks in advance.
    The same problem appears also by scrolling specials . Both sideboxes ( new product and specials are showing the same product 2 times. ?????

  6. #46
    Join Date
    Apr 2006
    Location
    Labuan Island
    Posts
    361
    Plugin Contributions
    2

    Default "Whats New" Scrolling Sidebox

    1. where did you get those mods?
    2. what version of zen cart did you use?
    3. any other mods installed?
    [FONT=Comic Sans MS]"Whether you think you can, or you think you can't... YOU ARE RIGHT."[/FONT]
    [FONT=Comic Sans MS]GOOD LUCK !!![/FONT]

  7. #47
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,655
    Plugin Contributions
    25

    Default Re: "Whats New" Scrolling Sidebox

    Remzi

    I can't see either of these boxes on the site for which you provided a link.
    See and test drive Zen Cart's free templates at zencarttemplates.info

    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  8. #48
    Join Date
    Aug 2006
    Location
    Istanbul
    Posts
    31
    Plugin Contributions
    0

    Default Re: "Whats New" Scrolling Sidebox

    Kuroi, hi. Thank you for your responce.I deleted the files.
    I upload today the new HTML version of whats-new and now is running . The problem , showing two times the same problem is solved. I think, I made a mistake, because tpl_whats-new.php was in the 2 sideboxes files. First in the ...../includes/templates/Custom/sideboxes/ and second in ......the/includes/templates/template_default/sideboxes/. May be it was the reason?
    However the problem is solved.
    But now I have another problem or 2 problems:
    1- In the tpl_whats_new.php file I have the value = 0 ($nfborders = @$params->borders ? $params->borders: "0";) for borders, but as you will see there is still a border showing?
    2- IT's not showing the right format. Displaying all pictures incoorectly. Better to see by Please look the Ericsson Phone (Picture)?
    Can you help me please. Thanks in advance. Remzi

    Here is the link ( 4 th sidebos left ):
    http://www.keyiflimagaza.com/index.p...ex&language=en

  9. #49
    Join Date
    Feb 2004
    Posts
    1,776
    Plugin Contributions
    14

    Default Re: "Whats New" Scrolling Sidebox

    Make sure you are changing the values here:

    Code:
    // *** Get Parameters (check if defined, if not then fill with default values)
    $nfcount = @$params->count ? $params->count : "0";          // Count : 0=All / count=limit to <count> latest newsflash (most recent)
    $nfdelay  = @$params->delay ? $params->delay : "6000";      // Delay : 1000 = 1 seconds
    $nfheight  = @$params->height ? $params->height : "150";    // Height : 200px
    $nfborders  = @$params->borders ? $params->borders: "0";    // borders: 1
    $nfpadding  = @$params->padding ? $params->padding: "0";    // padding: 2
    $nfbgcolor  = @$params->bgcolor? $params->bgcolor: "";      // bgcolor: #F0F0F0
    All the values in the "" near the end of each line.


    ---------------------------------------


    These:

    Code:
    Parameters :
    --------
    delay=10000      Wait for 10 seconds  (default: 6000 => 6 seconds)
    count=5          Display only the 5 most recent new products| 0 = displays all new products (default: 0 => All)
    height=150       Set the minimum height of the display to avoid screen redesign...
    borders=1        display a border around the new product (default : 0=no border)
    padding=2        add a marge between border and text (default : 0=no padding)
    bgcolor=#F0F0F0  display a border around the news product (default : empty=default background color
    are just example to explain what the values do, but don't affect the code

  10. #50
    Join Date
    Aug 2006
    Location
    Istanbul
    Posts
    31
    Plugin Contributions
    0

    Default Re: "Whats New" Scrolling Sidebox

    Thanks qhome,
    I changed the right values. They are :
    / *** Get Parameters (check if defined, if not then fill with default values)
    $nfcount = @$params->count ? $params->count : "10"; // Count : 0=All / count=limit to <count> latest newsflash (most recent)
    $nfdelay = @$params->delay ? $params->delay : "3000"; // Delay : 1000 = 1 seconds
    $nfheight = @$params->height ? $params->height : "150"; // Height : 200px
    $nfborders = @$params->borders ? $params->borders: "0"; // borders: 1
    $nfpadding = @$params->padding ? $params->padding: "0"; // padding: 2
    $nfbgcolor = @$params->bgcolor? $params->bgcolor: ""; // bgcolor: #F0F0F0

    But doesn' effect. Still displaying with a border and still the pictures are not right.

 

 
Page 5 of 10 FirstFirst ... 34567 ... LastLast

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
  •