Thread: recently viewed

Page 8 of 9 FirstFirst ... 6789 LastLast
Results 71 to 80 of 84
  1. #71
    Join Date
    Mar 2010
    Posts
    3
    Plugin Contributions
    0

    Default Re: recently viewed

    Well, after a few hours of trying anything I finally found the problem. My fix is below for anybody else having the same problem:

    I had the "Admin - Configuration - Images" section of my store set with the following parameters:

    Small Image Width - 125
    Small Image Height - 0

    It seems having the Height set to 0 just prevented the Recently Viewed mod from getting the size correct so it showed it full sized.

    I changed my settings in ZC to both be 125 and it's now showing a correct image.

    I'm going to have to test with a rectangular sized image to see if it's distorting the image for me. If anybody knows of a better option I'm all ears.

  2. #72
    Join Date
    Jun 2006
    Posts
    403
    Plugin Contributions
    0

    red flag why no pop-up image on recently viewed small images?

    I installed "Recent Views" module on my site (www.best4future.com). I noticed that when I put the mouse over the small image under the sidebox "Recently viewed", there is no pop-up medium image. And all the titles for small images are "100". (I installed image-handler 2)

    While I I put the mouse over the small image under the sidebox "New Products", the medium images pop up.

    Why is that? Is there any way to fix? Thank you!!

    Lina

  3. #73
    Join Date
    Jun 2007
    Location
    Posadas, Misiones, Argentina
    Posts
    220
    Plugin Contributions
    0

    Default Re: recently viewed

    could somebody help me to uninstall the sql patch please?

    installation was:

    INSERT INTO configuration ( configuration_title , configuration_key , configuration_value , configuration_description , configuration_group_id , sort_order , last_modified , date_added) VALUES ( 'Maximum Display of Recently Viewed Products', 'RECENT_VIEWED_PRODUCTS_MAXIMUM', '3', 'This sets the maximum number of recently viewed items a user can see. If set to 0 or left blank will display 10 items maximum.', '3', '900' , NULL , NOW() );

    thanks in advance...
    URL: http://www.littledreamswarehouse.com/shop
    Zen Version: 1.3.89h
    Zen Template: orange modified

  4. #74
    Join Date
    Apr 2010
    Location
    Sutton, MA
    Posts
    150
    Plugin Contributions
    0

    Idea or Suggestion Re: recently viewed

    Hello there - I really love your report - it's a great tool! May I make a suggestion to setup a filter - perhaps by some attibute that could group a bunch of items that meet the criteria? My application is - I would like to sell items on consignment on my website. I want to run the Recently Viewed Items Report on one of my consignment accounts so they may see their activity. I was thinking about putting a two digit number in front of the description as a way to make this work on a simple bases. I thought that if I could punch in the two digit number the report would just select this records matching the two digit number from the description field and then show only those items selected. Perhaps you could make it more flexiable by allowing more digits (alpha/numberic) to select on.

    Thanks! Jeff

  5. #75
    Join Date
    Jul 2011
    Posts
    22
    Plugin Contributions
    1

    Default Re: why no pop-up image on recently viewed small images?

    Quote Originally Posted by lina0962 View Post
    I installed "Recent Views" module on my site (www.best4future.com). I noticed that when I put the mouse over the small image under the sidebox "Recently viewed", there is no pop-up medium image. And all the titles for small images are "100". (I installed image-handler 2)

    While I I put the mouse over the small image under the sidebox "New Products", the medium images pop up.

    Why is that? Is there any way to fix? Thank you!!

    Lina
    I tried your site best4future.com and noticed you have got recently viewed to work properly with image handler, I am using IH3 with this mod and getting the same error as your query. Did you fix the issue yourself or find a post on this site? I have searched on and off for many hours with no luck almost to the point of keeping it like it is.

  6. #76
    Join Date
    Jul 2011
    Posts
    22
    Plugin Contributions
    1

    Default Re: why no pop-up image on recently viewed small images?

    Quote Originally Posted by honda-crunch View Post
    I tried your site best4future.com and noticed you have got recently viewed to work properly with image handler, I am using IH3 with this mod and getting the same error as your query. Did you fix the issue yourself or find a post on this site? I have searched on and off for many hours with no luck almost to the point of keeping it like it is.

    Well, I did not give up and I have now found a solution...

    It now gives a full product name and loads up a medium size image with IH3

    I am using Zencart 1.3.9h with Recenlty Viewed 1.1 and Image handler 3. I have tested on my site and found no errors in the cache log.

    I thought I would post it here as I'm sure I am not the only one with this issue.

    Here Goes:
    Find php file: tpl_recent_products.php
    located in: cart/includes/templates/sideboxes/

    If like me you have extra templates then use:
    cart/includes/templates/YOUR_TEMPLATE/sideboxes/

    Find line 11 which starts:

    $content .= '<a href="' . zen_href_link(zen_get_info_page($recent_products->fields["products_id"]), 'products_id=' .
    $recent_products->fields["products_id"]) . '">' . zen_image(DIR_WS_IMAGES . $recent_products->fields['products_image'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br />' . $recent_products->fields['products_name'] . '<br />' ;

    Replace it with:

    $content .= '<a href="' . zen_href_link(zen_get_info_page($recent_products->fields['products_id']), 'cPath=' . zen_get_generated_category_path_rev($recent_products->fields['master_categories_id']) . '&products_id=' . $recent_products->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $recent_products->fields['products_image'], $recent_products->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
    $content .= '<br />' . $recent_products->fields['products_name'] . '</a>';

    Don't touch any other file.
    As I'm not a professional programmer, obviously I will not guarantee it. Please make a backup before you start.

    The next thing to do is to show a price under each product!

  7. #77
    Join Date
    Jun 2010
    Location
    London
    Posts
    39
    Plugin Contributions
    0

    Default Re: recently viewed

    Hi . I have installed the recently viewed module and it shows the recently viewed item in sidebox but I would like to have it underneath the product info page.. I have added the following code in my tpl_product_info_display.php page but it does not show anything

    <!--bof recent products module-->
    <?php require($template->get_template_dir ('tpl_modules_recent_products.php',DIR_WS_TEMPLATE, $current_page_base,'templates') . '/tpl_modules_recent_products.php'); ?>
    <!--eof recent products module-->


    Any suggestion would be so appreciated

  8. #78
    Join Date
    Jun 2010
    Location
    London
    Posts
    39
    Plugin Contributions
    0

    Default Re: recently viewed

    Hi . I have installed the recently viewed module and it shows the recently viewed item in sidebox but I would like to have it underneath the product info page.. I have added the following code in my tpl_product_info_display.php page but it does not show anything

    <!--bof recent products module-->
    <?php require($template->get_template_dir ('tpl_modules_recent_products.php',DIR_WS_TEMPLATE, $current_page_base,'templates') . '/tpl_modules_recent_products.php'); ?>
    <!--eof recent products module-->


    Any suggestion would be so appreciated

  9. #79
    Join Date
    May 2010
    Posts
    142
    Plugin Contributions
    0

    Default Re: why no pop-up image on recently viewed small images?

    Quote Originally Posted by honda-crunch View Post
    Well, I did not give up and I have now found a solution...

    It now gives a full product name and loads up a medium size image with IH3

    I am using Zencart 1.3.9h with Recenlty Viewed 1.1 and Image handler 3. I have tested on my site and found no errors in the cache log.

    I thought I would post it here as I'm sure I am not the only one with this issue.

    Here Goes:
    Find php file: tpl_recent_products.php
    located in: cart/includes/templates/sideboxes/

    If like me you have extra templates then use:
    cart/includes/templates/YOUR_TEMPLATE/sideboxes/

    Find line 11 which starts:

    $content .= '<a href="' . zen_href_link(zen_get_info_page($recent_products->fields["products_id"]), 'products_id=' .
    $recent_products->fields["products_id"]) . '">' . zen_image(DIR_WS_IMAGES . $recent_products->fields['products_image'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br />' . $recent_products->fields['products_name'] . '<br />' ;

    Replace it with:

    $content .= '<a href="' . zen_href_link(zen_get_info_page($recent_products->fields['products_id']), 'cPath=' . zen_get_generated_category_path_rev($recent_products->fields['master_categories_id']) . '&products_id=' . $recent_products->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $recent_products->fields['products_image'], $recent_products->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT);
    $content .= '<br />' . $recent_products->fields['products_name'] . '</a>';

    Don't touch any other file.
    As I'm not a professional programmer, obviously I will not guarantee it. Please make a backup before you start.

    The next thing to do is to show a price under each product!
    Thank you so much! I was at my wits end with this problem!

  10. #80
    Join Date
    May 2011
    Location
    DELHI,INDIA
    Posts
    43
    Plugin Contributions
    1

    Default Re: recently viewed

    hi friends i have installed the recently viewed mod, i am using zen cart version 1-39h along with I.H.3 , THE SIDE-BOX images are not ENLARGED and price is not shown,my site molw a.com ,how can i correct this..

 

 
Page 8 of 9 FirstFirst ... 6789 LastLast

Similar Threads

  1. v151 recently viewed products
    By 100asa in forum Addon Sideboxes
    Replies: 2
    Last Post: 3 Dec 2013, 04:30 PM
  2. Recently Viewed indicator while shopping?
    By vinnyna in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 16 Dec 2011, 02:24 PM
  3. Recently viewed sidebox
    By sjk1000 in forum Addon Sideboxes
    Replies: 13
    Last Post: 27 Dec 2009, 08:16 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