

LeeFoster
Members-
Content count
1,563 -
Joined
-
Last visited
-
Days Won
11
LeeFoster last won the day on November 22 2020
LeeFoster had the most liked content!
Profile Information
-
Real Name
Lee Foster
- Website
Recent Profile Visitors
9,827 profile views
-
@Tsimi any chance this is going to be updated for Phoenix?
- 18 replies
-
- option types
- attributes input field
-
(and 2 more)
Tagged with:
-
LeeFoster started following Image upload on Contact form
-
Image upload on Contact form
LeeFoster posted a topic in osCommerce Online Merchant Community Bootstrap Edition
Has anyone added the option to upload images using the contact us form? I'd like to add a way for customers to send an image, for example if they receive an item damaged. -
Is this for oscommerce or phoenix?
-
Right I have this working but I want to add to it. I'd like to set a default page for a group, I have a content creators group and I'd like to send them straight to info_pages.php. Any thoughts on how to achieve this before I start digging?
-
@hungryfrank As soon as I create a group and add someone to it I get this error. I'm on Phoenix 1.0.7.10
-
OllaCart Point of Sale for osCommerce - ocPOS
LeeFoster replied to jcall's topic in General Add-Ons Support
Anyone using this with Phoenix? -
Yeah I think the issue is that the hook I was using has been removed/replaced $OSCOM_Hooks->call('system', 'preActionApp');
-
1.0.7.5, the issue seems to be with get_products() function
-
The upgrade to 1.0.7.5 has caused issues with this add on, is any one interested in working together to get this fixed?
-
Did neither, I'll carry on looking though. The wishlist addon has its class file that contains it's own count_contents function.
-
Finally got this on a live site and now getting the below error on the first visit to the site. Any ideas? Or can I just suppress it?
-
Yeah that did it, thanks.
-
Still struggling to get this fully hooked. The final piece is just out of reach, the application_top.php change still isn't working. I have created the hook file however it doesn't seem to be passing the session data even though it is passing data to the database. Do any of the core dev's have 5 mins to help @ecartz @burt?
-
It's writing the data to the database as it should but it's not showing on the wishlist page.
-
I managed to hook in the application_bottom.php changes thanks to @burt adding some more hooks, however, it doesn't fully work. The page redirects to the wishlist as it should but nothing is added not. The code is below class hook_shop_system_wishlistApp { var $preActionApp = null; public function listen_preActionApp() { // 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'] : ''; // php 5 $qty = isset($_POST['qty']) ? (int)$_POST['qty'] : 1; // php 7 //$qty = (int)($_POST['qty'] ?? 1); $wishList->add_wishlist($_POST['products_id'], $wishList->get_quantity(tep_get_uprid($_POST['products_id'], $attributes))+$qty, $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')); } // EOF WISHLIST } }