Kimantis_Creative_Group
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Emails are empty since the new updateThat fixed it ?? Thank you so much!
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] Whitelist REST API namespaceI am having the same issue, not able to whitelist any custom file.. path for example:
/wp-content/themes/understrap-child-master/includes/load.php
for
/wp-content/themes/understrap-child-master/includes/load.php?start=2021-02-28&end=2021-04-11&_=1616698751919″.Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Emails are empty since the new updateYes, I’m pretty sure it has to be be with previous actions.
Everything else seems fine.I was unable to get debug.log to work.. might be security on my side. Will have to investigate a little bit more.
But fields are empty when sending but default php functions works. I never had any issues until the last patch ??
Thank you for working so hard.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] ACF Dynamic form – Map FieldHey hwk-fr,
I just send a little something via Ko-fi! Enjoy your coffee!
It’s me again. I’ve been having some issues with the custom hook to send an email.I am only trying to do a custom action if order_plan = yes { } do something + update field else return.
My wp email logs doesn’t even show anything when I use the hooks.. any help would be appreciated.
add_action('acfe/form/submit/request-map-info', 'my_form_custom_action', 10, 2); function my_form_custom_action($form, $post_id){ $my_post_field = get_field('order_plan', $post_id); if($my_field === 'no'){ return; } elseif ($my_field === 'yes') { $email = array('email'); $body_text = get_field('add_full_address', $post_id ); $to = $email; $headers = array('From: some name '.$email.' <noreply@'.$_SERVER['HTTP_HOST'].'>'); $subject = 'Testing Email 2020 ' . get_field('add_new_address', $post_id) . ' ' . get_field('client_name', $post_id); $message = $body_text; wp_mail($to, $subject, $message, $headers ); } ); }
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] ACFE form – Content FieldHello, sorry my explanation was pretty bad.
I’d like to take the Email Action and either add custom html header and footer ( that would be ideal ) to a section then add html in the middle.
Technically, I am trying to put the fields in a Table but only show the table when there is content in that table. I know I should use the wp_mail() hooks but if you have like 20 templates, management wise.. it can be a lot. Maybe i’m just lazy too lol. but i have about 20-30 fields being saved. I feel like that action could be more useful by adding a field.
{header} {custom_html_content} {footer}Please setup a way to get donation for all your efforts. This extended version can do magic!
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] ACF Dynamic form – Map FieldThank you so much! I was able to customize this perfectly! ACF extended is a must! Keep rocking my friend!
If you really want to remove the credits, function wp_credits () { } blank out between the brackets!
Not really recommended.