Hi,
For the date and author, try adding the following to your child theme CSS file.
.entry-meta {
display: none;
}
Hi TimothyPaul,
Hope everything’s working well for you.
Thought of providing a solution to your “phone number cutting off issue”, but when I visit your site, it’s showing an error in database connection.
screenshot http://prntscr.com/8jgts3
Looking forward to your reply.
Thanks!
Denzel
Hi Menaka – Where would I fin the “child theme” CSS – I see lots of CSS files, but none labeled child theme.
Hi Denzel – yes – this is on a developer server that can be flaky, sorry. Every two hours or so, I need to go in and restart the apache service.
Thanks….TP
Hmmm – so I found – http://codex.wordpress.org/Child_Themes
and followed the directions but my child theme is showing up empty
here is my PHP code in functions.php
———————————–
<?php // Opening PHP tag – nothing should be before this, not even whitespace
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
function theme_enqueue_styles() {
$parent_style = ‘parent-style’;
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style )
);
}
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );