• Resolved stallionmark

    (@stallionmark)


    I just discovered Advanced Custom Fields: Extended. Wow! You’ve done an amazing job @hwk-fr. Thank you so much.

    So, I’m building a plugin and I’ve purchased ACF Pro and am including it in my plugin. They have an article for how to do that – ACF | Including ACF with a plugin .

    I’d like to include Advanced Custom Fields: Extended with my plugin too. Is that possible? Can you point to a post that explains how to that can be done?

    Cheers! Mark

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    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.

    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    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!

    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    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.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Include ACF: Extended with a plugin’ is closed to new replies.