Ambikesh Gautam
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Combine Shop Page with Home PageHi @orelqr ,
Step 1: Create a page template
We suppose that as a developer, you would know how to make a page template but if you don’t know, you can check out?this link?to have a better understanding.
Step 2: Use the custom WooCommerce product loop coding
Here we use?wc_get_products()
?and create a?foreach
?loop. And all you need to do next is to copy this code and paste it into the template you’ve just created:
You should check out this blog here:- https://avada.io/woocommerce/docs/make-custom-product-loop.html
Hope you’ll get what you’re looking for thanksForum: Plugins
In reply to: [WooCommerce] which hook use for new orders?Hi ugnius1994,
You should try this hook maybe this will help you out to get the paid order status ugnius1994 add_filter(‘woocommerce_order_is_paid’, ‘Your custom function to manage paid order ‘);Forum: Developing with WordPress
In reply to: Save Custom Post Valueadd_action( ‘save_post’, ‘save_news_settings’ );
function save_news_settings( $post_id ){
// You can get saved values in this way
$saved_value = get_post_meta( $post_id, ‘news_settings’, true );
$value_from_meta_box = $_POST[‘news_settings’];
update_post_meta($post_id, ‘news_settings’, $value_from_meta_box );
}I hope this will help you!
Forum: Plugins
In reply to: [WooCommerce Etsy Integration] sync ordersHi there,
you can check out this plugin here:-https://www.ads-software.com/plugins/search/etsy+product+lister/ to get the Etsy’s order from Etsy to Woocommerce, the premium version of this plugin is amazing you can checkout on Woocommerce.com HereI hope you’d like it thanks.
Forum: Fixing WordPress
In reply to: fix the wordpess templateAn issue that arises after an update is more likely to be a theme or plugin issue. Always try to take back WordPress before updating it to the new version.
You can follow this doc here about how to roll back the WordPress version using FileZilla here
I hope this will work out for you!