Hi,
1) In widget areas, some functionality is lost, for example, SUBMIT buttons from several different type of plugins are altered, or sometimes links dont even show up properly.
Find tis code in the core.php(\library\tfuse_framework\functions) file:
remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'my_formatter', 99);
and replace with:
//remove_filter('the_content', 'wpautop');
//remove_filter('the_content', 'wptexturize');
//add_filter('the_content', 'my_formatter', 99);
2) The recent comments widget looks completely different with weird characters and improperly highlighted links.
This is the design set to the Life&Style theme, you can edit the style with css if you want a different look.
3) the author page (the page when you click on an author, has the slider widget, and I have no way of removing it.
4. The Slider is also on the TAG page now
Find this code in the style.css:
.popular_box {
position: relative;
z-index: 1;
padding: 15px 0;
background: url(images/top_carousel_bg.jpg) center 0 no-repeat;
width: 960px;
height: 183px;
}
and replace with this code:
.popular_box {
position: relative;
z-index: 1;
padding: 15px 0;
background: url(images/top_carousel_bg.jpg) center 0 no-repeat;
width: 960px;
height: 183px;
display: none;
}
Cheers,
George
Add Reply
You must log in to post.