cecowe
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Woo Search] Sort search results by product “Position” automaticallyReplacing < with > made it work. Thank you so much.
Is there any way to do the same for Search Bar Results?
Forum: Plugins
In reply to: [Advanced Woo Search] Sort search results by product “Position” automaticallyHey Misha,
By default woocommerce sets priority while using LOWER menu order. https://www.endocreative.com/wp-content/uploads/2015/06/Edit_Product_%E2%80%B9_Authentic_Manhood_%E2%80%94_WordPress-1024×477.png
So my most important items are with lower number for menu order.
If the code shows lowest menu order first, it will work correctly.
Forum: Plugins
In reply to: [Advanced Woo Search] Sort search results by product “Position” automaticallyThey are displayed at the bottom.
Forum: Plugins
In reply to: [Autoclear Autoptimize Cache] Not Working Anymore@jteague I’m using Brave, the part with the link is solved after the update.
Don’t know about the cache part yet.Forum: Plugins
In reply to: [Advanced Woo Search] Sort search results by product “Position” automaticallyHello Misha, Thank you for responding but it doesn’t work.
I’ve cleared plugin cache but it’s not working. The products I’m search for are not appearing first.
Forum: Plugins
In reply to: [Advanced Woo Search] Sort search results by product “Position” automaticallyActually I meant Menu Order while talking about Position
https://prnt.sc/v0k71r
Where the lower is the number, the higher is the priority to show in upper positions.Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Product Name -> Constant textForum: Plugins
In reply to: [WooCommerce] Disable All WooCommerce Styles and Scripts Except Shop PagesHey Mouli,
I’ve been using this code for a long time but now it doesn’t work. I’m not comfortable with coding that’s why I’m ask you for help. ??
Could you edit the code and paste in the correct way.Forum: Plugins
In reply to: [WooCommerce] HELP FATAL ERRORNope. Just fixed it. I think the problem is that I have changed the admin password in the test version and then pushed to live.
I’ve tried to do the updates without changing the admin password in the second try. Everything was fine.
I almost did the same steps, don’t know how is that possible. Same steps – different results… Mark it as solved
Forum: Plugins
In reply to: [WooCommerce] HELP FATAL ERRORI’m using Softaculous staging.
On the test subdomain everything is fine, but after pushing to live the fatal error appears.Forum: Plugins
In reply to: [WooCommerce] HELP FATAL ERRORI got this snippet running:
/** * @snippet Save "Terms and Conditions" Acceptance Upon Checkout - WooCommerce * @how-to Watch tutorial @ https://businessbloomer.com/?p=19055 * @source https://businessbloomer.com/?p=74053 * @author Rodolfo Melogli * @compatible Woo 3.3.4 */ // 1. Save T&C as Order Meta add_action( 'woocommerce_checkout_update_order_meta', 'bbloomer_save_terms_conditions_acceptance' ); function bbloomer_save_terms_conditions_acceptance( $order_id ) { if ( $_POST['terms'] ) update_post_meta( $order_id, 'terms', esc_attr( $_POST['terms'] ) ); } // 2. Display T&C @ Single Order Page add_action( 'woocommerce_admin_order_data_after_billing_address', 'bbloomer_display_terms_conditions_acceptance' ); function bbloomer_display_terms_conditions_acceptance( $order ) { if ( get_post_meta( $order->get_id(), 'terms', true ) == 'on' ) { echo '<p><strong>Декларирал съгласие за обработка на личните му данни: </strong>ДА</p>'; } else echo '<p><strong>Декларирал съгласие за обработка на личните му данни: </strong>N/A</p>'; }
Forum: Plugins
In reply to: [Yoast SEO] Seo titleThank you so much. Amazing. ??
Forum: Plugins
In reply to: [Yoast SEO] Seo titleThank you for responding Marco,
<?php add_shortcode( 'product_seo_title', 'my_product_seo_title' ); function my_product_seo_title( $atts = array() ) { $title = $GLOBALS['wpseo_og']->og_title( false ); return $title; }
Will transform it to this:
<?php add_shortcode( 'product_seo_title', 'my_product_seo_title' ); function my_product_seo_title( $atts = array() ) { $title = YoastSEO()->meta->for_current_page()->title; return $title; }
Am I correct?
Thank you once again.
Forum: Plugins
In reply to: [Yoast SEO] Seo titleYes, I opened it but I’m pretty incompetent. ?? How may I show page SEO title using the new API surfaces?
Forum: Plugins
In reply to: [Yoast SEO] Seo titleCould you help me to make it work? It’s probably something simple and obvious. ??