yhazem
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] How to change wc_order from urlHello so I found an answer to the problem just add this piece of snippet
add_action( 'woocommerce_new_order', static function ( int $order_id, WC_Order $order ) : void { $new_order_key = str_replace( 'wc_', 'cp_', $order->get_order_key() ); $order->set_order_key( $new_order_key ); $order->save(); }, 5, 2 ); add_filter( 'woocommerce_new_order_data', static function ( array $new_order_data ) : array { $new_order_data['post_password'] = str_replace( 'wc_', 'cp_', $new_order_data['post_password'] ); return $new_order_data; } );
and change cp to what you want
Forum: Fixing WordPress
In reply to: Merge posts from the same authorok @sarmstead , thanks a lot for your help.
Forum: Fixing WordPress
In reply to: Merge posts from the same author@joyously I want to make it automated, so is there a possible code to make so when an author creates a new post it automatically merges with the current one.
Forum: Fixing WordPress
In reply to: Merge posts from the same authorHello, thank you @tobifjellner and @joyously for your prompt reply. I want to delete the originals and keep the merged files with the author’s first post’s title, url, and image. But I still want it to have all the other post’s data, categories, and tags. Is it possible.
Thank you very much for your help.- This reply was modified 3 years, 12 months ago by yhazem.
Forum: Plugins
In reply to: [WooCommerce] How to change wc_order from urlOk thank you for your help anyways
Forum: Plugins
In reply to: [WooCommerce] purchase note placementThank you once again, it worked perfectly ??.
Forum: Plugins
In reply to: [WooCommerce] purchase note placementI have a final question,
Is there a way to accept shortcodes too, because I have a shortcode placed in one of my purchase notes. It doesn’t appear on the newly positioned purchase notes although it appeared where it was before.
Thank You very much.Forum: Plugins
In reply to: [WooCommerce] purchase note placementThank you very much it worked perfectly ??
Forum: Plugins
In reply to: [WooCommerce] purchase note placementThank you @lorro ,
I only allow users to purchase one product at a time on my website. Would that make it easier to display the purchase note, since it is only one.
Thank youForum: Plugins
In reply to: [WooCommerce] purchase note placementThis is the purchase note and it can be edited here on a woocommerce product. the thing is i want to change its position from the order details tab to the top of the woocommerce ‘order recieved’ page right bellow the ‘Thank you, your order has been received.’ text.
Forum: Fixing WordPress
In reply to: How to limit posts by categorythank you for your help.
Forum: Plugins
In reply to: [WooCommerce] purchase note placement@lorro thank you for your prompt reply, but I wanted to add the product after purchase note not the customer purchase note. If you can help me do so that would be great.
Thank you very much for your reply.Forum: Plugins
In reply to: [User Posts Limit] How to limit posts by categoryHello @condless ,
Just checking to see if you have any updates.
Thank you.Forum: Plugins
In reply to: [User Posts Limit] How to limit posts by categoryThank you @condless , I’m using using front end to for my users to post if this will make it simpler.
Thank you ??Forum: Plugins
In reply to: [User Posts Limit] How to limit posts by categoryHello @condless so the snippet workes perfectly, until the user finishes his max posts per category. Then no matter which category he will post in, he can’t use the editor and gets a ‘post limit exceeded’ error message.