trivum
Forum Replies Created
-
Forum: Plugins
In reply to: [theme-selector] [Plugin: theme-selector] Theme Selector PluginHi – The activate button seems to work now. It looks good. But it seems than any level user can change the theme (even subscribers). Is there a way to change that?
Thanks.
Forum: Plugins
In reply to: Plugin Authors – Need Your Help! Make Admin Section PaginateHere’s the code in a pastebin https://pastebin.com/WkzgJeGt
There are actually two short files (a php file and js file). I’ve included both in the link above.
Would appreciate it if anyone could offer help. Thanks.
Forum: Plugins
In reply to: [Restrict Categories] Support for WP 3.2?Also, one other question. What happens when you have A LOT of users (like hundreds). Does the admin page automatically paginate? Can you search for users instead of paging?
Thanks.
Forum: Plugins
In reply to: [Restrict Categories] Support for WP 3.2?Actually, after reading another post, I guess it is working, but here’s my problem.
When the user doesn’t select a category, it posts to Uncategorized instead of posting to the category they were limited to. Is there any way to have it post only to their category and not to Uncategorized? (I am looking to eliminate the categories box completely so that users won’t have to worry about it. They will be assigned their category and that’s it.)
Thanks.
Forum: Plugins
In reply to: [Restrict Categories] Support for WP 3.2?Not working for me on 3.2.1
Forum: Fixing WordPress
In reply to: delete approved comment@samuel Thanks for the reply.
Actually, I think I might have figured out my situation. I think it might be related to a Facebook plugin I have that was pulling in comments from FB. (I think, anyway.)
Forum: Fixing WordPress
In reply to: delete approved commentI have a similar situation – I have a spam comment, yet there is no check box beside it in order to mark it as spam.
Any ideas?
Forum: Fixing WordPress
In reply to: Using Google's Authorship Markup – How?It looks like you need to add rel=”author” to a link to your author page and rel=”me” to a link to a Google profile. – authorship explanation
Forum: Fixing WordPress
In reply to: Finding WP Version Number WITHOUT Access to the Front EndYes, I saw a wp_options table. But there didn’t appear to be a db_version.
In any case, I just went back and started with WP 1.2, and it worked.
Thanks for the help.
Forum: Fixing WordPress
In reply to: Finding WP Version Number WITHOUT Access to the Front EndThanks for answer, but I’m not finding it. This version if fairly old — maybe 1.2 or 1.5 (not sure).
When I look in the database of a recent version, I see the db_version in the wp-options, but not when I look in the older one that I’m working with.
Forum: Plugins
In reply to: Is there a plugin that hides the "Draft" option?Anyone have ideas about this?
Thanks.
Forum: Plugins
In reply to: force users to select at least one category and/or tagI found a plugin that does this. It forces them to choose a category, and you can change the text (in the file itself, not in the admin section) to remind them to put tags in.
https://www.ads-software.com/extend/plugins/category-reminder/
Forum: Fixing WordPress
In reply to: Bug? Quick Edit changes AuthorWell, I don’t have the problem anymore. It seemed to go away for me with 3.1.
Forum: Plugins
In reply to: force users to select at least one category and/or tagI’m also looking for this. Can’t find a plugin that does this. Does anyone know of one?
Thanks.
Forum: Fixing WordPress
In reply to: Only author posts approve commentsI found a very simple plugin that says it will do this for posts, so I was wondering if a slight change to this plugin will do this for comments (show only the comments related to posts of that particular author).
By the way, I’m not sure if this plugin actually works for posts or not, but maybe someone with PHP knowledge can look at it, and it will spark an answer.
Found the plugin here: https://code.mincus.com/41/manage-your-posts-only-in-wordpress/
This is the code:
<?php function mypo_parse_query_useronly( $wp_query ) { if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false ) { if ( !current_user_can( 'level_10' ) ) { global $current_user; $wp_query->set( 'author', $current_user->id ); } } } add_filter('parse_query', 'mypo_parse_query_useronly' ); ?>