jdowns1
Forum Replies Created
-
Thanks @andrewshu. Is there a hook I can use to catch this event?
Thanks for clarifying Andrew.
When an invalid profile URL is entered, how do I redirect to a specific profile page, where I can have verbiage that says this profile doesn’t exist, instead of redirecting to the home page? Not the 404 page, but a specific page so I can make it look like an empty profile page. That would be more helpful to a visitor than just a home page redirect so they would understand.
Any help or suggestions from anyone?
Correction, the filters I’ve tried to use are
um_profile_permalink
um_external_profile_url
where $slug is configured to the user-idfunction my_um_profile_permalink( $profile_url, $page_id, $slug ) { $first_name = um_user('first_name'); $last_name = um_user('last_name'); $profile_url .= $slug . '/' . $first_name . '-' . $last_name; // replace to your custom link. } add_filter( 'um_profile_permalink', 'my_um_profile_permalink', 10, 3 );- This reply was modified 2 years, 10 months ago by jdowns1.
Forum: Plugins
In reply to: [WP Mail Logging] Attachments not showing in logsYour WP plugin page clearly says this is possible, it doesn’t say file names only. From https://ww.wp.xz.cn/plugins/wp-mail-logging:
“All emails sent from your WordPress site are logged. And here is the information that is stored:
Email Attachments
You can search and view a particular email log, inspect its content or attachments, and even resend that email.”But understood this is not the case, so thanks for clarifying.
Thanks. I an asking if the conditional feature would solve my issue, not necessarily how to use it.
Yes you can – found the answer here
https://help.10web.io/hc/en-us/articles/360030907571-How-Can-I-Add-Images-Using-FTP-
- This reply was modified 4 years, 2 months ago by jdowns1.