Here is the code to show free Delivery text on product page shopfy. {% if product.price >= 3000 %} Free Delivery on orders over £30 {% endif %} note: the product.price returns a integer, so 30.00 = 3000 You can...
Shopify : Show Free shipping text If Product price > 30 on product page!
how to find your custom post type slug name ?
Here is the way to find custom post type slug name in your website... function nst_custom_post() { register_post_type( 'Movie', array( 'labels' => array( 'name' => __( 'Movie' ), 'singular_name' => __( 'Movie' ) ) In this function above.. post type...
Make changes in database after importing into new place/domain!
Make changes in database after import to live in wordpress. Here are simple code you have to edit and paste into your domain database SQL tab and then click on GO to process it.. Here is the code UPDATE wp_options...