1. On the main page, right hand side, how to modify the [email protected] and tel # and address? I can’t find them in dashboard
Dashboard > Appearance > Theme Options > Header and fill out the fields “Adress” [sic], “Mail”, and “Phone”.
2. How to put rotating pictures on the main page? Like the demo do?
Dashboard > Appearance > Theme Options > Slider. You’ll need to click on the red “minus” icons that appear on the lower left side of each image before you’ll see the appropriate form to upload your own images.
Thanks stephencottontail for your prompt reply! Problem solved!
What about the footer “Proudly powered by WordPress & Kindergarten WordPress Theme by Dinozoom.”
How to change it?
That requires a bit more work. You should make a child theme to do this, as otherwise your changes would be lost if the theme is ever updated in the future.
Once you’ve made your child theme, you should copy footer.php from the parent theme to the child theme’s folder and then edit that file and replace lines 16-21:
<?php printf( __( 'Proudly powered by %s', 'kindergarten' ), 'WordPress' ); ?>
<span class="sep"> & </span>
<?php printf(
__( '%1$s by %2$s.', 'kindergarten' ),
__('Kindergarten WordPress Theme', 'kindergarten'),
'<strong><a href="http://dinozoom.com/">'.__('Dinozoom', 'kindergarten' ).'</a></strong>' ); ?>
with the appropriate information.
As a side note, due to the way that WordPress saves your theme’s options, you’ll likely have to set up the slider and your contact information again once you switch to the child theme.
Wow! Thanks again stephencottontail! I appreciate it!