therealhopeful
Forum Replies Created
-
Forum: Plugins
In reply to: Disable Version CheckThanks, Michael, but a plugin isn’t very helpful when WordPress won’t even give me access to the admin page, unless I upgrade. I think I solved the problem, though. I commented out these lines near the top of admin.php, and that seemed to do the trick:
if ( get_option('db_version') != $wp_db_version ) { wp_redirect(get_option('siteurl') . '/wp-admin/upgrade.php?_wp_http_referer=' . urlencode(stripslashes($_SERVER['REQUEST_URI']))); exit; }
Forum: Plugins
In reply to: Creating cookies on loginOkay, well, I think I figured out why your cookie generation is not working. I’m using the latest version of WordPress (2.2.2). Assuming ‘pluggable.php’ in 2.2.2 is the same as ‘pluggable-functions.php’ there is a comment at the top of the file that reads:
/* These functions can be replaced via plugins. They are loaded after plugins are loaded. */
You may have a plugin installed thats overriding the function that you’re trying to edit. It’d probably be simpler to make a plugin or alter the function of the plugin that’s overriding the default function. Just to check, try dissabling all your pluggins. If I’m correct, you should then see the expected cookie to appear.
Forum: Plugins
In reply to: Userextra/ usermeta pluginForum: Plugins
In reply to: Creating cookies on loginNot a clue, but I am trying to figure out how to make my users’ sessions expire, so they will have to login again periodically. (Login Logger plugin)
Forum: Plugins
In reply to: new plugin: Author Profile PictureHello Roman. Is this get-author-profile a plugin? 78, why won’t wp_list_authors() work for you? That’s what I use to make a “contributor” page. You can see an example of this at https://www.correctnesscommentary.com/about
Also, I like that a plugin for user profile photos has been made. I’ve been asking for something like this as well for a while now. However, I ended up just coding it in myself using the Cimy-extra-fields plugin as a crutch:
$cimyval = @get_cimyFieldValue($curauth->ID, 'USER_PHOTO'); if ($cimyval == !NULL) { if ($cimyval == '/wp/wp-content/uploads/authors/') { ?> <img src="<?php echo get_cimyFieldValue($curauth->ID, 'USER_PHOTO'); echo $curauth->user_login; ?>.jpg" alt="<?php echo $photo_title; ?>" title="<?php echo $photo_title; ?>" /><?php } else { ?> <img src="<?php echo get_cimyFieldValue($curauth->ID, 'USER_PHOTO'); ?>" alt="<?php echo $photo_title; ?>" title="<?php echo $photo_title; ?>" /><?php } }
Forum: Fixing WordPress
In reply to: Post (draft) by emailIs there perhaps a plugin that will do this?
Forum: Fixing WordPress
In reply to: Blog by Email just saves as ‘draft’, doesn’t publishWow, I’m trying to do the exact opposite! Because I have pultiple post-by-email contributors to my site, I’m trying to figure out a way to get WordPress to hold their (or all) post-by-email posts as a draft until a mod or admin can edit and approve them. Any thoughts on how I might go about that?
Forum: Requests and Feedback
In reply to: Itemized Version ChangesThanks! This is very helpful! ??
Forum: Plugins
In reply to: Last Login PluginHey! Thanks for the info! The plugin works great! (I’m using WP 2.2.2)
He also had a link to this plugin, which you may find interesting. I’ve not yet tested it, but it looks very useful.
Forum: Fixing WordPress
In reply to: WordPress Not Recognizsing Page SlugForum: Plugins
In reply to: Last Login Plugin?? bump ??
Forum: Fixing WordPress
In reply to: Post by EmailIs this possibly a bug related to WP2.2? Would upgrading to 2.2.1 fix this?
Forum: Plugins
In reply to: Email PluginI think this is resolved. I’m using the Subscribe2 plugin.
Forum: Fixing WordPress
In reply to: the_excerpt()Issue resolved! ??
There’s a hidden API that does the job:
get_the_excerpt()
Forum: Fixing WordPress
In reply to: the_excerpt()Thanks for the suggestion, Trent, but it’s no-go. I tried both of the following bits of code, and they ended up generating an endless loop:
<?php while (have_posts()) : ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php echo strip_tags( the_excerpt() ); ?>" alt="<?php echo strip_tags( the_excerpt() ); ?>"><?php the_title(); ?></a></p> <?php endwhile; ?>
<?php while (have_posts()) : the_excerpt(); ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php echo strip_tags( the_excerpt() ); ?>" alt="<?php echo strip_tags( the_excerpt() ); ?>"><?php the_title(); ?></a></p> <?php endwhile; ?>
Any other thoughts? ??