Forum Replies Created

Viewing 15 replies - 16 through 30 (of 106 total)
  • Thread Starter tictok

    (@tictok)

    Just want to report that I decided to hide PHP warnings for now, but the re-ordering doesn’t actually work on the front end.

    However downgrading your plugin back down to 2.9.0 (from the recent 2.9.1 update) fixed the issue for me. PHP warnings gone and re-ordering works again.

    Thread Starter tictok

    (@tictok)

    Thank you!

    Thread Starter tictok

    (@tictok)

    Hi there, thanks for your reply. Could I ask please, do you have any loose ETA for your Pro version? Will it likely be this year?

    Kind regards

    Thread Starter tictok

    (@tictok)

    Hi Freddie & thanks for your reply.

    I’m wondering if you have me mistaken as don’t think I’ve ever used the shredder method. Currently using the Exclusive method to split orders containing specific items. I *think* it’s the only method I’ve used.

    Please don’t get me wrong, I really appreciate the amount of work that goes into the development and maintenance of a plugin, theme or app.

    I was hoping yourself or Fahad might just be able to give me a hint or pointer as to where to look in your plugin, or basic info on how it works internally, as was only really looking ideas of how I might go about customising it or extending it and where I should target.

    Kind regards

    Thread Starter tictok

    (@tictok)

    Hi Fahad

    Apologies for the delay. I had a very rare few days off!

    I confirm that works great – many thanks for looking at this.

    Kind regards
    Stef

    Thread Starter tictok

    (@tictok)

    Hi Fahad,

    Spotted the update to the plugin today – many thanks for looking at this!

    Unfortunately it doesn’t quite work for me on the order received / thankyou page. The child orders still show order ID instead of the sequential order number.

    I had a quick look and found a quick fix for me.

    on line 5187 of the functions.php file in your plugin you have this line:
    $child_id = $post_data->ID;

    just after that I added:

    if ( class_exists( 'WC_Seq_Order_Number_Pro' ) || class_exists( 'WC_Seq_Order_Number' ) ) {	
      $order = wc_get_order( $child_id );
      $child_id = $order->get_order_number();
    }

    that then shows the sequential order number on the order received/thank you page, however I haven’t checked yet how the child order numbers display within customer emails.

    I also extended the conditional check to include the free version of WooCommerce Sequential Order Number too.

    Also, could you please confirm that if in the premium version of your plugin, the ‘Remove Items from Parent Order on Split?’ option works for ‘auto split’ orders?

    Many thanks
    Stef

    • This reply was modified 4 years, 2 months ago by tictok.
    Thread Starter tictok

    (@tictok)

    Hi Fahad – thanks you for your reply!

    So, I’m currently using your free version, but if this works will happily buy the premium version. It’s too much to risk (cost-wise) to buy the premium version without been sure it will work as needed first! I hope you understand. I do appreciate all your work on this plugin though, so if it works out I will definitely purchase it.

    I’m not so sure it’s my templates that need updating? –?they already display the current sequential order number for a standard non-split order (both on thank-you page and in emails). It’s the additional details about the split orders that your plugin adds to the thank-you/order-received page and emails that displays the standard order id instead of sequential number.

    Many thanks
    Stef

    Thread Starter tictok

    (@tictok)

    Hi – thanks for your reply Fahad,

    I’ll come and contact you through your demo website (although might not be until early next week). Thanks.

    To be clear though, as I think I might have confused things:

    Orders payed for using Paypal ARE being split as expected.
    However they are not receiving the correct order statuses.

    This happens even when the user gets sent back to the site from Paypal. The orders also appear split as expected on the Thank You page. We currently use standard PayPal, but we just signed up from PayPal by Braintree. That takes a few days for them to authorise our company before we can use it, so will test with that too next week.

    Many thanks
    Stef

    Thread Starter tictok

    (@tictok)

    Hi – thanks for the reply. I found a different solution for now, but my understanding is that rel=0 still works, in that it keeps the related videos to those that are in the same channel as the YouTube vid. That’s important for me as it keeps the viewers focus on the same brand.

    Thanks anyway! ??

    • This reply was modified 4 years, 4 months ago by tictok.
    Thread Starter tictok

    (@tictok)

    Just updated the plugin myself. Same here, works great.
    Thanks for the quick turn around team google!

    Thread Starter tictok

    (@tictok)

    CraftyClicks support came back via email. Simply emptying my cache solved the issue (old JS file was still been loaded). Thanks!

    Thread Starter tictok

    (@tictok)

    Thanks – I’ll keep my eye on within for any news of a fix. Really like how Google Site Kit was working out, it’d be a shame not to be able to use it!

    Thanks

    Thread Starter tictok

    (@tictok)

    Ah, solved it. Just needed to pass the filter $args into my function:

    add_filter('alg_mowc_order_item_valid_as_suborder', 'my_selective_split_function', 10, 3);
    
    function my_selective_split_function($item_id, $main_order_item, $main_order) {
    
        $should_we_split_this_item = false;
    
        $product_id = $main_order[product_id];
        $cat_prod_id_array = get_ids_of_prods_in_my_cat();
    
        if (in_array($product_id, $cat_prod_id_array)) {
            $should_we_split_this_item = true;
        }
    
        return $should_we_split_this_item;
    }
    
    Thread Starter tictok

    (@tictok)

    Thanks Fahad! I’ve sent you a message.
    Best regards

    Thread Starter tictok

    (@tictok)

    Hi – that’s great, thanks for the info. Sounds promising so far!

    I have a few final questions:

    1) Is it possible to leave the original order intact with just the split items removed from that order? Or does the plugin create entirely new order for both the original and at the split items order groups?

    2) Can I give JUST the split item order its own custom order status? The original items left within the original order should still have the default ‘processing’ status.

    3) You mentioned a hook you’ve included within the plug. That’s great – are there various hooks that are accessible throughout the plugin’s code?

    4) I have to get this to work well enough so that my clients third-party fulfilment partner is happy too. They’re the ones that will be shipping the hard-goods and plants and I’m trying not to change their workflow. I set up ShipStation for them, which they’ve been using for a year so far, so these split orders will all feed into ShipStation, where ShipStations automation rules will take of releasing the plant orders (with custom order status) at the right time.

    If it turns out it doesn’t work for us as a suitable solution do you offer any kind of refund as it’s a reasonably expensive plugin?

    Many thanks
    Stef

Viewing 15 replies - 16 through 30 (of 106 total)