Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #119412
    naomiverlin
    Participant

    I am trying to replace the current footer text – however my line is showing up beneath everything and still has the default footer. When I remove some code, the entire black box disappears. How do I edit the footer? Thanks

    Current Code:

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the #content div and all content after
    *
    * @package Create
    */
    ?>

    <?php
    /**
    * create_before_footer hook
    *
    * @hooked create_content_end – 10
    *
    */
    do_action( ‘create_before_footer’ );
    ?>

    <?php
    /**
    * create_footer hook
    *
    * @hooked create_footer_start – 10
    * @hooked create_footer_info – 20
    * @hooked create_footer_end – 50
    * @hooked create_page_end – 100
    *
    */
    do_action( ‘create_footer’ );
    ?>

    <p>Copyright © 2017 | Cozza Investment Group, Inc | All Rights Reserved</p>

    <?php wp_footer(); ?>

    </body>
    </html>

    #119419
    tikaram
    Keymaster

    @naomiverlin : Please download the child theme from this link and do your customizations. If you are editing the parent theme your customization will be lost in next theme update. Please follow the instructions about creating child theme before editing the theme.
    Copy the footer.php file from parent theme to your child theme folder and do the customization on your child theme. Let me know if you need further assistance.

    Regards,
    Tikaram

    #119422
    tikaram
    Keymaster

    @naomiverlin : You may Upgrade to Pro version where the option to customize the footer is available.

    Regards,
    Tikaram

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Edit Footer’ is closed to new replies.