HTML5 .js google hosted
html5shiv.googlecode.com/svn/trunk/html5.js
or simply copy the code below and paste it into your header.php
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
To replace the default WordPress jquery ( http://192.185.73.118/~anthonycarbon/wp-includes/js/jquery/jquery.js ) library with the Google hosted jquery library, copy the below codes and paste it into your functions.php file. The7 WordPress theme dequeue script. Example is `dt-above-fold`. add_action( ‘wp_enqueue_scripts’, ‘my_deregister_javascript’, 20 ); add_action( ‘wp_print_scripts’, ‘wp_print_scripts_deregister’, 100 ); function my_deregister_javascript() { if ( ! is_admin() && isset( $_GET[’wp_print_scripts’]…
Catchable fatal error: Argument 1 passed to Genesis_Admin_CPT_Archive_Settings::__construct() must be an instance of stdClass, instance of WP_Post_Type given, called in /home/…/wp-content/themes/genesis/lib/admin/menu.php on line 122 and defined in /home/…/wp-content/themes/genesis/lib/admin/cpt-archive-settings.php on line 38 This error is sometimes showing after updating the WordPress. It is advice to update your Genesis theme first before the WordPress. To fix this…
If this is happening on your end, try this troubleshooting. Check if your Gravity Form short code if is placed outside the wp_footer();. I guess the short code does not support any function outside the wp_footer();. You should put your Gravity Form short code before wp_footer();. Much better if it is placed on inside the…
[wdes-column-generator]
Copy this code to your functions.php file add_action( ‘bp_setup_nav’, ‘wdes_bp_add_nav_item’, 100 ); function wdes_bp_add_nav_item(){ // Add music page in my profile menu item bp_core_new_nav_item( array( ‘name’ => ‘My Music’, ‘slug’ => ‘my-music’, ‘default_subnav_slug’ => ‘sub-music’, ‘screen_function’ => ‘my_music_screen_function’, ‘show_for_displayed_user’ => true, ‘position’ => 160 ) ); // Add upload music page in my profile menu…
If you want to create a drop-down menu, I have a sample codes below. It is very simple but will put your mobile much user friendly. It’s up to you on how you design the layout. I’d like to recommend to use WDES Responsive Mobile Menu if you want your mobile views won’t take so…