firelf
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] TML reset password is not working properlySame issue as original poster, documented on GitHub: https://github.com/jfarthing84/theme-my-login/issues/56
Forum: Plugins
In reply to: [Theme My Login] Login redirection and errorsScott,
Thanks for posting this. I’ve just been looking into the same problem.Thanks, Jack.
We ended up writing a patch:diff –git a/docroot/wp-content/plugins/bnfw/bnfw.php b/docroot/wp-content/plugins/bnfw/bnfw.php
index 5c8bd81..d7e497a 100644
— a/docroot/wp-content/plugins/bnfw/bnfw.php
+++ b/docroot/wp-content/plugins/bnfw/bnfw.php
@@ -94,7 +94,7 @@ class BNFW {register_activation_hook( __FILE__ , array( $this, 'activate' ) ); // P2 theme directly inserts the post into db - if ( 'P2' == wp_get_theme() ) { + if ( 'P2' == wp_get_theme() || 'Magazine Premium Child' == wp_get_theme() ) { add_action( 'wp_insert_post' , array( $this, 'insert_post' ), 10, 3 ); }But wait, there’s more. After an editor changed the status from pending to publish, the NEW notification fired away its messages.
Is this working as intended?
We’re not so much looking for moderation before publication. We’re looking to take action in the rare event a member does something out of bounds. Trust, but verify.I can get a “Pending Review notification if
in my pre_save_post function, I change post_status from publish to pending, so it is working to some degree on my post type..$post = array(
– ‘post_status’ => ‘publish’,
+ ‘post_status’ => ‘pending’,Thank you for the reply, Jack. Yes, I do have an options for:
New ‘Job’
‘Job’ Update
‘Job’ pending review
‘Job’ Scheduled
‘Job’ New Comment
We would like New ‘Job’ to work, because site members can post jobs that get published right away. I think I tried some of the other notification type yesterday but don’t remember how far I got or if I got any of them to work. I’ll try again and report back.Can you please look into this a bit more. I can’t give you credentials to the client’s server, but I can replicate the problem and a brand new local installation, default theme, no additional plugins. If you set the field being used for Tags as either multi-select or checkboxes, as soon as you attempt to edit a published listing from the front-end form, the tags disappear.
I turned off all the plugins except wpbd. I set the theme to Twenty Fifteen. Bug persists. It looks like it might be limited to the Categories, although I can’t remember if I saw it happen with any of the others earlier. I’m using the Contact Form on your website to send a Google Drive link to a screen capture to demonstrate.
And it may or may not be related, but I’ve noticed other, optional, select-list fields getting filled with the first available item upon editing if they’d previously been NULL.Forum: Plugins
In reply to: [WordPress Pagination Plugin: Page-Links Plus] Previous and Next<?php // Required, based on Zurb's Foundation framework if ( ! function_exists( 'required_single_content_nav' ) ) : /** * Display navigation to next/previous pages when applicable */ function required_single_content_nav( ) { ?> <nav class="nav-single"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'requiredfoundation' ); ?></h3> <span class="nav-previous"><?php previous_post_link( '%link', '← %title' ); ?></span> <span class="nav-next"><?php next_post_link( '%link', '%title →' ); ?></span> </nav><!-- .nav-single --> <?php } endif; // required_content_nav ?>Are the differences between the function above, and the one below, significant?
<?php // Twenty Twelve if ( ! function_exists( 'twentytwelve_content_nav' ) ) : /** * Displays navigation to next/previous pages when applicable. * * @since Twenty Twelve 1.0 */ function twentytwelve_content_nav( $html_id ) { global $wp_query; $html_id = esc_attr( $html_id ); if ( $wp_query->max_num_pages > 1 ) : ?> <nav id="<?php echo $html_id; ?>" class="navigation" role="navigation"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'twentytwelve' ); ?></h3> <div class="nav-previous alignleft"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentytwelve' ) ); ?></div> <div class="nav-next alignright"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?></div> </nav><!-- #<?php echo $html_id; ?> .navigation --> <?php endif; } endif; ?>Forum: Plugins
In reply to: [WordPress Pagination Plugin: Page-Links Plus] Previous and NextWhile I investigate the functions of the parent theme, this demo site http://ms-wit.com/ has only the four Page Links Plus plugins and the Twenty Twelve default theme, but no links for “Next” and “Previous.” I’m using the quick tag, <!–nextpage–> for page breaks.
Forum: Plugins
In reply to: [WordPress Pagination Plugin: Page-Links Plus] Previous and NextYou want “Next” and “Previous” to appear in your page lists, but they aren’t appearing? Is this correct?
Yes.