Results 1 to 10 of 64

Hybrid View

  1. #1
    Join Date
    Jul 2021
    Posts
    12
    Plugin Contributions
    0

    Default Re: Products Review Reminder [Support Thread]

    What changes need to be made so customer don't have to login to leave review as some customers use guest checkout.

  2. #2
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,252
    Plugin Contributions
    58

    Default Re: Products Review Reminder [Support Thread]

    Quote Originally Posted by get2go View Post
    What changes need to be made so customer don't have to login to leave review as some customers use guest checkout.
    This plugin has no such controls. You will need to find a plugin or code for this. What version are you running?
    PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are not conducive to a helpful community.

  3. #3
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Products Review Reminder [Support Thread]

    ZC 2.01
    PhP 8.3

    i am getting the following error log when accessing tools->product review reminder

    Code:
    [24-Nov-2024 17:53:56 America/Los_Angeles] Request URI: /sweety/index.php?cmd=addon_review_reminder, IP address: 24.4.88.128, Language id 1
    #0 [internal function]: zen_debug_error_handler()
    #1 /sweety/includes/header.php(71): trigger_error()
    #2 /sweety/addon_review_reminder.php(291): require('/home/zch1akhw6...')
    #3 /sweety/index.php(16): require('/home/zch1akhw6...')
    --> PHP Deprecated: This page requires updates for the next Zen Cart version. Please refer your site developer or plugin author to <a href="https://docs.zen-cart.com/dev/plugins/admin_head_content/" rel="noopener noreferrer" target="_blank">this</a> documentation. in /sweety/includes/header.php on line 71.
    
    [24-Nov-2024 17:53:56 America/Los_Angeles] PHP Fatal error: Uncaught Error: Undefined constant "remove" in /sweety/addon_review_reminder.php:423
    Stack trace:
    #0 /sweety/index.php(16): require()
    #1 {main}
    thrown in /sweety/addon_review_reminder.php on line 423
    
    [24-Nov-2024 17:53:56 America/Los_Angeles] Request URI: /sweety/index.php?cmd=addon_review_reminder, IP address: 24.4.88.128
    --> PHP Fatal error: Uncaught Error: Undefined constant "remove" in /sweety/addon_review_reminder.php:423
    Stack trace:
    #0 /sweety/index.php(16): require()
    #1 {main}
    thrown in /sweety/addon_review_reminder.php on line 423.
    
    [24-Nov-2024 17:53:56 America/Los_Angeles] Request URI: /sweety/index.php?cmd=addon_review_reminder, IP address: 24.4.88.128
    --> PHP Fatal error: Uncaught Error: Undefined constant "remove" in /sweety/addon_review_reminder.php:423
    Stack trace:
    #0 /sweety/index.php(16): require()
    #1 {main}
    thrown in /sweety/addon_review_reminder.php on line 423.
    Should I revert 'remove' to IMAGE_REMOVE ? which would be the opposite of post# 52

    Thank you

  4. #4
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,916
    Plugin Contributions
    13

    Default Re: Products Review Reminder [Support Thread]

    Quote Originally Posted by nicksab View Post
    ZC 2.01
    PhP 8.3

    i am getting the following error log when accessing tools->product review reminder

    Code:
    [24-Nov-2024 17:53:56 America/Los_Angeles] Request URI: /sweety/index.php?cmd=addon_review_reminder, IP address: 24.4.88.128, Language id 1
    #0 [internal function]: zen_debug_error_handler()
    #1 /sweety/includes/header.php(71): trigger_error()
    #2 /sweety/addon_review_reminder.php(291): require('/home/zch1akhw6...')
    #3 /sweety/index.php(16): require('/home/zch1akhw6...')
    --> PHP Deprecated: This page requires updates for the next Zen Cart version. Please refer your site developer or plugin author to <a href="https://docs.zen-cart.com/dev/plugins/admin_head_content/" rel="noopener noreferrer" target="_blank">this</a> documentation. in /sweety/includes/header.php on line 71.
    
    [24-Nov-2024 17:53:56 America/Los_Angeles] PHP Fatal error: Uncaught Error: Undefined constant "remove" in /sweety/addon_review_reminder.php:423
    Stack trace:
    #0 /sweety/index.php(16): require()
    #1 {main}
    thrown in /sweety/addon_review_reminder.php on line 423
    
    [24-Nov-2024 17:53:56 America/Los_Angeles] Request URI: /sweety/index.php?cmd=addon_review_reminder, IP address: 24.4.88.128
    --> PHP Fatal error: Uncaught Error: Undefined constant "remove" in /sweety/addon_review_reminder.php:423
    Stack trace:
    #0 /sweety/index.php(16): require()
    #1 {main}
    thrown in /sweety/addon_review_reminder.php on line 423.
    
    [24-Nov-2024 17:53:56 America/Los_Angeles] Request URI: /sweety/index.php?cmd=addon_review_reminder, IP address: 24.4.88.128
    --> PHP Fatal error: Uncaught Error: Undefined constant "remove" in /sweety/addon_review_reminder.php:423
    Stack trace:
    #0 /sweety/index.php(16): require()
    #1 {main}
    thrown in /sweety/addon_review_reminder.php on line 423.
    Should I revert 'remove' to IMAGE_REMOVE ? which would be the opposite of post# 52

    Thank you
    apparently my fix was not done properly. change:

    PHP Code:
    //from
    echo '<a href="' FILENAME_ADDON_REVIEW_REMINDER '.php?oid=' $selected_order_id '&action=remove">' zen_image_submit('button_remove.gif'remove'id="btnRemove"') . '</a>' "\n";
    //to
    echo '<a href="' FILENAME_ADDON_REVIEW_REMINDER '.php?oid=' $selected_order_id '&action=remove">' zen_image_submit('button_remove.gif''remove''id="btnRemove"') . '</a>' "\n"
    notice the single quotes around the word remove.

    best.
    author of square Webpay.
    mxWorks now has Apple Pay and Google Pay. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #5
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Products Review Reminder [Support Thread]

    Quote Originally Posted by carlwhat View Post
    apparently my fix was not done properly. change:

    PHP Code:
    //from
    echo '<a href="' FILENAME_ADDON_REVIEW_REMINDER '.php?oid=' $selected_order_id '&action=remove">' zen_image_submit('button_remove.gif'remove'id="btnRemove"') . '</a>' "\n";
    //to
    echo '<a href="' FILENAME_ADDON_REVIEW_REMINDER '.php?oid=' $selected_order_id '&action=remove">' zen_image_submit('button_remove.gif''remove''id="btnRemove"') . '</a>' "\n"
    notice the single quotes around the word remove.

    best.
    as always thank you for the assist.

 

 

Similar Threads

  1. v139a Problems with mailbeez review reminder module
    By zbdblues in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 10 Nov 2012, 03:45 PM
  2. Aftersales Email Module: Review Reminder
    By BeautyHealth.com.cy in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 27 Jul 2010, 12:00 AM
  3. Review reminder
    By raphaelsewing in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 18 Mar 2008, 06:17 PM
  4. Auto/Manual Email for Review Reminder?
    By cpjfox in forum Managing Customers and Orders
    Replies: 1
    Last Post: 13 Mar 2008, 04:15 AM

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