Support Forum
Hello:
I installed the font resize plugin. It shows up above my forum. But when I click on the three "As," nothing happens. I've already put my font size to 100% in the CSS file, but I was hoping to get the fonts even bigger. Is that possible? Nevertheless, I can't make them smaller with the plugin. Why isn't the font resizer working?
I'm also not able to delete the topics. I don't see an admin bar when I hover over the bubble. How do I fix this?
My forum is at http://www.oddhoursnews.com/forum/
Email me, and I'll give you log in info if need be.
Thank you.
likely because your wp theme is misbehaving... its improperly loading jquery... its hard loading its version of jquery instead of the version that ships with wp... and its loading a quite ancient version of jquery to boot...
<script type='text/javascript' src='http://www.oddhoursnews.com/wp-content/themes/weekly/js/jquery-1.3.2.min.js?ver=1.3.2'></script>
more information here: http://codex.simple-press.com/.....-conflict/
so find in your theme where its not following the wp api and we can help you load the proper jquery and prevent these conflicts...
Visit Cruise Talk Central and Mr Papa's World
Hi Mr. Papa,
I went ahead and added jquery-1.7.2.min.js to my theme.
First, I made the change in the functions.php file and then made the change in my theme's js folder.
Unfortunately, I'm not seeing the admin bar when I hover over the bubble. Also, I can't select the "As" to change the font size, they only change color.
What should I do next to fix this problem?
cant really see much since your page is blocked to non members...
but you are loading jquery from the theme instead of wp:
<script type='text/javascript' src='http://www.oddhoursnews.com/wp-content/themes/weekly/js/jquery-1.7.2.min.js?ver=1.7.2'></script>
just replace that whole mess with
<?php wp_enqueue_script('jquery'); ?>
so it loads wp version instead...
Visit Cruise Talk Central and Mr Papa's World
I went ahead and added jquery-1.7.2.min.js to my theme.
thats what you said... so where did you add it???
normally, you can find the loading in the theme head.php or functions.php file... but you should be able to search the theme files...
Visit Cruise Talk Central and Mr Papa's World
I looked in my functions.php file, and this is what I found:
}
function my_deregister_scripts() {
wp_deregister_script( 'jquery' );
// wp_enqueue_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', false, '1.3.2');
wp_enqueue_script('jquery', get_bloginfo('template_url').'/js/jquery-1.7.2.min.js', false, '1.7.2');
wp_enqueue_script('jquery-cookie', get_bloginfo('template_url').'/js/jcookie.js', true, '0.1');
wp_enqueue_script('jquery-carousel', get_bloginfo('template_url').'/js/jcarousellite.js', true, '1.0.1');
wp_enqueue_script('jquery-superfish', get_bloginfo('template_url').'/js/superfish.js', true, '1.0');
wp_enqueue_script('jquery-global', get_bloginfo('template_url').'/js/global.js', true, '1.0');
wp_enqueue_script('loopedslider', get_bloginfo('template_url').'/js/loopedslider.js', true, '0.5.6');
wp_enqueue_script('scrolltopcontrol', get_bloginfo('template_url').'/js/scrolltopcontrol.js', true, '1.1');
if ( is_singular() && get_option('thread_comments') ) wp_enqueue_script( 'comment-reply' );
}
I replaced the bold line with <?php wp_enqueue_script('jquery'); ?> and it gave me a syntax error. Obviously, I'm not doing something right. Can you walk me through what I need to change?
Thanks for your patience.
Try replacing that function with this one:
function my_deregister_scripts() { wp_enqueue_script('jquery'); wp_enqueue_script('jquery-cookie', get_bloginfo('template_url').'/js/jcookie.js', true, '0.1'); wp_enqueue_script('jquery-carousel', get_bloginfo('template_url').'/js/jcarousellite.js', true, '1.0.1'); wp_enqueue_script('jquery-superfish', get_bloginfo('template_url').'/js/superfish.js', true, '1.0'); wp_enqueue_script('jquery-global', get_bloginfo('template_url').'/js/global.js', true, '1.0'); wp_enqueue_script('loopedslider', get_bloginfo('template_url').'/js/loopedslider.js', true, '0.5.6'); wp_enqueue_script('scrolltopcontrol', get_bloginfo('template_url').'/js/scrolltopcontrol.js', true, '1.1'); if ( is_singular() && get_option('thread_comments') ) wp_enqueue_script( 'comment-reply' ); }
See if that resolves it.
YELLOW
SWORDFISH
|
1 Guest(s)