

tmcca
Members-
Content count
189 -
Joined
-
Last visited
-
Days Won
1
tmcca last won the day on October 27 2017
tmcca had the most liked content!
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
-
The files are included that are overwritten but for 1.0.5.0 I will write instructions though instead of actually giving the files I guess.
-
Did you try that fix?
-
I see one issue try changing this // BOF WISHLIST // wishlist data if (!tep_session_is_registered('wishList') || !is_object($wishList)) { tep_session_register('wishList'); $wishList = new wishlist; } //Wishlist actions (must be before shopping cart actions) if (isset($_POST['wishlist'])) { if (isset($_POST['products_id']) && is_numeric($_POST['products_id'])) { $attributes = isset($_POST['id']) ? $_POST['id'] : ''; $wishList->add_wishlist($_POST['products_id'], $wishList->get_quantity(tep_get_uprid($_POST['products_id'], $attributes))+1, $attributes); } if (WISHLIST_REDIRECT == 'No') tep_redirect(tep_href_link('product_info.php', 'products_id=' . $_POST['products_id'])); tep_redirect(tep_href_link('wishlist.php')); } to this: // BOF WISHLIST // wishlist data if (!isset($_SESSION['wishList']) || !is_object($wishList)) { $_SESSION['wishList']; $wishList = new wishlist; } //Wishlist actions (must be before shopping cart actions) if (isset($_POST['wishlist'])) { if (isset($_POST['products_id']) && is_numeric($_POST['products_id'])) { $attributes = isset($_POST['id']) ? $_POST['id'] : ''; $wishList->add_wishlist($_POST['products_id'], $wishList->get_quantity(tep_get_uprid($_POST['products_id'], $attributes))+1, $attributes); } if (WISHLIST_REDIRECT == 'No') tep_redirect(tep_href_link('product_info.php', 'products_id=' . $_POST['products_id'])); tep_redirect(tep_href_link('wishlist.php')); } tell me what happens. Some of this maybe not needed. it maybe enough to use only if (!isset($_SESSION['wishlist])) { I have to check that code. 1.0.5.2 uses $_SESSION variables most likely issue here.
-
Did you replace the files in the wishlist directory to your store? you can't do that since this is for version 1.0.5.0 those files have changed since example application_top.. I am curious if that's issue here Search for //BOF Wishlist and replace those in the files on 1.0.5.2
-
-
I had that happening and had to do with that function I gave you. I will download 1.0.5.2 and see if I can figure it out
-
I will look into this further you getting any errors? Can you show me a screenshot as what's happening?
-
After doing that see what happens. If it works than it is hook function issue with 1.0.5.2
-
in application_top remove the hook or comment it out and replace it with this: // BOF WISHLIST // wishlist data if (!tep_session_is_registered('wishList') || !is_object($wishList)) { tep_session_register('wishList'); $wishList = new wishlist; } //Wishlist actions (must be before shopping cart actions) if (isset($_POST['wishlist'])) { if (isset($_POST['products_id']) && is_numeric($_POST['products_id'])) { $attributes = isset($_POST['id']) ? $_POST['id'] : ''; $wishList->add_wishlist($_POST['products_id'], $wishList->get_quantity(tep_get_uprid($_POST['products_id'], $attributes))+1, $attributes); } if (WISHLIST_REDIRECT == 'No') tep_redirect(tep_href_link('product_info.php', 'products_id=' . $_POST['products_id'])); tep_redirect(tep_href_link('wishlist.php')); }
-
I think the hooks run differently in 1.0.5.2 try it without hooks and see what happens please
-
Yes 1.0.5.2 will have issues I think.
-
Weird on my end it works. I will look more into it when I get time.
-
try it now
-
I will see what is going on. I just added the language files
-
Ok that should be ok now