Blaine wrote: ↑Thu Jul 23, 2026 2:27 pm
How were you able to accomplish this? Did you have to create a new action and/or class?
You need to create a new class. to allows you to pass either a single product ID or an array of product IDs,
check out add_product.php on actions folder includes/actions
Hi @Blaine
I am working on something like this.. It’s working smoothly for products without attributes right now! I'm still troubleshooting an issue where products with attributes aren't triggering correctly.
azpro beerbee Kofod95 ArtcoInc 14Steve14 and anyone interested in enabling/disabling Hooks. Disabling or enabling a hook file does not automatically toggle all of its individual methods and actions. The ZIP folder has been updated with the fix. Hooks_Manager_v1.1.zip Alternatively, you can manually...
azpro beerbee Kofod95 ArtcoInc 14Steve14 - I added another filter for hook locations (Shop and Admin). The page will display hooks that are defined in override template also. ALTER TABLE hooks ADD COLUMN hooks_status ENUM('1','0') NOT NULL DEFAULT '1' AFTER hooks_method; ALTER TABLE hooks ADD UNIQU...
I think you need to - Remove the custom validation script . Because checkout forms usually have built-in validation checks. - adding form-switch-input to the classes, this will let native CSS engine take care of the styling. try this <?php /* includes/hooks/shop/checkout_confirmation/digital_waiver....
14Steve14 try this <?php /* includes/hooks/shop/checkout_confirmation/digital_waiver.php CE Phoenix Compliance Engine */ class hook_shop_checkout_confirmation_digital_waiver { public function listen_injectFormDisplay() { $this->load_lang(); global $cart; // Safety check if (!isset($cart) || !is_obj...
I have created an order cancellation workflow with the following components: Frontend Hook (account_history_info.php): Displays a "Cancel Order" button only if the order was placed within the last 14 days and its current status is either 1 (Pending) or 2 (Processing). The button is automat...