Forum Replies Created

Viewing 3 replies - 16 through 18 (of 18 total)
  • Using newest version 2.0, and I’m experiencing the same issues.

    I 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.

    This 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(); ?>
Viewing 3 replies - 16 through 18 (of 18 total)