Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Ok just edit this lines in wp-better-attachments.php and you can call from the template using:

    wpatt_content_filter();

    Edit
    Line 73

    add_filter('the_content', 'wpatt_content_filter');
    
    function wpatt_content_filter($content)

    change for

    //add_filter('the_content', 'wpatt_content_filter');
    
    $content=get_the_content();
    function wpatt_content_filter()

    Line 195:

    $content .= apply_filters( 'wpatt_list_html', $content_l );

    change for

    $content =apply_filters( 'wpatt_list_html', $content_l );
    echo $content;

    Thread Starter gtuxyco

    (@gtuxyco)

    Good, thanks you earn 5 star in fast response!
    ??

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