RaidX
Forum Replies Created
-
Forum: Themes and Templates
In reply to: All pages have the same titleNot 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,
RaidXForum: Themes and Templates
In reply to: Fatal ErrorIn Themes > Editor > header.php
Look for get_header();
Replace with wp_head();EDIT : Your website is now appearing correctly, Good job!
Regards,
RaidXForum: Plugins
In reply to: [Plugin: WP News Slider] Remove blank <h2> Widget TitleLook 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 WidgetYou 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.