Brian Layman
Forum Replies Created
-
They can only access the pages directly IF they have entered the pw for that page. All child pages MUST be password protected.
You can also adjust the timeout used for the cookie to make sure that the pw isn’t kept for more than a few hours.
Forum: Plugins
In reply to: [Smart Passworded Pages] logout of all of the pages?Yep, that’s what I was going to say. You can set the time out right within the shortcode.
Forum: Plugins
In reply to: [Smart Passworded Pages] Unable to password child pagesYou don’t put the password requirement on the parent page. The child pages must be password protected. The parent should not be. The parent should be accessible because that’s where the short code is used to display the log in form.
Forum: Plugins
In reply to: [Smart Passworded Pages] Menu Order instead of Post Date?Actually, the code for adding a Page ID is already in there.. I could see about making menu order an option for the next release.
I’ll be giving these plugins some love sometime in the next month and see what I can do.Yeah you don’t have to do a core hack to fix this. It’s easy to add something to your themes function.php to change this.
Try something along these lines:
function renameProtected( $title, $post ) {
return ‘PrivateAccess: %s’;
}
add_filter( ‘protected_title_format’, ‘renameProtected’ );Forum: Plugins
In reply to: [Smart Passworded Pages] password field 'disappears' once clickedI’ve not seen that happen but I’m sure it’s a css change you can quickly put in. Feel free to post a link to where you are using it. I suspect it is an interaction with your css config
Forum: Plugins
In reply to: [Smart Passworded Pages] Smart Passworded Pages not workingIt looks like you’ve figured it out. Great! Sorry I didn’t to you faster. Let me know if you have other questions.
Forum: Plugins
In reply to: [Smart Passworded Pages] redirect when users try to access pw pages directlyThanks Estaban,
Unfortunately that isn’t generic enough for the plugin code, but it will work in the functions.php for a custom theme.The difficulty for the plugin is that it has to work with people having multiple parent pages AND also having passworded pages that are not at all related to this plugin. Right now the only way I think I could write a generic routine is to look for the parent of the passworded post and see if the content of that parent uses a smartpwpages short code. And that’s not very efficient.
I’ll think on it more, but for now, thanks for the suggestion!
Forum: Plugins
In reply to: [Smart Passworded Pages] not working with multiple passwordsBut for the record, WordPress only allows one password per post. It may be possible to create a plugin to allow multiple passwords, I’ve had a number of requests for it of late, but that ability is neither in WP nor in this plugin yet.
Forum: Plugins
In reply to: [Smart Passworded Pages] not working with multiple passwordsdisregarded.
Forum: Plugins
In reply to: [Smart Passworded Pages] redirect when users try to access pw pages directlyUnfortunately, I don’t think that’s possible. Interesting question though…
Forum: Fixing WordPress
In reply to: Custom Taxonomy Template/ArchiveIn my situation, the issue was that I was thinking of the taxonomy as a custom post type and tried to use archive-$posttype.php for it. Silly mistake.
You should try to use either taxonomy-$taxonomy-$term.php or just taxonomy-$taxonomy.php
So if you had magazines as a CPT and schedule as the taxonomy and daily,weekly,monthly, quarterly as terms you would do
taxonomy-schedule.php or to have a very specific appearance taxonomy-schedule-quarterly.phpForum: Fixing WordPress
In reply to: Custom Taxonomy Template/ArchiveWere you able to resolve this issue?
It’s long past time I updated this plugin anyway. I’ll put it on the to do list this week.
Forum: Plugins
In reply to: [WP Mingle] Mingle forum showing up on page twiceHaving the same problem on a site. Deactivating JetPack does solve the problem. As does this fix:
You can replace the wpf.class.php file with the one found here.
http://cl.ly/M6DCThe technical explanation is that both plugins use output buffering and as a result, they conflict with each other. The update to the file eliminates the use of output buffering from the mingle-forum plugin.