Bainternet
Forum Replies Created
-
This plugin works “out of the box” only with content.
i have no idea where you have checked categories and tags since this plugin has no option like this for you to check.
Forum: Plugins
In reply to: [User Specific Content] Add Conditional check functionIn the next update the plugin is registered as a global variable so you can use the user_specific_content_filter method with any content you would like, eg:
ob_start(); //your content //+ meta data //+ what ever you wish to limit for specific users or roles global $U_S_C_i; echo $U_S_C_i->user_specific_content_filter(ob_get_clean());Forum: Plugins
In reply to: [User Specific Content] Adding an edit possibilityFor that you will need some kind of a front-end edit plugin or simply wait and see what comes out of this http://make.wordpress.org/ui/2014/02/27/front-end-editor-usability-test-1/
Forum: Plugins
In reply to: [User Specific Content] Does it work with customized roles?As long as the roles are added in the right way then yes.
Forum: Plugins
In reply to: [User Specific Content] Return list of users allowed to see contentYou can pull the list of allowed user ids form the post/page meta ex:
global $post; $allowed_user_ids = get_post_meta($post->ID,'U_S_C_users',true);Forum: Plugins
In reply to: [User Specific Content] User Specific Page or PostYes? No?
I can’t really understand what it is you are asking.Forum: Plugins
In reply to: [User Specific Content] Select Default Options for all postsThe fields are stored as post/page meta so you can set the meta fields automatically when you create a post/page ex:
add_action('publish_page', 'add_custom_field_automatically'); add_action('publish_post'. 'add_custom_field_automatically'); function add_custom_field_automatically($post_ID) { global $wpdb; if(!wp_is_post_revision($post_ID)) { add_post_meta($post_ID, 'U_S_C_roles', array('Administrator'), true); } }Forum: Plugins
In reply to: [User Specific Content] not working with wp-memberscare to elaborate?
Forum: Plugins
In reply to: [User Specific Content] User Names and Roles as a textarea not a checkbox?The next update will allow you to choose the type of field for both the user and role list, either checkboxes (like now) or select boxes.
as for categories, its something I’m thinking about but its not going to happen any time soon.
Forum: Plugins
In reply to: [WooCommerce] Can WooCommerce be used as catalog-only?Use this snippet in your themes functions.php
remove_action('woocommerce_single_product_summary','woocommerce_template_single_add_to_cart',30);Forum: Plugins
In reply to: [User Specific Content] Shortcode for non-logged in usersForum: Plugins
In reply to: [User Specific Content] Menu Link to Show Logged-in User's Pagetake a look at Menu Item Visibility Control plugin
http://wordpress.org/plugins/menu-items-visibility-control/Forum: Plugins
In reply to: [Social Comments] WordPress Comment Form not showingNot really an issue it the plugin, read this http://en.bainternet.info/2013/social-comments-plugin#comment-2429
Forum: Plugins
In reply to: [Social Comments] WordPress – Não mostra comentáriosummm, ok?
Forum: Plugins
In reply to: [Social Comments] Request: Comment countsadded in 0.1.4
enjoy.