Smooth Scroll Page When Clicking Anchor Link – jQuery

Smooth Scroll Page When Clicking Anchor Link – jQuery

By OutsourcedContent — on November 16, 2017 Add this to your jQuery file. // Smooth scroll When Clicking Anchor // @refer https://stackoverflow.com/a/7717572/8255629 var jQueryroot = $(‘html, body’); $(‘a[href^=”#”]’).click(function () {   jQueryroot.animate({     scrollTop: $( $.attr(this, ‘href’) ).offset().top   }, 1000);   return false; });

Add Bootstrap4 Form Styling To WooCommerce Checkout Fields

Add Bootstrap4 Form Styling To WooCommerce Checkout Fields

By OutsourcedContent — on November 19, 2017 Add the following code to functions.php or to a custom plugin to style WooCommerce checkout form fields with sweet Bootstrap 4 styling. /** * Add Bootstrap form styling to WooCommerce fields * * @since  1.0 * @refer  http://bit.ly/2zWFMiq */ function iap_wc_bootstrap_form_field_args ($args, $key, $value) {      $args[‘input_class’][] = ‘form-control’;…

Launch Bootstrap 4 Modal From WordPress Menu

Launch Bootstrap 4 Modal From WordPress Menu

By OutsourcedContent — on November 30, 2017 Add .launch-contact-modal class to your WordPress menu item. This can be done from the admin interface Appearance > Menu. Change #contactModal in the following jQuery to the ID of your Bootstrap 4 modal. jQuery(document).ready(function($){   // Adding Bootstrap Modal to WordPress Menu   $(‘.launch-contact-modal’).find(‘a’).attr(‘data-toggle’, ‘modal’);   $(‘.launch-contact-modal’).find(‘a’).attr(‘data-target’, ‘#contactModal’); });

Get A List Of All Custom Page Templates in WordPress

Get A List Of All Custom Page Templates in WordPress

Pages are one of WordPress’s built-in Post Types. You’ll probably want most of your website Pages to look about the same. But sometimes, though, you may need a specific Page, or a group of Pages, to display or behave differently. This is easily accomplished with custom Page Templates. WordPress allows you to create custom page…

Modify WordPress Main Query – The Right Way

Modify WordPress Main Query – The Right Way

By OutsourcedContent — on December 9, 2017 /** * Modify WordPress Main Query – The Right Way * * @refer  https://millionclues.com/wordpress-tips/modify-wordpress-main-query/ */ function modify_wp_main_query_done_right( $query ) {   if ( $query->is_main_query() ) {     $query->query_vars[‘meta_key’] = ‘statusverified_13141’;     $query->query_vars[‘meta_value’] = 1;   } } add_action( ‘pre_get_posts’, ‘modify_wp_main_query_done_right’ ); Refer WP Query to discover other query_vars