3r1c
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: SimpleMap] Changing the default country & map page id's.Using newest version 2.0, and I’m experiencing the same issues.
Forum: Plugins
In reply to: [Plugin: WP-Cufon] Didn’t work for meI think the problem may be that for your h2 (website copywriting), you’ve made it a link. Try removing the link (a tag) from inside your h2, to see if that solves your problem.
Forum: Fixing WordPress
In reply to: How to remove RSS links from Meta Widget in 2.8This totally worked.
Edited /wp-includes/default-widgets.php file at line 296
Original code<?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php echo esc_attr(__('Syndicate this site using RSS 2.0')); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li> <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php echo esc_attr(__('The latest comments to all posts in RSS')); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li> <li><a href="https://www.ads-software.com/" title="<?php echo esc_attr(__('Powered by WordPress, state-of-the-art semantic personal publishing platform.')); ?>">www.ads-software.com</a></li> <?php wp_meta(); ?>
Edited version commented-out unwanted code
<?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <!-- <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php echo esc_attr(__('Syndicate this site using RSS 2.0')); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li> <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php echo esc_attr(__('The latest comments to all posts in RSS')); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li> <li><a href="https://www.ads-software.com/" title="<?php echo esc_attr(__('Powered by WordPress, state-of-the-art semantic personal publishing platform.')); ?>">www.ads-software.com</a></li> --> <?php wp_meta(); ?>