Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

LeeFoster

Members
  • Posts

    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

Recent Profile Visitors

10,707 profile views

LeeFoster's Achievements

  1. @Tsimi any chance this is going to be updated for Phoenix?
  2. 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?
  3. @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
  4. Yeah I think the issue is that the hook I was using has been removed/replaced $OSCOM_Hooks->call('system', 'preActionApp');
  5. 1.0.7.5, the issue seems to be with get_products() function
  6. 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?
  7. Did neither, I'll carry on looking though. The wishlist addon has its class file that contains it's own count_contents function.
  8. 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?
  9. 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?
  10. It's writing the data to the database as it should but it's not showing on the wishlist page.
  11. 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 } }
  12. I have this code working as a hook but if the image is not there it shows the missing image icon. Once I get that sorted I'm happy. <script> $(function() { $("#input_1").change(function(){ var selectedImage = $(this).find(':selected').val(); val = $("#input_1 option:selected").text(); $("a.lb:first").html( "<img src=images/"+ {$prod_id} + "_" + selectedImage + ".jpg>"); $('a.lb:first img').addClass( "img-fluid" ); }); }); </script>
  13. When put inside my existing hook this doesn't work for me. That said you did say you had it hard coded.
×
×
  • Create New...