AK Ted
Forum Replies Created
-
Forum: Plugins
In reply to: [custom tables] Custom tables widget does work with WP 3.4.2If you start a new thread stating what your specific needs are, i.e., “I need a plugin that does X and Y but not Z”, you’re more likely to get a response. Your new thread will be listed with all the other posts without replies, which get more views.
@neffect, only subscribers cannot edit_posts (see Roles and Capabilities).
If you wanted to block only authors, you could use
if ( current_user_can('author')If you wanted to limit it to only those “higher” than an author, you could use
‘if ( ! current_user_can(‘edit_others_posts’)’
or any other capability listed in the above link that applies only to Editors & Administrators (and Super Admins if Multisite).Thanks to Jeremy Herve for point out this thread. Here’s a way to block all users except administrators from seeing Jetpack in their Dashboard:
<?php function hide_jetpack_from_others() { if ( ! current_user_can('administrator') ) { remove_menu_page( 'jetpack' ); } } add_action('jetpack_admin_menu', 'hide_jetpack_from_others');The easiest way to enable this is to save that function to a file, such as
jetpack-tweaks.php (or whatever you want to call it)
and upload it to
wp-content/mu-plugins (create directory if needed)
mu-plugins, for those that don’t know, is a directory that WP scans and will run every .php file inside of. Basically, they’re plugins that don’t appear in your plugins admin interface.
Thank you, Jeremy. Your help is most appreciated.
Forum: Fixing WordPress
In reply to: Is it possible to make a Page available for mobile devices ONLY?Browser Blocker looks like it might do what you want. Keep in mind, though, that it’s impossible to know for certain which browser your visitor is using. You only know what that visitor “tells” you. It is relatively simple to spoof what browser you’re browsing with.
Forum: Plugins
In reply to: [custom tables] Custom tables widget does work with WP 3.4.2If I were you, I’d try to find another plugin that does what you need. This plugin only lists compatibility up to 3.2.1, and is rated quite poorly; it has more 1-star votes than it does 5-star votes. Sorry I don’t have a replacement to recommend.
Forum: Fixing WordPress
In reply to: Creating Pages with a Lot of Html ElementsThanks, Esmi. I’d researched custom page templates a little beforehand, it seemed I’d need to create a separate template for each “book” (Page), create a new Page, then assign the correct template to that Page. Seems like a lot more work than manually copying the html from Dreamweaver and pasting it into a Page, loss of code formatting be damned. Custom fields and shortcodes seemed even harder, for my needs, though it’s something I’d like to learn for future reference.
In the end, I found a great little plugin, WP Include File which worked perfectly. It was as simple as
[include file="my-file.html"]The outputted page looks identical to if I’d put the markup in the Editor – no loss of formatting. And it appears to work great on 3.4.2 even though it’s only listed up to 3.1.4.
Thanks again for your input.:)
Forum: Fixing WordPress
In reply to: Show Chosen Posts On A PageMany thanks, deepbevel. xili-postinpost looks interesting, I’ll play around with it some. query_posts works great for what I was looking for.
I’ll leave this marked “Not Resolved” for awhile to see if anyone else chimes in.
Forum: Requests and Feedback
In reply to: Seemingly Rude ModeratorsThanks again, Ipstenu. Your help and insights are much appreciated.
Forum: Requests and Feedback
In reply to: Seemingly Rude ModeratorsThanks for your perspective, Ipstenu. Your example of upgrading shows how unique setups necessitate unique threads to be started. But the original post I alluded to illustrates the opposite: people with the same “problem” – be it unwanted “functionality”, a flaw in execution, or simply a misunderstanding of the way the plugin is supposed to work – trying to find a solution. The topic of that post, Jetpack showing in the dashboard of your subscribers, is easily replicable regardless of external configurations. If that thread wasn’t prematurely closed, and others allowed to “me-too”, the problem might have been able to be resolved without other threads (like my as-yet unanswered post) being created.
P.S. – would it be possible for you or another mod to remove my second post in that thread? I’d forgot to ask how to remove this “functionality” and mistakenly posted that to the thread instead of editing the original post. So now the thread isn’t shown with the “No Replies”.
Glad to help. 🙂
Forum: Plugins
In reply to: [Dashboard Notepad] Can't See NotepadNevermind, found it at the bottom of the Dashboard, duh. Mod, please feel free to delete this thread if desired.
I assume you’re talking about http://www.makeupbrushstudio.com/blog/. Strange, there’s no posts, but there are posts in your feed. Any chance you added any plugins or made any other changes the last time you were in the admin (months ago)? I’d try disabling all your plugins and go from there.
Forum: Themes and Templates
In reply to: Hiding Page TitleAh, good catch, WPyogi.
Forum: Themes and Templates
In reply to: Hiding Page TitleI’m still new to WP, but one way to do it is add the following in Appearance | Edit CSS:
.post-title { visibility: hidden; }As I said, I’m new, so there might be a better way to do this.
This is assuming, e.g., that you’re talking about hiding the “Home” text under your “Testimonials” box on the homepage and “Testimonials” text from “Testimonials” page.