• Hello, I’m a first time user for WP, please somebody can help me on these-
    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
    2. How to put rotating pictures on the main page? Like the demo do?

    Again thank you so much on giving your ideas, I hope I will continue enjoy WP experience!

    David

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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.

    Thread Starter webuser2017

    (@webuser2017)

    Thanks stephencottontail for your prompt reply! Problem solved!

    Thread Starter webuser2017

    (@webuser2017)

    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="https://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.

    Thread Starter webuser2017

    (@webuser2017)

    Wow! Thanks again stephencottontail! I appreciate it!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘First time user’ is closed to new replies.