cra2
Forum Replies Created
-
well, the solution I mentioned above worked just fine.
Did you copy that into your update or did you solve it differently?I’m hesitant to update since mine’s working fine now.
Anyone tried the new 2.0.2 solution?I posted a bounty of $10 on WP-Questions and got the following answer.
Hope it helps you.
Although this doesn’t resolve the issue – we need the plugin developer to include a similar patch in an update.The issue is here
add_action( 'wp_footer', 'Testimonials_Widget::get_testimonials_scripts', 20 );
Line 350It should be
add_action( 'wp_footer', array( &$this, 'Testimonials_Widget_Widget' ), 20 );
Thats why the error says expecting a valid callback, because the first callback is wrong…
great question, webfloors.
I have the same issue and am seeking an answer.Forum: Plugins
In reply to: [facebook like box] visitors must login to facebook?has anyone used this?
Forum: Plugins
In reply to: [Cleaner Gallery] Cleaner Gallery Imbalance ThemeHave you tried this?
go to Setting – Reading – Blog pages show at mostForum: Themes and Templates
In reply to: how to add ALT tags to "custom" logos?esmi,
“hiding” it off the graphical page is not considered “tricky” or grey tactics?if not, that’s an awesome idea.
can you point me to a CSS tutorial that might touch on that?
I’ll google it in the meantime.thanks
Forum: Themes and Templates
In reply to: how to add ALT tags to "custom" logos?Thanks FuturePocket,
But in my case, where I’ve turned off the name/description, and only the logo is showing, isn’t the name/description being dropped?
And, for search engines, don’t I want to use the header to insert some text (or ALT tags) right off the bat?
Forum: Fixing WordPress
In reply to: How to put a page on sidebar but not on header menu?I want most of the pages on the header.
Just not a select one or two.
Can I exclude just specific one(s)?thanks alchymth
Forum: Fixing WordPress
In reply to: how to promote a post to the top of front pageopajaap,
Thanks for that tip.
That shows me how to set a static sticky page.But what about changing the order of the posts on the front page?
I have an important post (event) I would like to be at the top for a few days. But it was input first so it’s now been buried by 8 other posts.
How do I reset the post date of that one item?
Or sticky it at the top?Forum: Fixing WordPress
In reply to: Unhide Categories with no Posts ?given that a plugin means yet another item to manage/upgrade, wouldn’t it be easier to just put that code into the “widget: category” file? (if I could find it)
Forum: Plugins
In reply to: [Plugin: WordPress.com Stats] Login to Dashboard not working in firefox?Ok, so yesterday, I looked again and the graph shows a visitor or two and the popup saying “undefined” is gone.
So good news is I have no problems now.
Bad news is that new users (myself included) will continue to wonder why it didn’t work initially, and what “undefined” refers to.Forum: Fixing WordPress
In reply to: how to move widgets above default categories in sidebarThanks Clayton, I will try to remove the hard code you suggested.
If I can manage the categories (and their placement) via the widget, that would probably solve my problem.Forum: Fixing WordPress
In reply to: how to move widgets above default categories in sidebaryes, the “Events” widget I was referring to is a calendar plugin.
yes I have dragged the default categories widget over and all it does is add a second list of categories to the sidebar.
the site is at https://www.flowflorida.com
Forum: Plugins
In reply to: [Plugin: Broken Link Checker] Killed my blogstill no reply?
Forum: Fixing WordPress
In reply to: how to move widgets above default categories in sidebarI wasn’t clear.
The widgets move around just fine on the site when I re-order/remove them.
The widgets (under Appearance on my Dash) are Events, Archives, and Text.Yet on my site, there are Categories above all that on my sidebar.
They’re the categories I’ve created and manage via the Dashboard.
And I’m glad they’re on the sidebar.I just wanted them to appear lower than the Events widget, for example.
But I can’t control where the Categories appear because the Categories widget isn’t enabled. It’s not in the sidebar (in Dashboard) – it’s still sitting over on the lefthand list of widgets you can drag over and activate if you choose.So if it’s not activated, then I’m guessing the theme itself is presenting the Categories in the sidebar.
Is there a simple edit I can make that will allow me to control where the categories appear using the widget interface in Dashboard?Or, if that’s difficult (since I’m not a ‘poet’, i.e. programmer), then is there a simple way for me to just move the “events” widget up above the Categories?
Here is the sidebar.php :
<!-- sidebar START --> <?php $options = get_option('sthblue_options'); if($options['feed'] && $options['feed_url']) { if (substr(strtoupper($options['feed_url']), 0, 7) == 'HTTP://') { $feed = $options['feed_url']; } else { $feed = 'https://' . $options['feed_url']; } } else { $feed = get_bloginfo('rss2_url'); } ?> <div id="sidebar-wrapper"> <div id="sidebar"> <div class="sidebar-box"> <h2>Categories</h2> <ul class="list-cat"> <?php wp_list_categories('hide_empty=0&show_count=0&title_li='); ?> </ul> </div> <div class="sidebar-box"> <div class="content"> <div id="subscribe"> <a rel="external nofollow" id="feedrss" title="<?php _e('Subscribe to this blog...', 'SthBlue'); ?>" href="<?php echo $feed; ?>"><?php _e('<abbr title="Really Simple Syndication">RSS Feed</abbr>', 'SthBlue'); ?></a> </div> <?php if($options['twitter'] && $options['twitter_username']) : ?> <a id="followme" title="<?php _e('Follow me!', 'SthBlue'); ?>" href="https://twitter.com/<?php echo $options['twitter_username']; ?>/"><?php _e('Twitter', 'SthBlue'); ?></a> <?php endif; ?> <div class="fixed"></div> </div> </div> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> <div class="sidebar-box"> <h2>Archives</h2> <ul class="list-archives"> <?php wp_get_archives('type=monthly'); ?> </ul> </div> <div class="sidebar-box"> <h2>Blogroll</h2> <ul class="list-blogroll"> <?php get_links(-1, '<li>', '</li>', ''); ?> </ul> </div> <div class="sidebar-box"> <h2>Search</h2> <div style="margin-left: 20px;"> <?php include (TEMPLATEPATH . '/searchform.php'); ?> </div> </div> <div class="sidebar-box"> <h2>Meta</h2> <ul> <?php wp_register(); ?> <li> <?php wp_loginout(); ?> </li> <li><a href="https://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li> <li><a href="https://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li> <li><a href="https://www.ads-software.com/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li> <?php wp_meta(); ?> </ul> </div> <?php endif; ?> </div> </div> <!-- sidebar END -->