Bainternet
Forum Replies Created
-
Forum: Plugins
In reply to: [User Specific Content] Post filterThere is but using some custom coding and not out of the box.
contact me on my site and I’ll see how I can help you.
Forum: Plugins
In reply to: [User Specific Content] Site with more than 1,000 usersForum: Plugins
In reply to: [User Specific Content] Use with custom post typeA better solution would be to use the provided filters and hooks in the plugin (always avoid editing files that get updates)
//using a filter hook add_filter('USC_allowed_post_types','usc_filter_post_types'); function usc_filter_post_types($types){ //to add a custom post type $types[] = 'MY_CUSTOM_POST_TYPE_NAME'; //to remove a post type if(($key = array_search('post', $types)) !== false) { unset($types[$key]); } }
Forum: Plugins
In reply to: [Simple lyteload] Lazy load or cache?I have no idea why you would need it but I know why I and every one else who has a site should be using it, mainly because the images are loaded from the server and not from the cache.
You should read more about “Lazy loading” and caching in general to get a better understanding of the subject.
Forum: Plugins
In reply to: [In category Order] Does this plugin support CPT (custom post types?)I’ll think of something ??
thanks
Forum: Reviews
In reply to: [In category Order] Wont workthat is not true! once you activate the plugin your site starts printing dollar bills.
Forum: Plugins
In reply to: [Social Comments] No Social Comment in Some pagesThere is no way to define on what pages this plugin will or not work out of the box. You would need some custom coding for that.
Forum: Plugins
In reply to: [ShortCodes UI] Front site blank with php errorFrom the Error shown I can guess that one of your shortcodes is using the
get_field()
function so either remove that shortcode or check why it stopped working for you. But its not a problem caused by the shortcodes ui plugin.Forum: Plugins
In reply to: [Simple QR Code] How to make it work with a shortcode inside?Open the plugin file and change line 71 from
$content = urlencode($content);
to
$content = urlencode(do_shortcode($content));
this should do the trick.
Forum: Plugins
In reply to: [Custom Taxonomy Template] showing a common template for all taxonomiesHmm I don’t really understand whats not working for you or whats the problem.
Forum: Plugins
In reply to: [Bainternet Posts Creation Limits] overwritten rulesTry creating a new role “advanced_seller” which is just like the “seller”
and just change the role when they upgrade.Forum: Plugins
In reply to: [User Specific Content] Hide restricted post from other usersNot without custom coding.
This plugin will only block content and not listing.
Forum: Plugins
In reply to: [User Specific Content] User role with whitespace and underscore not workingshould be fixed in 1.0.5
Forum: Plugins
In reply to: [User Specific Content] Display Specific ContentNope that is the point.
Forum: Plugins
In reply to: [User Specific Content] Function has_role()Yep there was a bug which is now fixed in 1.0.5