Jquery UI tabs
Disable ui tabs menu
$("#tabs").tabs("option","disabled", [0, 1]); // Option 1
$( "#tabs" ).tabs( "disable", "#tabs-2" ); // Option 2
$( '#tabs li.disabled-tab' ).addClass( 'ui-state-disabled' ); // Option 3
How to fix the “Google Maps API error: MissingKeyMapError” using WPBakery Visual Composer WordPress plugin? Are having trouble fixing this error on your end? This error is visible in your console developer tools. Google Maps API error: MissingKeyMapError https://developers.google.com/maps/documentation/javascript/error-messages#missing-key-map-error To fix the issue, first you have to look the script handler that is registered for…
Get Header Title function custom_category_page_title() { global $wp_query, $wpdb; $category_ = get_query_var('cat'); $current_cat = get_category ($category_); $category_id = $current_cat->term_id; echo '<header class="entry-header">'; echo'<h1 class="entry-title" itemprop="headline">'.get_cat_name( $category_id ).'</h1>'; echo '</header>'; }
Using Gravity Form, before I having a hard time getting the `Password` value to be included in my notification email. I have read this post How to Include a Password Field in a User Notification with Gravity Forms but it seems not working perfectly to my end. I have created an alternative way of tracking…
3 Columns HTML <div class="one-third first">Column 1</div> <div class="one-third">Column 2</div> <div class="one-third">Column 3</div> CSS .one-third { width: 32%; float: left; margin-left: 2%; } .first { margin-left: 0; } Use the HTML/CSS Column Generator for easy job.
Before we start please do support my Youtube channel Web Developer Green – https://www.youtube.com/channel/UCSilTsUejzMeHJ8rSvp2K_g master, thank you! DIV ALIGNED TOP HTML CODE <div class="master-row master-row-1"> <div class="master-wrap"> <h1 class="text-center">DEMO 1</h1> <div class="row-col"> <div class="col col-2"> <div class="col-d"> <img src="img.jpg" alt="" /> </div> </div> <div class="col col-2 pl-30"> <div class="col-d"> <h2>DIV ALIGNED TOP HTML CSS EXAMPLE</h2>…