It will be important to move your website when you switch web hosts. While the website migration procedure is very simple, it is critical to…
Continue ReadingInstantly confirming a customer’s purchase is one of the best ways to improve the customer experience in your store. They will be able to access…
Continue Reading( ! ) Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘_disable_block_editor_for_navigation_post_type’ not found or invalid function name in /Users/joomshaper/Local Sites/lms/app/public/wp-includes/class-wp-hook.php on line 307…
Continue ReadingBy default, the woocommerce product by button shows “Add to cart“, if you want to change the text with other any text. You can use…
Continue ReadingIf you want to skip cart and want to go direct checkout page, you can add following type URL as your button URL https://Your_site_URL/checkout/?add-to-cart=product_id For…
Continue ReadingTo make woocommerce product orders autocomplete you can use this code /** * Auto Complete WooCommerce orders. */ add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order' ); function custom_woocommerce_auto_complete_order( $order_id…
Continue ReadingTo get woocommerce product sale amount , you can use this shortcode add_shortcode( 'sales', 'show_sales_by_product_id' ); function show_sales_by_product_id( $atts ) { $atts = shortcode_atts( array(…
Continue ReadingTo Remove the wordpress admin bar from the frontend you can use this code in your function file add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator')…
Continue ReadingTo add custom CSS in the wordpress admin area, you can use this function, in your function file function my_custom_css() { echo '<style> .post-type-product #ovaem_sectionid…
Continue ReadingTo add custom meta field in the product single page and save the field data then get value, Need to add this following code You…
Continue Reading