RenoJohn
Forum Replies Created
-
Forum: Plugins
In reply to: [Imsanity] Clicking "Resize Checked Images…" doesn't workSame Issue Here. I’ll be eager to see if this gets resolved. Cheers to all involved!
Forum: Plugins
In reply to: [Postie] 1.5.0 ReleasedFantastic stuff in this Wayne. You really are making this plugin strong and sharp. Really appreciated.
Man-o-Man
That is awesome!! So now I take my SQL query(s), drop them into a page/post via shortcode –and now I can style them too.
…and it ain’t even Christmas! Thanks so much! This new functionality is great!
OK
I’ve changed the directory of the captcha files. every time the form page loads new *.txt and *.png files are instantly placed in this new directory. (yeah!)However, the image is not showing up, the path to the image is the default (where all my media files are sent to)
..and not to this new captcha specific directory.Thank You
awesome, I’m glad it can be done. I see your link has some info, that I didn’t see before (ooops!).
thanks so much.
Forum: Themes and Templates
In reply to: Remove space under Post Title (please)WPyogi,
If you don’t already know it: You’re the grooviest guy in America.
!THANK YOU! 12thumbs-up!
Forum: Themes and Templates
In reply to: Remove space under Post Title (please)WPyogi, Thank You
SiteForum: Plugins
In reply to: [Postie] Postie broken in 3.3 _fill_user() problemI’ll be VERY appreciative of anyone that can give a fix here as I rely very heavily on Postie.
glad to offer up donations to a good fix.
thanks!
Forum: Installing WordPress
In reply to: Automatic 3.3 Upgrade Now cannot access dashboardI am able to login (when I take postie out of the mix), but I need to get postie going again and everytime I bring it back in I get the fatal error – what should I do? (everything exactly as thjeske describes)
thanks much
Forum: Plugins
In reply to: [WP-Paginate] [Plugin: WP-Paginate] what code in loop.php to replace?OK I think I figured it out. I replaced:
———
<div class=”nav-previous”><?php next_posts_link( __( ‘<span class=”meta-nav”>←</span> Older posts’, ‘twentyten’ ) ); ?></div>
<div class=”nav-next”><?php previous_posts_link( __( ‘Newer posts <span class=”meta-nav”>→</span>’, ‘twentyten’ ) ); ?></div>
———-in two places in the loop.php file.
Please let me know if I did anything that may cause problems. Also if there is an easy way to center this for the viewer that would be awesome.
blog here:
http://www.graceaustin.comForum: Fixing WordPress
In reply to: Make static link a *hyperlink* in posts. Possible?re: New window
If not as simple, I’ll forget about it.
BTW …poor form is one of my strengths 🙂GREAT help here, thanks! Marking “resolved” ..renojohn
Forum: Fixing WordPress
In reply to: Make static link a *hyperlink* in posts. Possible?Otto 42 wrote:
Try adding this to your theme’s functions.php file:
add_filter(‘the_content’, ‘make_clickable’,9);Otto42, you are my hero!! That worked like a dream!!
Thank you so much ..this has added a ton of functionality to my blog.
So, is there a way to have this link come up in a new windows as to not take people from the blog??
Forum: Fixing WordPress
In reply to: Make static link a *hyperlink* in posts. Possible?The post is being made by an automated sattelite tracking thing that is sending a plain text email to wp-mail. It won’t come with any html tags etc.
Me wondering if there is a way to identify a link and wrap it (as you suggets or similar) after-the the fact …either in wp-mail or in the blog sofware as it gets posted?
Forum: Fixing WordPress
In reply to: Post by email stopped working after upgradeas far as the wp-mail posts being time-stamped in the future, I’ve posted my results here (clicky):
Forum: Fixing WordPress
In reply to: wp-mail posting future date(timestamp) ..thoughts?Well, I think I finally found in.
In this line:
$post_date = gmdate(‘Y-m-d H:i:s’, $ddate_U + $time_difference);
instead of + (adding) the difference, the time difference should be subtracted so I changed the plus (+) to a minus (-)
to look like this:$post_date = gmdate(‘Y-m-d H:i:s’, $ddate_U – $time_difference);
seems to have done the job, hope this helps others.