breaks layouts – removed functions
-
FYI :
I use this plugin on 4 sites. It breaks the layout on 1 of these 4.I traced it down to the custom functions/filters that alter the excerpts.
On my site removing these functions solved my layout problems.:function qaplus_auto_excerpt_more( $more ) { // return ' …' . qaplus_continue_reading_link(); } add_filter( 'excerpt_more', 'qaplus_auto_excerpt_more' );and
function qaplus_custom_excerpt_more( $output ) { if ( has_excerpt() && ! is_attachment() ) { // $output .= qaplus_continue_reading_link(); } return $output; } add_filter( 'get_the_excerpt', 'qaplus_custom_excerpt_more' );both can be found around line 200 in functions.php
I still have a conflict on 1 of the 4 sites where clicking on a faq-title does not slide the answer in place but instead takes it to a new page.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘breaks layouts – removed functions’ is closed to new replies.