Orange
Forum Replies Created
-
Hey Christian
I won’t be able to get the team to switch unfortunately as their other websites are using SendGrid, and it was a bit of bother getting the ok to use them.
I’ve tried the sendGrid option in this plugin https://en-gb.ww.wp.xz.cn/plugins/wp-mail-smtp/ as mentioned, it works fine on the other site without profile builder active.
Is there a function I can use to disable the use of wp_mail() or something of similar sorts?
Thanks for the help
Hello Christian,
Thank you for your response. Is there anyway around this so we can use SengGrid? I’ve spoken to the host and they’re not being entirely helpful at this stage. It’s a multisite and send works nicely with the sister site so we’d like to incorporate it into the site using profile builder too.
Thank you
Forum: Plugins
In reply to: [Sensei LMS - Online Courses, Quizzes, & Learning] PHP warningsSame issue here
Forum: Plugins
In reply to: [Sensei LMS - Online Courses, Quizzes, & Learning] Course shortcode classesThank you Cena,
For anybody who might need this:
function sensei_lesson_classes( $classes, $class, $course_id ) { $user_id = get_current_user_id(); if ( 'course' == get_post_type( $course_id ) && is_user_logged_in() ) { if ( Sensei_Course::is_user_enrolled( $course_id, get_current_user_id() ) ) { $classes[] = 'started-course'; } } return $classes; } add_filter( 'post_class', 'sensei_lesson_classes', 20, 3 );- This reply was modified 4 years, 8 months ago by Orange.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] REST API – Ordering by ACF Date fieldHi,
Did you ever figure this one out? I’m having the same issue at the moment.
Thanks
Forum: Plugins
In reply to: [YITH WooCommerce Affiliates] Change affiliate rewardsThanks for the help guys, that makes sense.
There is another issue I’m having. When you register to be an affiliate you just get a generic email sent with a thanks for joining the website and a password. Can I edit this email?
I also tested when you approve an affiliate they don’t get any welcome email etc with a link to their dashboard so there wasn’t any real notification to the user on what to do.
Thank you
Forum: Plugins
In reply to: [YITH WooCommerce Affiliates] Check if user is affiliateYes please I’d like to know this also.
Thanks
Forum: Plugins
In reply to: [Subscriptions for WooCommerce] Customer charged twiceThank you, ticket sent.
Forum: Plugins
In reply to: [Subscriptions for WooCommerce] Customer charged twiceHi there,
Thanks for the speedy response, I added a link image to the screenshot if that’s helpful.
Thanks
Forum: Plugins
In reply to: [Max Mega Menu] GCLID issueHi there,
Sorry jumped the gun slightly! Works great for top level nav items, but not for hard links added via custom html in the mega menu, I don’t suppose there is another filter for this?
Thank you
Forum: Plugins
In reply to: [Max Mega Menu] GCLID issueBrilliant, thank you very much for your help.
Forum: Plugins
In reply to: [Max Mega Menu] GCLID issueForum: Plugins
In reply to: [Geolocation IP Detection] Picking up incorrect locationFor anybody having the same issue arise,
I had to check “The server is behind a reverse proxy” and add the servers IP address manually and this resolved my issue.
Thanks!
Forum: Plugins
In reply to: [PayPal for WooCommerce] No billing addressThat’s awesome, thanks so much for your quick response!
Awesome, thanks.
I placed the shortcode outside of my form, then appended it with jQueryto an empty div inside my form. All works well.