• Forum
  • FAQ
  • Docs
Notice: In order to post a support question you have to have an account and be logged in.
Register  or  Login
  1. I have several issues with the theme and I figured I would share them all at once. I have included screenshots

    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.

    2) The recent comments widget looks completely different with weird characters and improperly highlighted links.

    3) the author page (the page when you click on an author, has the slider widget, and I have no way of removing it.

    Please help me fix these issues.

    Otherwise, the theme has been great.

    Attachments

    1. Author_Page.png (259.6 KB, 139 downloads) 1 year old
    2. Recent_Comments_Widget.png (27.4 KB, 149 downloads) 1 year old
    3. Submit.png (32.6 KB, 138 downloads) 1 year old
    DoctorT
    1 year ago
  2. The Slider is also on the TAG page now

    Attachments

    1. Tag_Pages.png (272.5 KB, 137 downloads) 1 year old
    DoctorT
    1 year ago
  3. 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

    George
    1 year ago

Add Reply

You must log in to post.

 

Add a new topic!

Chances are your issue is already answered, but if it’s not, you can always create a new topic.

Add new topic

Search forums

Searching for something specific? Type something and press Enter to search.