How can I check my Magento version?
May 25, 2022
Log in to SSH/CLI of your store and navigate to the root of your store. After that, run command bin/magento –version
May 25, 2022
Log in to SSH/CLI of your store and navigate to the root of your store. After that, run command bin/magento –version
Add “Where Did You Hear About Us” option in WordPress #Add the following code on functions.php to add “How did you find us” option in customer… Read More →
delete_post_meta( int $post_id, string $meta_key, mixed $meta_value = ” ) Sources: https://developer.wordpress.org/reference/functions/delete_post_meta/
May 25, 2022
Use the following code to Make a redirect in PHP header(“Location: https://example.com/myOtherPage.php”); die();
// For display and saving in order details page. add_action( ‘add_meta_boxes’, ‘add_shop_order_meta_box’ ); function add_shop_order_meta_box() { add_meta_box( ‘custom_column’, __( ‘Customer Source’, ‘your_text_domain’ ), ‘shop_order_display_callback’,… Read More →
May 25, 2022
Learn how to securely encrypt and decrypt strings in PHP with this comprehensive guide. Discover essential techniques, best practices, and step-by-step instructions to protect sensitive… Read More →