Q: “How can I remove the ‘Posted by admin on (date) edit this entry’ ? I don’t want that to show on my page.”

A:

  1. Make sure you’re using a child theme (see above).
  2. Edit your child theme’s functions.php
  3. Add this to the bottom of functions.php:


function lbc_unplug_lblg_post_info(){
remove_action( 'lblg_after_itemtext', 'lblg_post_info' );
}
add_action( 'init', 'lbc_unplug_lblg_post_info');

4 Comments

Add Yours

Thanks for the info. So I’ve now made my “Child Theme” uploaded it and get this message:

Broken Themes

The following themes are installed but incomplete. Themes must have a stylesheet and a template.
Name Description
Elbee-Elgee Child The parent theme is missing. Please install the “Elbee Elgee” parent theme.

The Elbee Elgee theme is the one that’s activated.
Still can’t get it to work. In my child theme I have a style.css and a functions.php Any ideas? Thanks for helping me.

Kyle:
You need to have both Elbee Elgee and Elbee Child installed, in /wp-content/themes/elbee-elgee/ and /wp-content/themes/elbee-child/, respectively.

Leave a Reply