lesles08
Forum Replies Created
-
Forum: Plugins
In reply to: [WP PDF Generator] Post Images not in PDFDid you find an answer to this? My site has started not printing the images in the pdf that’s created now too. It wasn’t doing this before. I can’t think of anything WE did to cause this so I am not sure how to even troubleshoot why the images have disappeared. They are only missing in the pdf. Please help me with this. We need the images.
example page: https://americanpregnancy.org/pdf-creator/?id=1048
When you click the pdf button, the pdf is missing the images.
Forum: Plugins
In reply to: [Force Login] Blank Page after logging in with blank Redirect ValueThank you so much for your response! I checked the debug.log (wp_debug and wp_debug_log are both set to true) but there’s nothing in the log. I made sure it’s logging errors and it is but just not showing anything related to this issue. Then I tried the code you provided and it isn’t fixing the issue.
The blank page has no html and there’s no error in the console. I don’t know what to look at or try. Do you have any more ideas that we can try?Here’s everything we have in functions that is related to the plugin in case you can see anything (it all works except the new piece you provided today):
// Force Login plugin modifications -- function my_login_redirect( $redirect_to, $requested ) { if ( empty( $requested ) ) { $redirect_to = home_url( '/community-welcome/' ); } return $redirect_to; } add_filter( 'login_redirect', 'my_login_redirect', 10, 2 ); // Custom Login URL function my_login_page( $login_url, $redirect) { return site_url('/community-welcome/?redirect_to='.$redirect); } add_filter( 'login_url', 'my_login_page', 10, 2 ); // Custom Registration URL function my_registration_page( $register_url ) { return site_url( '/register/', 'login' ); } add_filter( 'register_url', 'my_registration_page', 10, 1 ); /** * Filter Force Login to allow exceptions for specific URLs. * * @param array $whitelist An array of URLs. Must be absolute. * @return array */ function my_forcelogin_whitelist( $whitelist ) { $whitelist[] = home_url( '/register/' ); $whitelist[] = home_url( '/activate/' ); $whitelist[] = home_url( '/request-information/' ); $whitelist[] = home_url( '/user-community-help/' ); $whitelist[] = home_url( '/community-welcome/' ); $whitelist[] = home_url( '/user-community-usage-guidelines/' ); return $whitelist; } add_filter( 'v_forcelogin_whitelist', 'my_forcelogin_whitelist' );
Thank you in advance for your help!
Awesome! Thank you, it works great as far as not placing them into the approval process! Can I ask you another question? It still sent a “New Member Request” email to the administrators. Is there also a fix that will prevent that email from sending? I tried a couple things but it didn’t quite work.
Forum: Plugins
In reply to: [Quiz and Survey Master (QSM) - Easy Quiz and Survey Maker] NO ADMIN E-mailsHey Frank!
I am having issues with emails. They were working (sending email to user and admin after quiz completion) and now they have stopped. I’ve tried changing settings in several places. I did as you suggested above, checking that email is working on the site and it is. Can you please help me troubleshoot what could be wrong or how to fix it in the code? I am at a loss. I love this plugin as it does pretty much everything we need. (Also gave 5 star rating) Please help!
Leslie