rcgoncalves
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [RCG Forest] RCG Forest css not compatible with IECould 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).
Forum: Plugins
In reply to: [Co-Authors Plus] Possible bug in function coauthors__echoFWIW, 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 thertrim
, as there is text that needs to be removed. The problem was thatrtrim
was removing more text than it should.I’ve also noticed that the
$i->count() > 2
in the firstif
is useless with the change I made (if an element is neither the first nor the last, there are certainly more than 2 elements).Forum: Plugins
In reply to: [Co-Authors Plus] Add Contributor as co-authorYes, I have removed that capability of Contributors (and I added
edit_pages
instead). I will revert this config.Thanks for your help.
Forum: Themes and Templates
In reply to: [RCG Forest] RCG Forest sidebar becomes headerYou 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.
Forum: Themes and Templates
In reply to: How to keep Sidebar visibleActually, this was a design option.
To change this behavior, you should make the following changes:
– file single.php, line 3, replaceclass="onecolumn"
withclass="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.