Support

Account

Forum Replies Created

  • Hi there,

    i would also like this feature to be in the main acf product, i use rgba loads.

    i am using the rgba plug-in but it has stopped working i keep getting RGBA(,,,R)in all the fields that are using it.

    If anyone has a fix for it please let me know asap, happy to pay.

  • hi there,

    i am trying to get this to function to work, i have called the Field ‘blocktitle’

    i have added the following function to the function.php, what do i have to do next to make it work? the documentation is not clear

    function my_acf_flexible_content_layout_title( $title, $field, $layout, $i ) {

    // remove layout title from text
    $title = ”;

    // load sub field image
    // note you may need to add extra CSS to the page t style these elements
    $title .= ‘<div class=”thumbnail”>’;

    if( $image = get_sub_field(‘image’) ) {

    $title .= ‘‘;

    }

    $title .= ‘</div>’;

    // load text sub field
    if( $text = get_sub_field(‘text’) ) {

    $title .= ‘<h4>’ . $text . ‘</h4>’;

    }

    // return
    return $title;

    }

    // name
    add_filter(‘acf/fields/flexible_content/layout_title/name=my_flex_field’, ‘my_acf_flexible_content_layout_title’, 10, 4);

Viewing 2 posts - 1 through 2 (of 2 total)