rjktlf
Forum Replies Created
-
I ran into this too.
I didn’t want to publish anything though, as it gave me warnings about being open to anyone.Instead I added the email address of the account I was wanting to use (the one I registered the credentials etc with) to the Test Users. Then it worked fine with no 403, and I managed to send an email successfully.
Screenshot of add test users, hosted on ibb.co, will delete after 1 week
I have two gmail accounts that I tried this on. A 10+ year old gmail account had different ui and options. My 3 week old gmail account had new stylings and gave me these options. Neither of them looked like the gmail setup guide I was trying to follow here https://wpmailsmtp.com/docs/how-to-set-up-the-gmail-mailer-in-wp-mail-smtp/
hope this helps.
I replied to a similar post with something that might help some people who want to keep using ACF Photo Gallery plugin rather than switching to PODS.
https://wordpress.org/support/topic/not-work-with-elementor-pro/#post-13692806
Forum: Plugins
In reply to: [ACF Photo Gallery Field] Not work with Elementor PROI ran into the same problem.
After some research I cobbled together this
add_action( 'elementor/dynamic_tags/register_tags', function( $dynamic_tags ) { class ACF_Photo_Galery extends Elementor\Core\DynamicTags\Data_Tag { public function get_name() { return 'acf_photo_galery'; } public function get_categories() { return [ 'gallery' ]; } public function get_group() { return [ 'acf' ]; } public function get_title() { return 'ACF Photo Gallery'; } protected function get_value( array $options = [] ) { $photos = acf_photo_gallery("gallery", get_the_ID()); return $photos; } } $dynamic_tags->register_tag( 'ACF_Photo_Galery' ); } );Add it to your site as a plugin, it should allow Elementor to see images in an ACF Photo Gallery field with the name gallery. You will have to extend it for more features, but this should get you started.
I used these sources:
https://developers.elementor.com/dynamic-tags/
https://github.com/elementor/elementor/issues/7528#issuecomment-474889528
https://github.com/elementor/elementor/issues/7730#issuecomment-480578240
https://toolset.com/forums/topic/image-field-on-term-not-available-as-a-selection-in-elementor/