Fanaticweb
Forum Replies Created
-
YES please! I think the plugin GF already takes care of the page specification since it pushes the content back to the default page where the posts are displayed, if not, I’ll check with them to see how to make it work, but if you can push that filter in your plugin, it would definitely bring it to life for the ones using front-end submissions.
Forum: Themes and Templates
In reply to: Post editor strips tags when switching between HTML and VisualSeriously? I just learned this the hard way, I was preparing a page with Linked ID’s and internal links (Glossary references and Top of page internal links), as soon as I switched to Visual mode, I lost all the markups, ridiculous…
Forum: Fixing WordPress
In reply to: Display a custom image only if user role is contributorI’m looking for something similar but not for an image display, yet for a Menu display (text format). I have Contributors and “Basic” role users (Custom role deployed by the Members plugin).
In the navigation menu, when the user logs in, there’s a link to take them to their profile, I have duplicated the functionality of the profile of a Contributor template and stripped down some options to reflect on a Basic profile template, the problem is, I cant figure out how to distinguish the user role when logged in and switch Menu links pending on their user role to redirect each one separately pending on the identified role they have been assigned.
Anyone out there know of a plugin or code that would allow me to complete such task?
Nevermind, using a Placeholder with GF v1.6 does the job, as previewing the form shows me a drop down menu instead of Checkboxes contrary to what is seen in the admin form edit section 🙂
I’ll give it another try for the sake of it cause ya, plugins are better then hard coding.
I’m confirming this plugin WORKS with custom posts and its actually smart, picks up common tags and categories, the thing is, it all depends on how YOU setup your posts and tags, GOOD JOB Nicolas!
Forum: Plugins
In reply to: [IP.Board Comments] Announcement for IP.Board Comments for WordPressHi there, I have one major concern, I have a Worpdress theme that uses custom post types (not the default blog posts) yet their own custom taxonomies, will your plugin be able to fetch those?
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Live search only works when logged in as AdminDave, I got it to work finally by installing a plugin (wp admin block) which allowed access to your plugin’s required file calling hence me removing the manual code that I had added in the functions file that restricted the wp-admin access, A1! 🙂
Thats good to know and definitely encouraging to purchase the plugin after all, thank you!
Forum: Fixing WordPress
In reply to: Completely block access to WP Admin DashboardSeeing how WordPress is evolving on the market and developers are pushing more CMS based themes allowing front end user postings, shouldn’t this option (blocking access to the wp dashboard be available to turn on/off pending on the admin’s choice?
The strongest and most effective way I found to complete such task so far is by adding the wp-admin restriction code in functions.php yet sometimes it blocks access to some Ajax calling used by some plugins which breaks them and makes them obsolete.
Really wished they would introduce this kind of option in future releases.
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Live search only works when logged in as AdminDave, thank you very much for your feedback and research on this matter, I’ll definitely address it to the developer, he’s usually very prompt on updating the theme, at first I was sure it was a syntax error in my htaccess in regards to pointing to the ajax file, I was hoping to find the extra code to place in the functions.php file to allow the access to the sub-folder of wp-admin, but I guess not.
I’m a newb, hope you figured that much, but I like to digg in and learn this stuff, very interesting.
On a side note, GREAT plugin by all means!
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Live search only works when logged in as AdminHi Dave,
I made a mistake, the wp-admin restriction is declared in the theme’s functions.php file and not in the htaccess file, meanwhile, I tried adding the following in the htaccess file to no avail:
#allow admin-ajax access
<files wp-admin/admin-ajax.php>
Order allow,deny
allow from all
Satisfy any
</files>My functions.php file has:
// block WP admin access
function prevent_admin_access() {
if (strpos(strtolower($_SERVER[‘REQUEST_URI’]), ‘/wp-admin’) !== false && !current_user_can(‘administrator’)) {
wp_redirect(get_option(‘siteurl’));
}
}add_action(‘init’, ‘prevent_admin_access’, 0);
I went on to the link you provided in one of your replis (http://www.nkuttler.de/post/htaccess-protect-wordpress-admin) and I couldn’t figure out how else to enable the access to the ajax-admin file.
I would really appreciate any feedback or help on this one to justify the activation of your plugin.
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Live search only works when logged in as AdminHi, forgot to mention also that I’m using the plugin “Search everything” in parallel with your plugin, just in case this might be causing a conflict
I dont find that it can “customize” the wp login as much, I mean, whats the point if I cant control what OPTIONS to display in the Widget? I dont want the Site Admin link to display for example, and your plugin doesnt allow me to remove that link, so what’s the point?
Useless imo.
Forum: Fixing WordPress
In reply to: Password protection does not work on posts & custom post types+1000 for that one! All content should be protected in that case, the custom fields AND the content!