Support

Account

Home Forums Search Search Results for 'customizer'

Search Results for 'customizer'

reply

  • I’d love to see customizer integration.

  • I’m with the other posters here — the Options page, while great, represents more or less the “old way” of doing things. Not that there’s anything wrong with that; it’s what many tools have implemented, not just ACF. But WordPress is clearly pushing for the “new way,” which is the the customizer. Some sort of integration with its API, not only for Options but also for widget fields, would be great.

  • WP theme customizer support for ACF would be great

    cheers

  • Hi Elliot,

    Has there been any movement on tying the Options to the WordPress Theme Customizer?

    Using the Options for theme settings is great, thus far, but there is a degree of separation for users looking in two separate areas for theme settings in general.

    Thanks!

  • I decided I needed to get this working so I wrote a plugin to get the ball rolling.

    https://gist.github.com/fabrizim/9c0f36365f20705f7f73

    This plugin alters the storage of values for widgets to be more in line with how widget settings are natively stored. This allows for the customizer to work with ACF fields.

    I’m still testing, but it seems to be working. Elliot- let me know if you have a chance to review and if you think this approach will work.

  • Hi Elliot-

    Just following up on this. Are there plans to make ACF work with the Customizer? I’d love to use ACF for managing widget fields, but if it does not work in the Customizer, it may be too confusing for my clients.

    Thanks for the great plugin-
    Mark

  • Hi @domsayswow

    The ACF plugin does not integrate with the WP theme customizer.
    I hope that answers your question.

    If it’s any help, you can use the options-page add-on to create theme settings.

    Thanks
    E

  • Hi @slash_1968

    This is possible both with this plugin and default wordpress theme customizer

    You should add following codes before the loop. The 1st example is for theme customizer and the 2nd is for this plugin.

    <?php 
       $category_slug = get_theme_mod( 'your_field_id' );
       query_posts( array ( 'category_name' => $category_slug ) ); 
    ?>

    ———

    <?php 
       $category_slug = get_field( 'your_field_id' );
       query_posts( array ( 'category_name' => $category_slug ) ); 
    ?>
Viewing 8 results - 51 through 58 (of 58 total)