Hello Stallion!
I’m glad you enjoy ACF Extended 🙂
I haven’t explored yet the possibility to include ACF Extended in a plugin/theme just like ACF Pro does. In terms of licencing, there’s no problem you can go ahead.
However I think it will require some tweaks, to make it work correctly. Someone reported me a detection problem on ACF Extended plugin if ACF Pro is included in plugin/theme.
I’ll check this out ASAP, and let you know what’s up!
Regards.
Im having the same issue here, but I want to include it in a theme instead of a plugin. If I include acfe in the theme with acf there are no errors but nothing from acfe is showing.
Im tweaking things to make it work but still can’t.
ACFE brings ACF to the next level so It would be nice to have this working.
Any help would be really apreciated.
Hello!
Just to let you know that the latest ACF Extended 0.8.4 Update includes this feature!
You can now bundle ACF Extended in your theme using the same logic as ACF. Here is the code you can include your functions.php file:
define('MY_ACFE_PATH', get_stylesheet_directory() . '/acf-extended/');
define('MY_ACFE_URL', get_stylesheet_directory_uri() . '/acf-extended/');
include_once(MY_ACFE_PATH . 'acf-extended.php');
add_filter('acf/settings/acfe/url', 'my_acfe_settings_url');
function my_acfe_settings_url($url){
return MY_ACFE_URL;
}
Regards.
Works great, many thanks!
Hello,
Awesome! If you enjoy ACF Extended, feel to write a review, it always helps and it’s much appreciated 🙂
Have a nice day!
Regards.