Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • 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
    In reply to: Fatal Error

    In Themes > Editor > header.php
    Look for get_header();
    Replace with wp_head();

    EDIT : Your website is now appearing correctly, Good job!

    Regards,
    RaidX

    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
    In reply to: User count Widget
    Thread Starter RaidX

    (@raidx)

    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)