Bainternet
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Category Template] add pagination on custom category template pageNot really an issue with this plugin.
Forum: Plugins
In reply to: [Custom Category Template] Not working for a Particular Cat.This means that the plugin works as it should and that you have a problem with your template file, Not the plugin.
Forum: Plugins
In reply to: [Simple TOC] conflict with Ultimate Tiny MCEIt works fine
this would require some custom coding.
take a look at my other plugin Author Category
Forum: Plugins
In reply to: [Bainternet Posts Creation Limits] Warning: Cannot modify header informationNot sure if its caused by this plugin.
Its a custom post type so you need to tell the shortcode what is the custom post type, take a look at the plugin’s Frequently Asked Questions for how to use the shortcode.
Forum: Plugins
In reply to: [Bainternet Posts Creation Limits] DONT Worknot sure how to read the question. closing
Forum: Plugins
In reply to: [Bainternet Posts Creation Limits] Redirect users when they reach the limitactually that filter is not the one you are looking for, Its called when using the
IN_LIMITshortcode.Instead you should look at the new
post_creation_limits_before_limited_messageaction hook to output javascript to redirect the user ex:<?php add_action('post_creation_limits_before_limited_message','my_custom_redirect'); function my_custom_redirect(){ wp_redirect('url_here'); die(); }In that function you can check the user role, post type or what ever you want.
Forum: Plugins
In reply to: [Bainternet Posts Creation Limits] Front-Endplease read http://wordpress.org/plugins/bainternet-posts-creation-limits/faq/
its all thereForum: Plugins
In reply to: [Bainternet Posts Creation Limits] user frontend limityou need to set the post type in the shortcode attribute ex:
[IN_LIMIT type="CUSTOM_POST_TYPE_NAME"][wpuf_form id = "X"][/IN_LIMIT]Forum: Plugins
In reply to: [Bainternet Posts Creation Limits] Doesn't seem to catch press-this.phpshould be fixed in 3.2,
thanksForum: Plugins
In reply to: [Bainternet Posts Creation Limits] not workingjust did on WordPress 4.0.0 its working as it should
Forum: Plugins
In reply to: [Bainternet Posts Creation Limits] Can limits be set and lifted dynamically?I cant see how you achieve that without custom coding.
Forum: Plugins
In reply to: [Bainternet Posts Creation Limits] Limit CPT with WPUserFrontendProIts not going to work since the plugin is not aware of the current post type of the form.