Edward Caissie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Editing Sidebar-take out a sectionA link to which theme you are using (or at least its name) would likely be just as helpful in place of the actual sidebar.php code.
Forum: Hacks
In reply to: Plugin display in pageIt appears you are asking how to add “shortcodes” to your plugin. I wrote a post a short while ago that may help with this:
Just out of curiosity, which theme were you using and which did you switch to?
Forum: Hacks
In reply to: Get Published Date and TimeNicely sorted out.
Forum: Hacks
In reply to: Get Published Date and TimeHave you considered a one-post loop for your plugin using wp_query to set the specific post?
Additional Reference: http://codex.wordpress.org/Function_Reference/WP_Query
Forum: Hacks
In reply to: Get Published Date and TimeIf you are doing this from within the_Loop
the_time()returns the original post date … have a look at this page for some more details: http://codex.wordpress.org/Function_Reference/the_time
Forum: Fixing WordPress
In reply to: wp_nav_menu function helpTry this article I wrote: http://wpfirstaid.com/2010/10/extend-the-wordpress-menu/
It may help sort out the issue …
Forum: Plugins
In reply to: Error — get_link.php not foundIf you were “hacked” … well, anything is possible related to it. As to the reference to WordPress version 2.1, that is when the
get_link()function was deprecated.Forum: Plugins
In reply to: Error — get_link.php not foundDid you try a “hard-refresh” to force you browser to reload a fresh version of the page? There could be something cached causing issues … although deactivating ALL of your plugins should have removed the error message with a normal or soft-refresh of the page.
Forum: Themes and Templates
In reply to: Show archives list by yearYou could try something along these lines:
query_posts( 'year=2010' ); wp_get_archives(); wp_reset_query(); query_posts( 'year=2009' ); wp_get_archives(); wp_reset_query(); query_posts( 'year=2008' ); wp_get_archives(); wp_reset_query();It may not be pretty (and it is not tested) but hopefully an idea to start with …
Here are reference links for more information:
http://codex.wordpress.org/Function_Reference/query_posts
http://codex.wordpress.org/Function_Reference/wp_get_archives
http://codex.wordpress.org/Function_Reference/wp_reset_queryForum: Plugins
In reply to: Error — get_link.php not foundMy first thoughts would be this is related to a plugin, perhaps one that is using a deprecated function call. I searched the error message and looked at several sites where this message is occurring. There is a great deal of malformed code in the footer of these sites.
I would suggest deactivated your plugins either all at once then reactivating one at a time to find the plugin that may be causing this issue; or, check after deactivating each plugin until the error message goes away.
If you are able to pinpoint which plugin(s) is causing this issue I am certain the author would appreciate knowing about it.
PS: You might consider upgrading to the most current version of WordPress as well, as of this writing it is version 3.0.1.
Forum: Fixing WordPress
In reply to: how to add back link to main site on wordpress@mikefenix – start with commenting out the background property, like so:
#sidebar { width:257px; /* background:#ffffff url(images/logo.gif) top no-repeat; */ float:left; border-right:1px solid #cdcdcd; text-align:left;See how that works out for you …
Forum: Fixing WordPress
In reply to: how to add back link to main site on wordpressYou would likely need to edit the sidebar.php template file, but you may also need to edit your style.css file or the image may appear in more than one place.
If so, look for:
#sidebar { background:url("images/logo.gif") no-repeat scroll center top #FFFFFF; ... }… and other references to the ‘logo.gif’ image
Have you tried making the posts “sticky”?
Forum: Fixing WordPress
In reply to: how to add back link to main site on wordpressThe “PR Design” logo appears to be a background image for the sidebar. You will have to make some changes to the theme to add a linkable image in its place. Something along these lines:
<a href="http://pr.com.au"><img src="http://www.pr.com.au/blog/wp-content/themes/freshmint/images/logo.gif" /></a>