Fix My WordPress

Category: Blog

How to add Google reCAPTCHA in Contact Form 7

How to add Google reCAPTCHA in Contact Form 7

It’s a must that a contact form should have Google reCAPTCHA or any other security options enabled on it. Well, reCAPTCHA is most recommended. It protects your contact forms from getting filled out by bots or spams. And if you want to add reCAPTCHA on your contact form 7, then in this blog post, you’d […]

How To Display Stock Status/Quantity on Shop Page

How To Display Stock Status/Quantity on Shop Page

With This PHP Code  it will show the “stock quantity or status” under each product in the shop, category and archive pages. Code : add_action( ‘woocommerce_after_shop_loop_item’, ‘bbloomer_show_stock_shop’, 10 );   function bbloomer_show_stock_shop() {    global $product;    echo wc_get_stock_html( $product ); }

How to Disable WP JSON API in WordPress?

How to Disable WP JSON API in WordPress?

What is the REST API? REST is short for Representational State Transfer. It is a standard client-server protocol that makes your website available as a web service. This means, that other applications or websites can retrieve information available on your website without a browser to access the website. To retrieve information from a target website you […]

WooCommerce auto update cart when quantity changed

WooCommerce auto update cart when quantity changed

By Default, the WooCommerce cart doesn’t auto update when quantity changed Easily update the cart for customers when product quantities change.  Remove “Update Cart” button and Do It Automatically on Quantity Change.   When you change the product quantity, the cart will be immediately updated. Here the easiest way to do this with just a couple lines of code. add this css code on : appearance => Customize ==> […]

How To Hide A Featured Image In A WordPress Post

How To Hide A Featured Image In A WordPress Post

It is 2021, and almost every WordPress theme provides an option to add a featured image on WordPress posts. However, not all the themes allow you to hide the featured image. So, if you want to know how to hide a featured image in WordPress posts, this write-up will come in handy for you.   Using a […]

How to Increase Max Upload Size in WordPress

How to Increase Max Upload Size in WordPress

If you upload a lot of files to your WordPress site you may have seen this error while uploading “exceeds the maximum upload size for this site”. Especially if you are uploading large PDFs or video files. Many WordPress hosts set this limit low by default. So if you are unable to upload files since […]