Support

Account

Home Forums Bug Reports Fields double when clicking on category post

Solved

Fields double when clicking on category post

  • Hello !

    I’ve got a bug with ACF since few days.
    When I create a new post when i check a category or add a tag, the custom field start to show in double !

    Anyone got the same kind of problem ?

    Thanks

    Ben

  • Hi @benbelek

    I cannot seem to reproduce this issue on my end. Please check for conflicts by deactivating all other installed plugins and switching to one of the stock WP themes. You can also use this plugin for troubleshooting: https://wordpress.org/plugins/health-check/

  • Hi James,

    Thanks I found where the problem comes from, it was in my file functions.php, this script :

    function retire_ver_cssjs( $src ) {
    if( strpos( $src, '?ver=' ) )
    $src = remove_query_arg( 'ver', $src );
    return $src;
    }
    add_filter( 'style_loader_src', 'retire_ver_cssjs', 10, 2 );
    add_filter( 'script_loader_src', 'retire_ver_cssjs', 10, 2 );

    Bye

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

The topic ‘Fields double when clicking on category post’ is closed to new replies.