I uploaded and activated the elbee child theme, activated it, went to the function.php tab and all there was is: <?php
I then added: remove_action( 'lblg_after_itemtext', 'lblg_post_info' ); before and after it and it did not work... I also added: remove_action( 'lblg_after_itemtext', 'lblg_post_info' );
function npat_unplug_lblg_post_info(){
remove_action( 'lblg_after_itemtext', 'lblg_post_info' );
add_action( 'lblg_after_itemtext', 'lbc_post_info' );
}
add_action( 'init', 'npat_unplug_lblg_post_info');
function lbc_post_info(){
if( !is_page() ) { ?>
<span class="postcats">Posted in <?php the_category(', '); ?></span>
<?php } ?>
<?php if( is_single() ){?>
<span class="posttags"><?php the_tags('Tagged as: ',','); ?></span>
<?php }
}
Before and after, and saved it and it still did not work... on the older version of elbee elgee you didn't have to do all of this... any suggestions on what's missing? everytime I follow your directions, it doesnt work on my site...