Petasos
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] “Search Results for” translate titleOMG, thanks. You saved me. I would have never thought of looking into the Elementor Pro translations!
Hi, I have exactly the same question as I’m Europe based! Thanks for the great plugin in any case & also thanks Maenz for this fix. Would be awesome if the ability to switch street number & name would be included as a plugin setting!
Forum: Plugins
In reply to: [Woo Store Vacation] Shop Manager unable to make and save changesOK, I’ll compare them.
Forum: Plugins
In reply to: [Woo Store Vacation] Shop Manager unable to make and save changesOK,
I’ll check it out. Just wondering: how did you tackle this in the Premium version? Did you add the submit action to themanage_woocommerceas well?Forum: Plugins
In reply to: [Woo Store Vacation] Shop Manager unable to make and save changesEver considered the option to make a separate capability to be able to save the vacation settings instead of using the
manage_optionsone? Pretty strange that ashop_manageris not able to close the shop from a functional POV? I know that this is available in the Premium version of the plugin, but it could be an option to allow somebody who knows what he’s doing to add the custom capability to the shop manager role? Or just add it to themanage_woocommercerole instead as I wouldn’t really call it site-wide as it only affects the Woocommerce pages?Forum: Plugins
In reply to: [WooCommerce] WooCommerce Up-sells SortHey Doyuk,
I also had this issue & fixed it with following code:
/* SORT UPSELLS IN ASCENDING ORDER */ /* --- */ // ORDER BY add_filter( 'woocommerce_upsells_orderby', 'filter_woocommerce_upsells_orderby', 10, 1 ); function filter_woocommerce_upsells_orderby( $orderby ) { return 'menu_order'; }; // ORDER add_filter( 'woocommerce_upsells_order', 'filter_upsells_order', 10, 1 ); function filter_cross_sells_order( $order ){ return 'asc'; // Default is 'desc' }So you were almost there :). I added the woocommerce_upsells_order to specify the ascending order.
Take care!
- This reply was modified 6 years, 1 month ago by Petasos. Reason: Change order of code to make it more logic
Danny. Thanks for your fast reply.
Great news. Looking forward to the 2.3 release! Any estimate on the release date?