Search found 350 matches

by Omar_one
Thu Jul 23, 2026 2:49 pm
Forum: Other
Topic: Need to be able to add multiple products to the cart at the same time
Replies: 4
Views: 610

Re: Need to be able to add multiple products to the cart at the same time

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
by Omar_one
Thu Jul 23, 2026 1:09 pm
Forum: Other
Topic: Need to be able to add multiple products to the cart at the same time
Replies: 4
Views: 610

Re: Need to be able to add multiple products to the cart at the same time

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.
shop2.JPG
shop3.JPG
by Omar_one
Sat Jul 11, 2026 6:56 pm
Forum: Hooks
Topic: Enabling / Disabling Hooks
Replies: 7
Views: 857

Re: Enabling / Disabling Hooks

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...
by Omar_one
Fri Jul 10, 2026 8:48 pm
Forum: Hooks
Topic: Enabling / Disabling Hooks
Replies: 7
Views: 857

Re: No Core Changes - A different perspective

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...
by Omar_one
Thu Jul 09, 2026 3:05 pm
Forum: Hooks
Topic: Enabling / Disabling Hooks
Replies: 7
Views: 857

Re: No Core Changes - A different perspective

I plan to share the files today or tomorrow. If anyone would like to test them and help me get everything properly finalized, please let me know.
by Omar_one
Thu Jul 09, 2026 2:25 pm
Forum: Hooks
Topic: Enabling / Disabling Hooks
Replies: 7
Views: 857

Enabling / Disabling Hooks

@azpro @beerbee @Kofod95
@ArtcoInc @14Steve14 and anyone interested in enabling/disabling Hooks.
what you think
hooks.gif
- One core-file override (hooks.php),
- sql (Adds `hooks_status`)
- 2 -3 new files
by Omar_one
Sun Jun 28, 2026 2:46 pm
Forum: Hooks
Topic: The power of Hooks!
Replies: 4
Views: 742

Re: The power of Hooks!

@tessthepup Looks interesting! Will this become a module?
by Omar_one
Sun Jun 21, 2026 4:57 pm
Forum: Hooks
Topic: Checkout_confirmation hook working but visually different
Replies: 12
Views: 1139

Re: Checkout_confirmation hook working but visually different

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....
by Omar_one
Sun Jun 21, 2026 4:02 pm
Forum: Hooks
Topic: Checkout_confirmation hook working but visually different
Replies: 12
Views: 1139

Re: Checkout_confirmation hook working but visually different

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...
by Omar_one
Sat Jun 20, 2026 7:13 pm
Forum: The Lounge
Topic: Are YOU compliant .... EU Withdrawal Button
Replies: 9
Views: 1500

Re: Are YOU compliant .... EU Withdrawal Button

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...