Use this code $ ( '#exp_date' ). removeAttr ( 'required' ); or if you want to use in javascript document . querySelector ( '#exp_date ' ). required = false ;
You need to load the url helper within controller constructor or function. $this -> load -> helper ( 'url' ); OR Add below code under application/config/autoload.php that looks like $autoload [ 'helper' ] = array ( 'url' );
Add this code at the bottom of your theme's functions.php /* Add Shop Location Meta after order create*/ add_action( 'woocommerce_thankyou', 'rb_checkout_save_order_meta'); function rb_checkout_save_order_meta( $order_id ) { update_post_meta( $order_id, 'shop_location', 'WW'); }
Add below code to your active themes functions.php /* Order Editable when in process*/ add_filter( 'wc_order_is_editable', 'rb_processing_orders_editable', 10, 2 ); function rb_processing_orders_editable( $is_editable, $order ) { if ( $order->get_status() == 'processing' ) { $is_editable = true; } return $is_editable; }
You need to follow these steps to fix it: 1. Login into PrestaShop admin panel 2. Click to Position under Module and Services tab 3. Scroll to displayFooterProduct and unhook it. That's it. Enjoy...
Follow below steps to get YouTube video information Step 1: create API key to authenticate with YouTube Login to google developer account https://console.developers.google.com Step 2: Create / Select project Create new key or Get API key Step 3: Create a php script to get video details using YouTube video id Example: https://www.youtube.com/watch?v= ZdP0KM49IVk in this url video id is showing in Red color Step 4: Add below code to your php file <?php $vdata = file_get_contents("https://www.googleapis.com/youtube/v3/videos?id=VIDEO_ID&key=YOUR_APIKEY&part=snippet,contentDetails,statistics,status"); $result_data = json_decode($vdata, true); echo "<pre>"; print_r($result_data); ?>