Update:
I tested v1.0.3 with php 8.0 and 8.1, and got the similar results.
Update:
I tested v1.0.3 with php 8.0 and 8.1, and got the similar results.
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.
just to make it easy, i would change the IMAGE_REMOVE to 'remove'. ie:
v1.0.3 also makes use of `zen_image_submit` which looks deprecated as of zc v1.5.8.PHP Code://from
echo '<a href="' . FILENAME_ADDON_REVIEW_REMINDER . '.php?oid=' . $selected_order_id . '&action=remove">' . zen_image_submit('button_remove.gif', IMAGE_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";
It works, thanks!
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.
How do some similar modules allow customer to login via the link supplied in the email reminder? Without them having to put their password in, its already logged in and ready to put review. Just wondering.
What changes need to be made so customer don't have to login to leave review as some customers use guest checkout.