|
|
|
 |

02-11-2010, 02:00 AM
|
|
Newbies
|
|
Join Date: Dec 2009
Posts: 11
Thanks: 3
Thanked 0 Times in 0 Posts
Reputation: 10
|
|
Remove link in Mystique footer
Hi
please help me removing the footer of Mystique template. I spent 2 hours and nothing!!
the url in footer is: wpburn.com
I tried removing the footer but i canīt.
The url of the theme is :
Footer
PHP Code:
<?php /* Mystique/digitalnature */ ?>
<!-- foooter -->
<div id="footer">
<?php
$jquery = get_mystique_option('jquery');
// at least 1st footer area must have widgets
if (is_sidebar_active('footer-1')):
$sidebar2 = is_sidebar_active('footer-2');
$sidebar3 = is_sidebar_active('footer-3');
$sidebar4 = is_sidebar_active('footer-4');
?>
<!-- blocks + slider -->
<div id="footer-blocks" class="page-content <?php if(($sidebar2 || $sidebar3 || $sidebar4) && $jquery) echo 'withSlider'; ?>">
<?php if(($sidebar2 || $sidebar3 || $sidebar4) && $jquery): ?>
<!-- block navigation -->
<div class="slide-navigation">
<a href="#" class="previous"><span>previous</span></a>
<a href="#" class="next"><span>next</span></a>
</div>
<!-- /block navigation -->
<?php endif; ?>
<!-- block container -->
<div class="slide-container clearfix">
<ul class="slides">
<!-- slide (100%) -->
<li class="slide slide-1 page-content">
<div class="slide-content">
<ul class="blocks widgetcount-<?php $sidebars_widgets = wp_get_sidebars_widgets(); echo count($sidebars_widgets['footer-1']); ?>">
<?php dynamic_sidebar('footer-1'); ?>
</ul>
</div>
</li>
<!-- /slide -->
<?php if($sidebar2): ?>
<!-- slide (100%) -->
<li class="slide slide-2 page-content">
<div class="slide-content">
<ul class="blocks widgetcount-<?php $sidebars_widgets = wp_get_sidebars_widgets(); echo count($sidebars_widgets['footer-2']); ?>">
<?php dynamic_sidebar('footer-2'); ?>
</ul>
</div>
</li>
<!-- /slide -->
<?php endif; ?>
<?php if($sidebar3): ?>
<!-- slide (100%) -->
<li class="slide slide-3 page-content">
<div class="slide-content">
<ul class="blocks widgetcount-<?php $sidebars_widgets = wp_get_sidebars_widgets(); echo count($sidebars_widgets['footer-3']); ?>">
<?php dynamic_sidebar('footer-3'); ?>
</ul>
</div>
</li>
<!-- /slide -->
<?php endif; ?>
<?php if($sidebar4): ?>
<!-- slide (100%) -->
<li class="slide slide-4 page-content">
<div class="slide-content">
<ul class="blocks widgetcount-<?php $sidebars_widgets = wp_get_sidebars_widgets(); echo count($sidebars_widgets['footer-4']); ?>">
<?php dynamic_sidebar('footer-4'); ?>
</ul>
</div>
</li>
<!-- /slide -->
<?php endif; ?>
</ul>
</div>
<!-- /block container -->
<?php if($sidebar2 || $sidebar3 || $sidebar4): ?>
<div class="leftFade"></div>
<div class="rightFade"></div>
<?php endif; ?>
</div>
<!-- /blocks + slider -->
<?php endif; ?>
<div class="page-content">
<div id="copyright">
<?php echo do_shortcode(stripslashes(get_mystique_option('footer_content'))); ?>
<script type="text/javascript">
/* <![CDATA[ */
var isIE6 = false;
var isIE = false;
var lightbox = <?php echo get_mystique_option('lightbox') ?>;
var ajaxComments = <?php echo get_mystique_option('ajax_commentnavi') ?>;
var redirectReadMore = <?php echo get_mystique_option('read_more') ?>;
/* ]]> */
</script>
<!--[if lte IE 6]> <script type="text/javascript"> isIE6 = true; isIE = true; </script> <![endif]-->
<!--[if gte IE 7]> <script type="text/javascript"> isIE = true; </script> <![endif]-->
<?php wp_footer(); ?>
</div>
</div>
</div>
<!-- /footer -->
</div>
</div>
<!-- /shadow -->
<?php if($jquery): ?>
<!-- page controls -->
<div id="pageControls"></div>
<!-- /page controls -->
<?php endif; ?>
<!-- <?php echo get_num_queries(); ?> queries. <?php timer_stop(1); ?> seconds. -->
</div>
</body>
</html>
Index
PHP Code:
<?php
/* Mystique/digitalnature */
get_header();
?>
<!-- main content: primary + sidebar(s) -->
<div id="main">
<div id="main-inside" class="clearfix">
<!-- primary content -->
<div id="primary-content">
<?php
if (have_posts()):
while (have_posts()):
the_post();
include(TEMPLATEPATH . '/post.php');
endwhile; ?>
<div class="page-navigation clearfix">
<?php if(function_exists('wp_pagenavi')): wp_pagenavi(); else: ?>
<div class="alignleft"><?php next_posts_link(__('« Older Entries','mystique')) ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »','mystique')) ?></div>
<?php endif; ?>
</div>
<?php else: ?>
<h1 class="title error"><?php _e("No posts found","mystique"); ?></h1>
<p><?php _e("Sorry, but you are looking for something that isn't here.","mystique"); ?></p>
<?php endif; ?>
</div>
<!-- /primary content -->
<?php get_sidebar(); ?>
</div>
</div>
<!-- /main content -->
<?php get_footer(); ?>
shortcodes
PHP Code:
<?php /* Mystique/digitalnature */
// output a arbitrary widget
function sc_widget($atts){
global $wp_widget_factory;
extract(shortcode_atts(array(
'class' => FALSE
), $atts));
ob_start();
$class = wp_specialchars($class);
if (!is_a($wp_widget_factory->widgets[$class], 'WP_Widget')):
$wp_class = 'WP_Widget_'.ucwords(strtolower($class));
if (!is_a($wp_widget_factory->widgets[$wp_class], 'WP_Widget')):
return '<p class="error">'.sprintf(__("%s: Widget class not found. Make sure this widget exists and the class name is correct","mystique"),'<strong>'.$class.'</strong>').'</p>';
else:
$class = $wp_class;
endif;
endif;
$instance = array(); // other attributes
foreach($atts as $att=>$val):
if ($att!="class") $instance[wp_specialchars($att)]=wp_specialchars($val);
endforeach;
$id = $class;
$classname = $wp_widget_factory->widgets[$class]->widget_options['classname'];
if(!$classname) $classname = $id;
if(isset($instance['widget_id'])) $id= $instance['widget_id'];
the_widget($class, $instance, array('widget_id'=>'arbitrary-instance-'.$id,'before_widget' => '<div class="arbitrary-block block-'.$classname.'">','after_widget' => '</div>','before_title' => '<h2 class="title">','after_title' => '</h2>'));
$output = ob_get_contents();
ob_end_clean();
return $output;
}
// based on the register template from the Hybrid theme, by Justin Tadlock
function sc_register_form($atts){
extract(shortcode_atts(array(
'align' => 'left',
'inline' => 0
), $atts));
require_once(ABSPATH.WPINC.'/registration.php');
$registration = get_option('users_can_register');
$labels = array(
'user-name' => __('User name (required)', 'mystique'),
'url' => __('Website', 'mystique'),
'pass1' => __('Password (required)', 'mystique'),
'pass2' => __('Verify password (required)', 'mystique'),
'email' => __('E-mail (required)', 'mystique'),
'first-name' => __('First name', 'mystique'),
'last-name' => __('Last name', 'mystique'),
'description' => __('Profile info', 'mystique'),
);
/* If user registered, input info. */
if ('POST' == $_SERVER['REQUEST_METHOD'] && !empty($_POST['action']) && $_POST['action'] == 'adduser'):
$userdata = array(
'user_pass' => esc_attr($_POST['pass1']),
'user_login' => ($_POST['user-name'] != $labels['user-name']) ? esc_attr($_POST['user-name']) : '',
'user_url' => ($_POST['url'] != $labels['url']) ? esc_attr($_POST['url']) : '',
'user_email' => ($_POST['email'] != $labels['email']) ? esc_attr($_POST['email']) : '',
'first_name' => ($_POST['first-name'] != $labels['first-name']) ? esc_attr($_POST['first-name']) : '',
'last_name' => ($_POST['last-name'] != $labels['last-name']) ? esc_attr($_POST['last-name']) : '',
'description' => ($_POST['description'] != $labels['description']) ? esc_attr($_POST['description']) : '',
'role' => get_option('default_role'),
);
$valid = (!username_exists($userdata['user_login']) && !email_exists($userdata['user_email']) && $userdata['user_login']) && ($userdata['user_email']) && ($_POST['pass1']) && ($_POST['pass1'] == $_POST['pass2']);
if ($valid):
$new_user = wp_insert_user($userdata);
else:
if (!$userdata['user_login']) $error = __('Please type a user name', 'mystique');
elseif (username_exists($userdata['user_login'])) $error = __('User name already exists','mystique');
elseif (!$userdata['user_email']) $error = __('E-mail address is required.', 'mystique');
elseif (email_exists($userdata['user_email'])) $error = __('E-mail address already in use','mystique');
elseif (!$_POST['pass1']) $error = __('You must enter a password.', 'mystique');
elseif (!$_POST['pass2']) $error = __('Please verify the password', 'mystique');
elseif ($_POST['pass1'] !== $_POST['pass2']) $error = __('Passwords do not match', 'mystique');
else $error = __('User registration failed. Please try again.', 'mystique');
endif;
endif;
$jquery = get_mystique_option('jquery');
ob_start(); ?>
<?php if(!$inline): ?><div class="clearfix"><?php endif; ?>
<div class="form register align<?php echo wp_specialchars($align); ?>">
<?php if (is_user_logged_in() && !current_user_can('create_users')) : ?>
<p class="error">
<?php printf(__('You are logged in as <a href="%1$s" title="%2$s">%2$s</a>. You don\'t need another account :)', 'mystique'), get_author_posts_url($curauth->ID), $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Log out of this account', 'mystique'); ?>"><?php _e('Logout »', 'mystique'); ?></a>
</p>
<?php elseif ($new_user): ?>
<p class="altText">
<?php
if (current_user_can('create_users')) printf(__('A user account for %1$s has been created.', 'mystique'), '<strong>'.$_POST['user-name'].'</strong>');
else printf(__('Thank you for registering, %1$s.', 'mystique'), $_POST['user-name']);
?>
</p>
<?php else:
if ($error): ?><p class="error"><?php echo $error; ?></p><?php endif;
if ($registration || current_user_can('create_users')): ?>
<form method="post" id="adduser" action="http://<?php echo $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>">
<fieldset>
<div class="row">
<?php if(!$jquery): ?><label for="user-name"> <?php echo $labels['user-name']; ?> </label><?php endif; ?>
<input class="text <?php echo (!$_POST['user-name'] || wp_specialchars($_POST['user-name']) == $labels['user-name']) ? 'clearField' : ''; ?>" name="user-name" type="text" size="30" id="user-name" value="<?php echo $error ? wp_specialchars($_POST['user-name'], 1) : ($jquery ? $labels['user-name'] : ''); ?>" />
</div>
<div class="row">
<?php if(!$jquery): ?><label for="first-name"> <?php echo $labels['first-name']; ?> </label><?php endif; ?>
<input class="text <?php echo (!$_POST['first-name'] || wp_specialchars($_POST['first-name']) == $labels['first-name']) ? 'clearField' : ''; ?>" name="first-name" type="text" size="30" id="first-name" value="<?php echo $error ? wp_specialchars($_POST['first-name'], 1) : ($jquery ? $labels['first-name'] : ''); ?>" />
</div>
<div class="row">
<?php if(!$jquery): ?><label for="last-name"> <?php echo $labels['last-name']; ?> </label><?php endif; ?>
<input class="text <?php echo (!$_POST['last-name'] || wp_specialchars($_POST['last-name']) == $labels['last-name']) ? 'clearField' : ''; ?>" name="last-name" type="text" size="30" id="last-name" value="<?php echo $error ? wp_specialchars($_POST['last-name'], 1) : ($jquery ? $labels['last-name'] : ''); ?>" />
</div>
<div class="row">
<?php if(!$jquery): ?><label for="email"> <?php echo $labels['email']; ?> </label><?php endif; ?>
<input class="text <?php echo (!$_POST['email'] || wp_specialchars($_POST['email']) == $labels['email']) ? 'clearField' : ''; ?>" name="email" type="text" size="30" id="email" value="<?php echo $error ? wp_specialchars($_POST['email'], 1) : ($jquery ? $labels['email'] : ''); ?>" />
</div>
<div class="row">
<?php if(!$jquery): ?><label for="url"> <?php echo $labels['url']; ?> </label><?php endif; ?>
<input class="text <?php echo (!$_POST['url'] || wp_specialchars($_POST['url']) == $labels['url']) ? 'clearField' : ''; ?>" name="url" type="text" size="30" id="url" value="<?php echo $error ? wp_specialchars($_POST['url'], 1) : ($jquery ? $labels['url'] : ''); ?>" />
</div>
<?php if (apply_filters('show_password_fields', true)): ?>
<div class="row">
<?php if(!$jquery): ?><label for="pass1"> <?php echo $labels['pass1']; ?> </label><?php else: ?><input class="password label hidden clearField" type="text" value="<?php echo $labels['pass1']; ?>" size="30" alt="pass1" /><?php endif; ?>
<input class="password text" name="pass1" size="30" type="password" id="pass1" />
</div>
<div class="row">
<?php if(!$jquery): ?><label for="pass2"> <?php echo $labels['pass2']; ?> </label><?php else: ?><input class="password label hidden clearField" type="text" value="<?php echo $labels['pass2']; ?>" size="30" alt="pass2" /><?php endif; ?>
<input class="password text" name="pass2" size="30" type="password" id="pass2" />
</div>
<?php endif; ?>
<div class="row">
<?php if(!$jquery): ?><label for="description"> <?php echo $labels['description']; ?> </label><?php endif; ?>
<textarea class="textarea <?php echo (!$_POST['description'] || wp_specialchars($_POST['description']) == $labels['description']) ? 'clearField' : ''; ?>" name="description" id="description" rows="10" cols="50"><?php echo $error ? wp_specialchars($_POST['description'], 1) : ($jquery ? $labels['description'] : ''); ?></textarea>
</div>
<div class="row">
<?php echo $referer; ?>
<input name="adduser" type="submit" id="addusersub" class="submit button" value="<?php if (current_user_can('create_users')) _e('Add User', 'mystique'); else _e('Register', 'mystique'); ?>" />
<?php wp_nonce_field('add-user') ?>
<input name="action" type="hidden" id="action" value="adduser" />
</div>
</fieldset>
</form>
<?php endif; ?>
<?php endif; ?>
</div>
<?php if(!$inline): ?></div><?php endif; ?>
<?php
$output = ob_get_contents();
ob_end_clean();
return $output;
}
function sc_googlechart($atts){
extract(shortcode_atts(array(
'data' => '',
'colors' => '',
'size' => '400x200',
'bg' => 'ffffff',
'title' => '',
'labels' => '',
'advanced' => '',
'type' => 'pie'
), $atts));
switch ($type) {
case 'line': $charttype = 'lc'; break;
case 'xyline': $charttype = 'lxy'; break;
case 'sparkline': $charttype = 'ls'; break;
case 'meter': $charttype = 'gom'; break;
case 'scatter': $charttype = 's'; break;
case 'venn': $charttype = 'v'; break;
case 'pie': $charttype = 'p3'; break;
case 'pie2d': $charttype = 'p'; break;
default: $charttype = $type; break;
}
if ($title) $string .= '&chtt='.$title.'';
if ($labels) $string .= '&chl='.$labels.'';
if ($colors) $string .= '&chco='.$colors.'';
$string .= '&chs='.$size.'';
$string .= '&chd=t:'.$data.'';
$string .= '&chf='.$bg.'';
return '<img title="'.wp_specialchars($title).'" src="http://chart.apis.google.com/chart?cht='.wp_specialchars($charttype).''.wp_specialchars($string).wp_specialchars($advanced).'" alt="'.wp_specialchars($title).'" />';
}
function sc_queryposts($atts){
extract(shortcode_atts( array(
'category_id' => '',
'category_name' => '',
'tag' => '',
'day' => '',
'month' => '',
'year' => '',
'count' => '5',
'author_id' => '',
'author_name' => '',
'order_by' => 'date',
), $atts));
$output = '';
$query = array();
if ($category_id != '') $query[] = 'cat=' .$category_id;
if ($category_name != '') $query[] = 'category_name=' .$category_name;
if ($tag != '') $query[] = 'tag=' . $tag;
if ($day != '') $query[] = 'day=' . $day;
if ($month != '') $query[] = 'monthnum=' . $month;
if ($year != '') $query[] = 'year=' . $year;
if ($count) $query[] = 'posts_per_page=' .$count;
if ($author_id != '') $query[] = 'author=' . $author_id;
if ($author_name != '') $query[] = 'author_name=' . $author_name;
if ($order_by) $query[] = 'orderby=' . $order_by;
ob_start();
$backup = $post;
$posts = new WP_Query(implode('&',$query));
while ($posts->have_posts()):
$posts->the_post();
include(TEMPLATEPATH . '/post.php');
endwhile;
$post = $backup;
wp_reset_query();
$output = ob_get_contents();
ob_end_clean();
return $output;
}
// member/visitor only content - based on http://justintadlock.com/archives/2009/05/09/using-shortcodes-to-show-members-only-content
function sc_memberonlycontent($atts, $content = null){
if (is_user_logged_in() && !is_null($content) && !is_feed()) return (!detectWPMU() || detectWPMUadmin()) ? $content : wp_specialchars($content);
return '';
}
function sc_visitoronlycontent($atts, $content = null){
if ((!is_user_logged_in() && !is_null($content)) || is_feed()) return (!detectWPMU() || detectWPMUadmin()) ? $content : wp_specialchars($content);
return '';
}
function sc_subscribe_rss(){
return '<a class="rss-subscribe" href="'. get_bloginfo('rss2_url') .'" title="'. __('RSS Feeds','mystique') .'">'. __('RSS Feeds','mystique') .'</a>';
}
function sc_tinyurl($atts){
extract(shortcode_atts(array(
'url' => '',
'title' => '',
'rel' => 'nofollow'
), $atts));
if(!$title) $title = $url;
return '<a href="'.wp_specialchars(getTinyUrl($url)).'" rel="'.wp_specialchars($rel).'">'.wp_specialchars($title).'</a>';
}
// ads
function sc_advertisment($atts){
extract(shortcode_atts(array(
'code' => 1,
'align' => 'left',
'inline' => 0
), $atts));
$ad = get_mystique_option('ad_code_'.$code);
if(!empty($ad)):
$ad = '<div class="ad align'.wp_specialchars($align).'">'.$ad.'</div>';
if(!$inline) $ad = '<div class="clearfix">'.$ad.'</div>';
return $ad;
else:
return '<p class="error">'.sprintf(__("Empty ad slot (#%s)!","mystique"),wp_specialchars($code)).'</p>';
endif;
}
function sc_go_to_top(){
return sprintf('<a id="goTop" class="js-link">'.__('Top','mystique').'</a>');
}
function sc_theme_link(){
return sprintf('<a class="theme-link" href="%1$s" title ="Mystique %2$s" rel="designer">Mystique</a>', THEME_URI, THEME_VERSION);
}
function sc_credit(){
return sprintf(__('%1$s theme by %2$s | Powered by %3$s', 'mystique'), '<abbr title="'.THEME_NAME.'/'.THEME_VERSION.'">Mystique</abbr>','<a href="http://digitalnature.ro">digitalnature</a>', '<a href="http://wordpress.org/">WordPress</a>');
}
function sc_copyright() {
return sprintf('<span class="copyright"><span class="text">%1$s</span> <span class="the-year">%2$s</span> <a class="blog-title" href="%3$s" title="%4$s">%4$s</a></span>',
__('Copyright ©', 'mystique'),
date('Y'),
get_bloginfo('url'),
get_bloginfo('name'));
}
function sc_wp_link(){
return '<a class="wp-link" href="http://WordPress.org/" title="WordPress" rel="generator">WordPress</a>';
}
// login
function sc_login_link(){
if (is_user_logged_in()) return sprintf('<a class="login-link" href="%1$s">%2$s</a>',admin_url(),__('Site Admin'));
else return sprintf('<a class="login-link" href="%1$s">%2$s</a>',wp_login_url(),__('Log in'));
}
// blog title
function sc_blog_title(){
return '<span class="blog-title">' . get_bloginfo('name') . '</span>';
}
// validate xhtml
function sc_validate_xhtml(){
return '<a class="valid-xhtml" href="http://validator.w3.org/check?uri=referer" title="Valid XHTML">XHTML 1.1</a>';
}
// validate css
function sc_validate_css(){
return '<a class="valid-css" href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS">CSS 3.0</a>';
}
function sc_theme_name(){ return THEME_NAME; }
function sc_theme_author(){ return THEME_AUTHOR; }
function sc_theme_uri(){ return THEME_URI; }
add_shortcode('widget','sc_widget');
add_shortcode('register_form','sc_register_form');
add_shortcode('googlechart', 'sc_googlechart');
add_shortcode('query', 'sc_queryposts');
add_shortcode('member', 'sc_memberonlycontent');
add_shortcode('visitor', 'sc_visitoronlycontent');
add_shortcode('rss', 'sc_subscribe_rss');
add_shortcode('tinyurl', 'sc_tinyurl');
add_shortcode('ad', 'sc_advertisment');
add_shortcode('top', 'sc_go_to_top');
add_shortcode('theme-link', 'sc_theme_link');
add_shortcode('credit', 'sc_credit');
add_shortcode('copyright', 'sc_copyright');
add_shortcode('wp-link', 'sc_wp_link');
add_shortcode('login-link', 'sc_login_link');
add_shortcode('blog-title', 'sc_blog_title');
add_shortcode('xhtml', 'sc_validate_xhtml');
add_shortcode('css', 'sc_validate_css');
add_shortcode('theme-name', 'sc_theme_name');
add_shortcode('theme-author', 'sc_theme_author');
add_shortcode('theme-uri', 'sc_theme_uri');
add_filter('widget_text', 'do_shortcode'); // Allow [SHORTCODES] in Widgets
?>
|

02-11-2010, 06:32 PM
|
|
Newbies
|
|
Join Date: Dec 2009
Posts: 11
Thanks: 3
Thanked 0 Times in 0 Posts
Reputation: 10
|
|
Re: Remove link in Mystique footer
Anyone knows?
|

02-11-2010, 06:51 PM
|
|
Newbies
|
|
Join Date: Nov 2009
Posts: 29
Thanks: 2
Thanked 0 Times in 0 Posts
Reputation: 10
|
|
Re: Remove link in Mystique footer
Hi login to your wordpress admin then go to appearance menu then select mystque settings. You will see general tab and in the bottom of page you see text area that says Footer content. In this text area you will see [credit] remove it or replace with your text.
Hope it should work.
|

02-11-2010, 07:03 PM
|
|
Newbies
|
|
Join Date: Dec 2009
Posts: 11
Thanks: 3
Thanked 0 Times in 0 Posts
Reputation: 10
|
|
Re: Remove link in Mystique footer
hi, thanks for the reply, the [credit] is removed but the code seems appear in my footer of the mystique template.
Here is the code that appear:
PHP Code:
href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a>Plugin by wpburn.com <a href="http://wpburn.com">wordpress themes</a></div><!--[if !IE]>-->
</object> <!--<![endif]-->
I cant decrypt where the code is placed.
|

02-11-2010, 07:33 PM
|
|
Junior Member
|
|
Join Date: Dec 2008
Posts: 110
Thanks: 94
Thanked 162 Times in 23 Posts
Reputation: 13
|
|
Re: Remove link in Mystique footer
Quote:
Originally Posted by Megabyte12
I cant decrypt where the code is placed.
|
this might help, I found this one a wp help forum. ????
Find your index.php find the line that says
<?php get_footer(); ?>
Above and below it place some marker text like this
<!-- Evil Footer Devil FOUND -->
<?php get_footer(); ?>
<!-- Evil Footer Devil BEGONE -->
Now visit your blog, view source, and copy the HTML from between the two markers. Rename your footer.php and make a new copy with that HTML code.
Change it to your hearts content. Remember to insert the <?php wp_footer(); ?> before </body> tag.
|

02-11-2010, 07:40 PM
|
|
Registered Member
|
|
Join Date: Jun 2009
Posts: 81
Thanks: 32
Thanked 10 Times in 8 Posts
Reputation: 14
|
|
Re: Remove link in Mystique footer
Quote:
Originally Posted by tee1
this might help, I found this one a wp help forum. ????
Find your index.php find the line that says
<?php get_footer(); ?>
Above and below it place some marker text like this
<!-- Evil Footer Devil FOUND -->
<?php get_footer(); ?>
<!-- Evil Footer Devil BEGONE -->
Now visit your blog, view source, and copy the HTML from between the two markers. Rename your footer.php and make a new copy with that HTML code.
Change it to your hearts content. Remember to insert the <?php wp_footer(); ?> before </body> tag.
|
+rep
This is exactly how you should do it. I've done this on other themes successfully every time. You should own your own footer!!
|

02-11-2010, 10:15 PM
|
|
Newbies
|
|
Join Date: Dec 2009
Posts: 11
Thanks: 3
Thanked 0 Times in 0 Posts
Reputation: 10
|
|
Re: Remove link in Mystique footer
Ok, i will install wordpres in localhost and try this.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|