An online compiler plugin that comprises the code editor and lives compiler. Using this type of plugin you can compile and run code. Here, we…
Continue ReadingFatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2348617 bytes) in /home4/xxx/public_html/wp-includes/plugin.php on line xxx WordPress Memory Exhausted Error – Increase…
Continue ReadingDebugging PHP code is a necessary component of any project, but WordPress has built-in debugging tools and technologies to make the process easier and more…
Continue ReadingIt 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 Reading