lynettechandler
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Search FormI believe, since 2.7, if you have searchform.php in your theme, WordPress will use that. If not, it will generate the HTML from wp-includes/general-template.php
So if you want to customize your search form and you don’t have searchform.php in your theme, all you need is just create it, paste the code Tom gave above and customize ??
Forum: Fixing WordPress
In reply to: Only registered users can download filesDownload Monitor plugin can do it. I have been using it successfully.
https://www.ads-software.com/extend/plugins/download-monitor/Forum: Fixing WordPress
In reply to: [Plugin: WordPress Download Monitor] 404 file not foundI have just noticed the same thing and traced the issue on my install to members only download. When I uncheck member’s only the the download works fine. Have yet to look into the underlying cause but in the plugin saw that Mike had changed the Member’s only download behavior. Unsure if that triggered the issue.
Temporarily, I have disabled member’s only for those downloads.
Forum: Fixing WordPress
In reply to: Add thumbnail in home page without pluginsThanks Justin! Just what I needed.
I know this is a very old post, but for the benefit of others, you put Justin’s code within the loop as is. Then to call the thumbnail, use.
<?php if (!$img[0]) { echo 'Default image'; } else { ?><img src="<?php echo $img[0]; ?>" /><?php } ?><?php the_excerpt() ; ?>
You will see that I have an additional if else condition to check to see if the post does have attachments and display a default.
Forum: Fixing WordPress
In reply to: Post Content Disappearing When Saving DraftsI ran into this issue once and found out it is because of my theme. I was running WPRemix 2 and WordPress 2.8 then which was not compatible with each other. May not the solution to your problem but thought I’d put it out there anyways. See if the problem exists if you are using the default theme.
Forum: Fixing WordPress
In reply to: Security issue?Sounds like your web server or web hosting account may be compromised. Whether it is originally from WordPress is hard to say. I’d ask the web host to look into it and definitely change all passwords to make it really strong and also – use SFTP.
Forum: Fixing WordPress
In reply to: Header doesnt show on any posts just the pagesDo you have one of those themes that uses a different header template for posts?
Forum: Fixing WordPress
In reply to: aweber form doesn’t look right in IEYou could widen the sidebar in your stylesheet but sometimes that causes other issues as well. Or you could use css to style the button to control the width.
Here are two threads that might help
https://www.ads-software.com/support/topic/227101?replies=8#post-960717
Forum: Plugins
In reply to: Adding “nofollow” to category widgetHey there, I was searching for the very same thing and found it in this thread.
https://www.ads-software.com/support/topic/155935Thanks to recordinghacks! One thing that isn’t mentioned, the original wp_rel_nofollow() function is found in formatting.php for me I found it between lines 1205 and 1220. Copied that into my functions.php, changed the function name just like recordinghacks did.
Forum: Fixing WordPress
In reply to: [Plugin: List Authors Plus] charset problem in the titleHi primat, thanks for catching that. I’ll look into that.
Forum: Fixing WordPress
In reply to: wp_list_authors in order of post count and limit 10I know this is old and marked resolved but I thought I’d put in some info for anyone else that might come after. I had the very same problem using another code. That’s because the code was counting ALL posts including scheduled posts or drafts. You may want to try the List Author’s Plus plugin.
Forum: Fixing WordPress
In reply to: wp_list_author() just for authors not subscribers.Yes try this plugin
Forum: Fixing WordPress
In reply to: Authors ordered by post count?wp_list_authors option count only displays the number of posts you can’t sort by it yet. The list authors plus plugin will do just that and also allow you to filter out authors by role or ID.
Forum: Plugins
In reply to: list of users/authors – how to order/sort by ‘first_name’?There’s something easier – List authors plus plugin ??