• Resolved NCroke221

    (@ncroke221)


    Hello,
    i have a problem with the footer on the theme Interface, I have looked through the .php files, including the footer.php and cannot find where to change the ‘Powered by: WordPress’ I will still give the credits for the theme to Theme horse as well.
    Website is: crokeystestsite.co.uk

    Hope someone can help.
    Thanks.

Viewing 15 replies - 1 through 15 (of 21 total)
  • Thread Starter NCroke221

    (@ncroke221)

    Problem resolved, found the solution in footer-extensions.

    Thanks.

    Hi NCroke221

    I’m working with the Interface theme too and have been having the same problem. I did not understand the footer_extensions part…..

    I found a way to get around it by hiding the visibility through the CSS file and then adding a text box through the Tidio Elements Visual Editor Plugin.

    It’s not a very elegant solution but at least it worked. Could you please explain exactly how you managed to solve this? I had been working for hours on this and was ready to give up ??

    Thanks

    try this 100% work

    create child theme
    in your /wp-content/themes/

    interface-child

    and create 2 file

    “style.css”
    copy and paste this code

    /*
    Theme Name: interface Child Theme
    Author: Self-Help WordPress User
    Template: interface
    */

    @import url(“../interface/style.css”);

    ………………………………………………

    “functions.php”
    copy and paste this code

    <?php

    // Remove old copyright text
    add_action( ‘init’ , ‘mh_remove_copy’ , 15 );
    function mh_remove_copy() {
    remove_action( ‘interface_footer’, ‘interface_footer_info’, 30 );
    }

    // Add my own copyright text
    add_action( ‘interface_footer’ , ‘mh_footer_info’ , 30 );
    function mh_footer_info() {
    $output = ‘<div class=”copyright”>’.’Copyright ? [the-year] [site-link] | Powered by: your text here ‘.'</div><!– .copyright –>’;
    echo do_shortcode( $output );
    }

    …………………………………………

    now log in your wordpress Dashboard go..> APPEARANCE -> THEMES AND ACTIVE INTERFACE CHILD THEME.

    …………………………………………<SMILE>
    IF have any questions ask me.

    I have made a child theme for interface – but it seems to lack the repsonive part and I have trouble making a functions file – could anybody guide a bit: communications.gullach.dk

    Thanks

    When placing a php file called functions with the code above it messes with my whole admin interface and places the code on top of the template site in the admin interface???

    hi,
    just
    create a child theme
    it is 100% work see my site datamiddle.com

    thanks a lot uddhab9

    welcome
    and visit my site datamiddle.com

    if you want email data

    thank you

    Hi uddhab9

    I am new to wordpress and not a hard coder. Can you confirm how you created columns in your website footer.

    I also want to display a contact form and custom text as well as menus in my footer and it should be in four columns. I am not getting any idea how to do this.

    Can you please tell me which plugin must be used? Or any peace of code would be of great help.

    Thanks in advance

    which theme you used on your site.

    Hi uddhab9,

    I am using interface theme. And I followed your method of creating child theme by creating two files style.css and functions.php

    My footer is updated but I don’t know why after activating child theme, My menus and submenus are jumbled and show altogether in my page.

    Any suggestions on that?

    Hi uddhab9,

    I got the answer regarding Menus and corrected it. Basically we have to go to Menus and click on primary Menu once again and save it.

    Can you please help me with footer. You have four columns in footer. I also want to have it like that.

    ya when you active activating child theme menus and submenus are jumbled,

    and yes you right it solve if you go to menu and save ti again as you want.

    i know interface theme only allow 3 columns in footer.

    i am busy now. i try to do it next day for you.

    Thank you so much. Even three columns can be manageable. I will wait for your reply or any link from where I can get the instructions.

    Thanks in advance.

    hi, try this.
    create a footer.php on your child theme then copy all code from parent then add this code.

    <div id=”footer-widgets” class=”full-container”>
    <?php
    $GLOBALS[‘post’] = get_post(my page id );
    echo apply_filters(‘the_content’, $GLOBALS[‘post’]->post_content);
    ?>
    </div><!– #footer-widgets –>

    then create a page and add your page id here “my page id”

Viewing 15 replies - 1 through 15 (of 21 total)
  • The topic ‘Problem with footer on theme interface’ is closed to new replies.