Title: 's Replies | WordPress.org

---

# mattymar

  [  ](https://wordpress.org/support/users/mattymar/)

 *   [Profile](https://wordpress.org/support/users/mattymar/)
 *   [Topics Started](https://wordpress.org/support/users/mattymar/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mattymar/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mattymar/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mattymar/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mattymar/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mattymar/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/mattymar/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mattymar/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: JJ NextGen JQuery Cycle] Not changing images](https://wordpress.org/support/topic/plugin-jj-nextgen-jquery-slider-not-changing-images/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/plugin-jj-nextgen-jquery-slider-not-changing-images/#post-2303472)
 * Actually I did solve it, for me the problem was that my W3TC minify settings 
   were causing a conflict with the jquery. Once I stopped minifying the JS on the
   page, it was fine.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Can't Change Nav background in Twenty Eleven](https://wordpress.org/support/topic/cant-change-nav-background-in-twenty-eleven/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/cant-change-nav-background-in-twenty-eleven/#post-2488902)
 * Well that was annoying, I finally found that there were two extra spaces a few
   lines before the #access in my child theme’s style.css
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Can't Change Nav background in Twenty Eleven](https://wordpress.org/support/topic/cant-change-nav-background-in-twenty-eleven/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/cant-change-nav-background-in-twenty-eleven/#post-2488851)
 * Um yeah I already use firebug, that’s how I found that it wasn’t calling my child
   theme for the nav background but was for everything else.
 * Anyone with any useful advice?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Shortcodes out of order](https://wordpress.org/support/topic/shortcodes-out-of-order/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/shortcodes-out-of-order/#post-2313888)
 * Was able to fix the problem by uploading the Exec-PHP plugin and using php instead
   of shortcode for the second one.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Firebug says not a function](https://wordpress.org/support/topic/firebug-says-not-a-function/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/firebug-says-not-a-function/#post-2308584)
 * Any chance the problem has to do with something in the plugin’s functions.php
   file?
 * Here are two pieces that might be related to this problem:
 *     ```
       function WPJJNGGJ_CYCLE_enqueue_scripts()
       {
         if( !is_admin() )
         {
           wp_enqueue_script( 'jquery' );
           wp_enqueue_script( 'jquery-jjcucle', WPJJNGGJ_CYCLE_plugin_url( 'script/jquery.cycle.lite.1.0.min.js' ), array('jquery'), '', false );
           wp_enqueue_script( 'jquery-shuffle', WPJJNGGJ_CYCLE_plugin_url( 'script/jquery.jj_ngg_shuffle.js' ), array('jquery'), '', false );
         }
       }
       ```
   
 * and
 *     ```
       function jj_ngg_jquery_cycle_shortcode_handler($atts)
       {
         $instance = array();
         foreach($atts as $att => $val)
         {
           $instance[wp_specialchars($att)] = wp_specialchars($val);
         }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Firebug says not a function](https://wordpress.org/support/topic/firebug-says-not-a-function/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/firebug-says-not-a-function/#post-2308422)
 * It’s actually a plug-in that has the javascript and I’m using php to call all
   that. Where would I put the noconflict?
 * This is from header.php:
 * `<?php echo do_shortcode('[jj-ngg-jquery-cycle html_id="about-cycle-lite" width
   ="1000" height="272" order="random" timeout="7000" shuffle="true" timeout="4000"
   gallery="1"]'); ?>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Firebug says not a function](https://wordpress.org/support/topic/firebug-says-not-a-function/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/firebug-says-not-a-function/#post-2308418)
 * I see this in my source code:
 * `<script type="text/javascript">jQuery('div#about-cycle-lite').jj_ngg_shuffle();
   jQuery('div#about-cycle-lite').jjcycle({timeout:4000,height:272});</script>`
 * Is there something wrong with that or is that not what you were talking about?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Firebug says not a function](https://wordpress.org/support/topic/firebug-says-not-a-function/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/firebug-says-not-a-function/#post-2308414)
 * Oops sorry, I’m an idiot!
 * [http://healthybodyrevolution.com/blog/](http://healthybodyrevolution.com/blog/)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [First comment count appearing separate from post](https://wordpress.org/support/topic/first-comment-count-appearing-separate-from-post/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/first-comment-count-appearing-separate-from-post/#post-2303214)
 * Thank you alchymyth. I actually just got rid of the float left and that fixed
   the problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Jquery cycle lite header not cycling](https://wordpress.org/support/topic/jquery-cycle-lite-header-not-cycling/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/jquery-cycle-lite-header-not-cycling/#post-2301993)
 * Update: I tried using the shortcode on a regular post and the same thing happened,
   just showed one image with no cycling. I have no idea where the issue is.
 * Anybody?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Jquery cycle lite header not cycling](https://wordpress.org/support/topic/jquery-cycle-lite-header-not-cycling/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 7 months ago](https://wordpress.org/support/topic/jquery-cycle-lite-header-not-cycling/#post-2301973)
 * Both images are showing up in the source code for the page but it does not cycle.
   I tried a few things in the header.php but nothing is working. My code now reads:
 * `<div id="cycle_lite"> <?php echo do_shortcode('[jj-ngg-jquery-cycle width="950"
   height="229" order="random" timeout="7000" shuffle="true" timeout="4000" gallery
   ="1"]'); ?> </div>`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Help me find the error!](https://wordpress.org/support/topic/help-me-find-the-error/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 12 months ago](https://wordpress.org/support/topic/help-me-find-the-error/#post-2086684)
 * Thanks. I disabled W3TC and it works fine now. Now I just gotta figure how to
   replace what W3TC did for me, but at least the site works.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Help me find the error!](https://wordpress.org/support/topic/help-me-find-the-error/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 12 months ago](https://wordpress.org/support/topic/help-me-find-the-error/#post-2086679)
 * You know, I did just update that plugin, I bet that’s it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Help me find the error!](https://wordpress.org/support/topic/help-me-find-the-error/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [14 years, 12 months ago](https://wordpress.org/support/topic/help-me-find-the-error/#post-2086673)
 * Wow that was dumb, sorry [http://parkavenutrition.com](http://parkavenutrition.com)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Schedule post in New York time](https://wordpress.org/support/topic/schedule-post-in-new-york-time/)
 *  Thread Starter [mattymar](https://wordpress.org/support/users/mattymar/)
 * (@mattymar)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/schedule-post-in-new-york-time/#post-2020692)
 * Anyone with ideas?

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/users/mattymar/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mattymar/replies/page/2/?output_format=md)