mattymar
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: JJ NextGen JQuery Cycle] Not changing imagesActually 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
In reply to: Can't Change Nav background in Twenty ElevenWell 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
In reply to: Can't Change Nav background in Twenty ElevenUm 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
In reply to: Shortcodes out of orderWas able to fix the problem by uploading the Exec-PHP plugin and using php instead of shortcode for the second one.
Forum: Fixing WordPress
In reply to: Firebug says not a functionAny 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
In reply to: Firebug says not a functionIt’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
In reply to: Firebug says not a functionI 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
In reply to: Firebug says not a functionOops sorry, I’m an idiot!
Forum: Themes and Templates
In reply to: First comment count appearing separate from postThank you alchymyth. I actually just got rid of the float left and that fixed the problem.
Forum: Plugins
In reply to: Jquery cycle lite header not cyclingUpdate: 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
In reply to: Jquery cycle lite header not cyclingBoth 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
In reply to: Help me find the error!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
In reply to: Help me find the error!You know, I did just update that plugin, I bet that’s it.
Forum: Fixing WordPress
In reply to: Help me find the error!Wow that was dumb, sorry http://parkavenutrition.com
Forum: Fixing WordPress
In reply to: Schedule post in New York timeAnyone with ideas?