tigerclaw_az
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [HMS Testimonials] Testimonials not rotating in footerOk, turns out there was a chunk of javascript that was in the home.php file, just moved that into the header and removed
wp_deregister_script('jquery');and everything is working!Forum: Plugins
In reply to: [HMS Testimonials] Testimonials not rotating in footerThis little gem right here
<?php wp_deregister_script('jquery');wp_head(); ?>is causing the problem. Sincejqueryis being deregistered, the testimonial plugin script never loads. What’s the best way to fix this?Forum: Plugins
In reply to: [HMS Testimonials] Testimonials not rotating in footerBe forwarned, I did not write this, I’m just troubleshooting ;)…
<title><?php global $page, $paged; wp_title( '|', true, 'right' ); bloginfo( 'name' ); $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s' ), max( $paged, $page ) ); ?> </title> <meta name="description" content="<?php if ( is_single() ) { single_post_title('', true); } else { bloginfo('name'); echo " - "; bloginfo('description'); } ?>" /> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width" /> <!-- The little things --> <link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="icon" type="image/png" href="<?php echo bloginfo('template_directory'); ?>/assets/images/favicon.png" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <!-- The little things --> <!-- Stylesheets --> <link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" media="all" /> <link rel="stylesheet" href="<?php echo bloginfo('template_directory'); ?>/bjqs.css"> <!-- Stylesheets --> <!-- Load scripts quick smart --> <script src="<?php echo bloginfo('template_directory'); ?>/assets/scripts/modernizr-2.0.6.js"></script> <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script> <script src="<?php echo bloginfo('template_directory'); ?>/js/bjqs-1.3.min.js"></script> <script src="<?php echo bloginfo('template_directory'); ?>/js/common.js"></script> <!--[if (lt IE 9) & (!IEMobile)]> <script src="<?php echo bloginfo('template_directory'); ?>/assets/scripts/respond.js"></script> <script src="<?php echo bloginfo('template_directory'); ?>/assets/scripts/selectivizr-min.js"></script> <![endif]--> <!-- Load scripts quick smart --> <style type="text/css"> ul#menu-main, li.bjqs-prev a, li.bjqs-next a{ background-color: <?php echo ot_get_option( 'main_colour' ) ?>; } #content .blog ul li a:hover, p.entry-meta, .entry-summary h2 a:hover{ color: <?php echo ot_get_option( 'main_colour' ) ?>; } #content .work ul li h3, #content .work ul li h2{ border-color: <?php echo ot_get_option( 'main_colour' ) ?>; } ::selection {background: <?php echo ot_get_option( 'main_colour' ) ?>; color: #fff} ::-moz-selection {background:<?php echo ot_get_option( 'main_colour' ) ?>; color: #fff} ::selection {background: <?php echo ot_get_option( 'main_colour' ) ?>; color: #fff} .sub-navigation li a:hover, ul li.current_page_item { background: <?php echo ot_get_option( 'main_colour' ) ?>; color: #fff } li.comment{ border-bottom: 3px solid <?php echo ot_get_option( 'main_colour' ) ?>; } </style> <?php wp_deregister_script('jquery');wp_head(); ?> </head>
Viewing 3 replies - 1 through 3 (of 3 total)