How to redirect 404 error page to homepage in WordPress without Plugin

If you want to add some additional code to the above solution, you can use the following code snippet in your WordPress functions.php file. Redirect to Home Page // Redirect 404 Page into Home Page function redirect_404_to_homepage() { if (is_404()) { wp_redirect(home_url(), 301); exit(); } } add_action(‘template_redirect’, ‘redirect_404_to_homepage’); This code checks if the current page

How to redirect 404 error page to homepage in WordPress without Plugin Read More »

Add Thumbnail or product image and Quantity inpute on Checkout Page on woocommerce website without plugins

Add Thumnale on Checkout Page on woocommerces website   // Add product image + remove on checkout page add_filter( ‘woocommerce_checkout_cart_item_quantity’, ‘add_remove_button_and_quantity_and_price_and_image_to_cart_table’, 10, 3 ); function add_remove_button_and_quantity_and_price_and_image_to_cart_table( $quantity_html, $cart_item, $cart_item_key ) { if ( is_checkout() ) { $product = $cart_item[‘data’]; $thumbnail = $product->get_image(array( 35, 35 )); $quantity_html = ‘<td class=”product-thumbnail”>’ . $thumbnail . ‘</td>’; $quantity_html .=

Add Thumbnail or product image and Quantity inpute on Checkout Page on woocommerce website without plugins Read More »

How too redirect a non-logged-in or Login user from one page to another page

To redirect a non-logged-in user from one page to another page in WordPress, you can use the “template_redirect” action hook and the “wp_redirect” function to redirect the user to the desired page. Here’s an example code snippet that you can add to your functions.php file: function redirect_dashboard_to_login() { if (is_page(‘dashboard’) && !is_user_logged_in()) { wp_redirect(‘https://www.keenbech.com/login’); exit;

How too redirect a non-logged-in or Login user from one page to another page Read More »