I'm getting this error message:
Fatal error: Call to a member function getQuoteCode() on a non-object in /home/kcasault/www/wp-content/themes/crossroads/footer.php on line 30
I added <?php echo $quoteRotator->getQuoteCode(); ?> to my footer.php file.
Any idea what might be up? I'm using WP 3.0.1 and the latest version of the plug-in. My theme is an adapted copy of twentyten.
Thanks!
gaberosser
Member
Posted 1 year ago #
Also having the same issue implementing on my site. I had to do a tricky workaround that seemed to fix it.
Just called the [shortcode] via php:
<?php echo do_shortcode('[quoteRotator]'); ?>
Did the trick for me. Let me know if that helps.
dwharrington
Member
Posted 1 year ago #
I was getting the same error, but the shortcode php call worked. Thanks, gaberosser.