uddhab9
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Interface] Problem with footer on theme interfaceForum: Themes and Templates
In reply to: [Vantage] Creating a 4 Column Footerhi,
try this plugin
http://shibashake.com/wordpress-theme/wordpress-custom-widgets-pluginForum: Themes and Templates
In reply to: [Interface] Problem with footer on theme interfacehi, 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”
Forum: Themes and Templates
In reply to: [Interface] Problem with footer on theme interfaceya 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.
Forum: Themes and Templates
In reply to: [Interface] Problem with footer on theme interfacewhich theme you used on your site.
Forum: Themes and Templates
In reply to: [Interface] Problem with footer on theme interfacewelcome
and visit my site datamiddle.comif you want email data
thank you
Forum: Themes and Templates
In reply to: [Interface] Problem with footer on theme interfacehi,
just
create a child theme
it is 100% work see my site datamiddle.comForum: Themes and Templates
In reply to: [Interface] Problem with footer on theme interfacetry 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.