Forum Replies Created

Viewing 5 replies - 16 through 20 (of 20 total)
  • Theme Author rcgoncalves

    (@rcgoncalves)

    Could provide some details about the issues you noted in IE?

    The theme provides CSS specific to IE7 and IE8. I briefly tested those versions of IE, and I though I had fixed all bugs. I’ve just briefly checked IE10, and it seems OK too (I don’t have IE11 installed, so I didn’t check it).

    Thread Starter rcgoncalves

    (@rcgoncalves)

    FWIW, here is how I fixed the bug:

    // Append separators
    if ( ! $i->is_first() && ! $i->is_last() && $i->count() > 2 )
        $output .= $separators['between'];
    
    if ( $i->is_last() && $i->count() > 1 ) {
        $output .= $separators['betweenLast'];
    }

    I added the ! $i->is_last() in the previous conditional. I guess not adding the separator at all provides a more robust solution than removing it later.

    EDIT:
    I cannot simply remove the rtrim, as there is text that needs to be removed. The problem was that rtrim was removing more text than it should.

    I’ve also noticed that the $i->count() > 2 in the first if is useless with the change I made (if an element is neither the first nor the last, there are certainly more than 2 elements).

    Thread Starter rcgoncalves

    (@rcgoncalves)

    Yes, I have removed that capability of Contributors (and I added edit_pages instead). I will revert this config.

    Thanks for your help.

    Theme Author rcgoncalves

    (@rcgoncalves)

    You can get your sidebar back going to “Appearance > Widgets”. On bottom, you have the “Inactive Widgets”, that contains the widgets you had in the sidebar before (with their configs saved). You just have to drag those widgets to the sidebar widget area (that you have on right on that screen).

    What you see as a header should be a menu (a new feature added in RCG Forest 2). To delete it, you should go to “Appearance > Menus”, where you can delete the menu.

    Actually, this was a design option.

    To change this behavior, you should make the following changes:
    – file single.php, line 3, replace class="onecolumn" with class="twocolumns"
    – file single.php, at the end, before <?php get_footer(); ?>, add <?php get_sidebar(); ?>
    – file header.php, at the end, replace <div id="page" <?php if(!is_single()) {?> class="imagebg"<?php }?>> with <div id="page" class="imagebg">

    I think this should be enough.

Viewing 5 replies - 16 through 20 (of 20 total)