Title: RaidX's Replies | WordPress.org

---

# RaidX

  [  ](https://wordpress.org/support/users/raidx/)

 *   [Profile](https://wordpress.org/support/users/raidx/)
 *   [Topics Started](https://wordpress.org/support/users/raidx/topics/)
 *   [Replies Created](https://wordpress.org/support/users/raidx/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/raidx/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/raidx/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/raidx/engagements/)
 *   [Favorites](https://wordpress.org/support/users/raidx/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [All pages have the same title](https://wordpress.org/support/topic/all-pages-have-the-same-title/)
 *  [RaidX](https://wordpress.org/support/users/raidx/)
 * (@raidx)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/all-pages-have-the-same-title/#post-1712364)
 * Not really.
 * In Theme editor > Header.php
 * Look for the title tags
    Remove it and replace with
 * `<title><?php echo ($title = wp_title('–', false, 'right')) ? $title : ''; ?>
   <?php echo ($description = get_bloginfo('description')) ? $description : bloginfo('
   name'); ?></title>`
 * Regards,
    RaidX
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Fatal Error](https://wordpress.org/support/topic/fatal-error-217/)
 *  [RaidX](https://wordpress.org/support/users/raidx/)
 * (@raidx)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/fatal-error-217/#post-1712724)
 * In Themes > Editor > header.php
    Look for get_header(); Replace with wp_head();
 * EDIT : Your website is now appearing correctly, Good job!
 * Regards,
    RaidX
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: WP News Slider] Remove blank <h2> Widget Title](https://wordpress.org/support/topic/plugin-wp-news-slider-remove-blank-lth2gt-widget-title/)
 *  [RaidX](https://wordpress.org/support/users/raidx/)
 * (@raidx)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/plugin-wp-news-slider-remove-blank-lth2gt-widget-title/#post-1499881)
 * Look for
 *     ```
       echo $before_widget;
        echo $before_title;?>
        <?php echo $after_title;
        echo wpnewsslider_getwidget();
        echo $after_widget;
       ```
   
 * Replace with
 *     ```
       echo $before_widget;
         echo $before_title;
       ?>
       <span id="newssection">News box</span>
   
       <?php
         echo $after_title;
         echo wpnewsslider_getwidget();
         echo $after_widget;
       ```
   
 * that how i fix Title problem
 * The h2 tag will now have a title in between it.
 * Think the plug-in has not been updated in ages otherwise this simple problem 
   should have been fixed, I am no expert in plug-in’s or PHP far from it but even
   I found problem within 5 minutes and fixed it as above.
 * I use this on my website and it works great with no problems at all.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [User count Widget](https://wordpress.org/support/topic/user-count-widget/)
 *  Thread Starter [RaidX](https://wordpress.org/support/users/raidx/)
 * (@raidx)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/user-count-widget/#post-1657969)
 * You rock i used Execute php plugin to add php to the widgets
    and it works PERFECT!!
 * I found something similar but was messy code so i didn’t want to use this is 
   nice and clean..
 * Thanks again man been bashing my head on wall trying to get it to work and display
   correctly.

Viewing 4 replies - 1 through 4 (of 4 total)