PHP Fatal error: Uncaught Error: Call to undefined function seedprod_lite_get_acf_option_fields() in /Users/briannehinchliffe/Sites/nhcrafts/app/public/wp-content/plugins/coming-soon/resources/views/builder.php:605
Stack trace:
#0 /Users/briannehinchliffe/Sites/nhcrafts/app/public/wp-content/plugins/coming-soon/app/routes.php(272): require_once()
#1 /Users/briannehinchliffe/Sites/nhcrafts/app/public/wp-includes/class-wp-hook.php(324): seedprod_lite_builder_page('')
#2 /Users/briannehinchliffe/Sites/nhcrafts/app/public/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters('', Array)
#3 /Users/briannehinchliffe/Sites/nhcrafts/app/public/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
#4 /Users/briannehinchliffe/Sites/nhcrafts/app/public/wp-admin/admin.php(259): do_action('seedprod_page_s...')
#5 {main}
thrown in /Users/briannehinchliffe/Sites/nhcrafts/app/public/wp-content/plugins/coming-soon/resources/views/builder.php on line 605
I tried this on multiple sites with ACF Pro installed and the issue persists. Deactivating ACF Pro does fix the issue.
]]>can this be done?
]]>How can I fix this?
]]>Now I think that nobody minds a little advertising here and there, but when my site uses 1 Fieldgroup and the rest of the screen is taken up by lila and gradient blue advertising then things become irritating fast!
Also what gives you the right to take over the admin footer? I urge you to at the very least make a filter available where the user can bring back its own admin footer!
screenshot to show advertising and kidnapping of admin footer
]]>Weird thing is I have a license for ACF?PRO with the current version being 6.2.1.1 if I downloaded directly from the advancedcustomfields.com website. But through the WordPress dashboard the latest version says 5.7.7.
After updating both plugin, I get this error message on top “ACF Content Analysis for Yoast SEO requires Advanced Custom Fields (free or pro) 6.0.0. or higher to be installed and activated.
Anyone can please help?
]]>(a) Existing posts created with Avada Theme Builder. Here, everything (layout and content) is stored in the same post and can only be changed manually per post;
b) Existing posts created via a custom backend. The individual fields are output via a global layout from the ATB.
c) New posts, which are created via the own backend.
If I now try to filter out the corresponding data and fill in the fields in the backend, this only works partially.
This is now an example code, which I use for different fields:
// Import data for field "Domainname"
function load_domainname($value, $post_id, $field) {
if (get_field('new_backend', $post_id) != 1 && get_post_status($post_id) == 'publish') {
if (get_field('domain', $post_id)) {
return get_field('domain', $post_id);
} else {
return get_the_title();
}
}
}
add_filter('acf/load_value/name=domainname', 'load_domainname', 10, 3);
If I have scenario A and want to edit A, the fields are filled in correctly.
If I have scenario C, then no fields are filled in – which is also correct, since nothing is available.
But if I have scenario B, then the corresponding field is emptied. The existing entry is then no longer present.
All attempts to query beforehand whether the field to be filled in already has a value end in a fatal error.
Example:
// Import data for field "Domainname"
function load_domainname($value, $post_id, $field) {
$domain = get_field('domainname', $post_id);
if ($domain == '') {
if (get_field('new_backend', $post_id) != 1 && get_post_status($post_id) == 'publish') {
if (get_field('domain', $post_id)) {
return get_field('domain', $post_id);
} else {
return get_the_title();
}
}
}
}
add_filter('acf/load_value/name=domainname', 'load_domainname', 10, 3);
Does anyone have a solution for this problem?
]]>Any idea how I can make the icon visible?
Have read here that there are partial problems with other themes/plugins.
But I can’t disable ATB or ACF.
]]>