Any help would be greatly appreciated.
]]>
function prepare_custom_html($value, $post_id, $field){
$custom_html = trim(get_field('acfe_form_custom_html', $post_id));
if($value === false && !empty($custom_html))
$value = true;
return $value;
}
This is the template I’m using :
<?php
/**
* Template Name: Custom Template with ACF Form
*/
get_header();
acfe_form('create-job-template'); // Form ID
get_footer();
?>
Not sure if is a development issue or I’m doing something wrong.
Many thanks
I have created a FORM to “Register Property” (enter data from the Frontend); uploading Images with the Gallery module, but it doesn’t work for me!!!
I leave you the LINK with a video so you can see the problem:
Is there any way you can support me?
]]>I am looking for a way to show filled in repeater field forms in a table wich is send by email.
As example:
Product | Price per piece | Amount
Product 1 | 1,55 | 2
Product 2 | 2,65 | 3
etc.
‘|’ represents table cell divider
Hope someone knows a way to get this done.
Thanks in advance!
I’m using the same form multiple times on a page which works fine except that my Success Message shows up on all forms rather than only on the form that was submitted.
How would I create unique ID for each form and then limit its Success Message to the same form.
FWIW, I’m calling the form with a shortcode and I could add a parameter like this:
[acfe_form name="test" form_number="x"]
where x would be different each time I call the form.
[acfe_form name="my-form" my_data="abc"]
I can use {form:my_data}
in the UI for Post action/Save to set say, Post content
How can I use {form:my_data}
in the UI to set one of my ACF fields?
Cheers, Richard
]]>I went trough docs and tried many exmaples but couldn’t get it to work.
Basically here is what I need
– Custom post type with some ACF data
– one of which is like member email
– On that single page those fields are accessible via get_field and are dynamic based on page.
I have an ACFE form on that page, and I want the TO: email be dynamic based on that email field from ACF, how can I easily achieve that?
]]>acf.addAction('acfe/save_term', function(){
alert('save_term');
});
This code doesn’t work
]]>I try to activate the module: Single Meta by adding the code below to my theme functions. But the 'acfe/modules/single_meta'
in the ACFE settings page keeps showing false
.
add_action('acf/init', 'my_acfe_modules');
function my_acfe_modules(){
// Enable Single Meta Save
acfe_update_setting('modules/single_meta', true);
// tried this too: acfe_update_setting('acfe/modules/single_meta', true);
}
]]>