jeric2k5
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Dropdown Menu Not Working..I figured this out. The theme was built using an older version of the JQuery Library, and since it uses the one that ships with WordPress, the theme was incompatible with the newer JQuery library. Fixed this by finding version 1.5 and adding it, then referencing the theme to the older library.
Forum: Themes and Templates
In reply to: Homepage Title not displaying on my themeaIf that isn’t changing anything, you can manually change this. Go into Appearance > Editor. Then in the right hand column look for a “header.php” file. Click on that file. Then search for the <TITLE> tag. Replace what’s inbetween the tags with what you want to name your blog.
Also, if you want the Settings to change it, replace what’s inside the tag with this..
<?php bloginfo(‘name’); ?> .So it should look like this
<title><?php bloginfo('name'); ?></title>
Forum: Themes and Templates
In reply to: Homepage Title not displaying on my themeThe <TITLE> tags are used within the <HEAD> tags, not the <BODY>. To change the <TITLE> you would go to the General Settings tab and change the “Site Title”.
Forum: Themes and Templates
In reply to: Homepage Title not displaying on my themeWhat do you mean by homepage title? In the General Settings tab, you can change your “Site Title”. Is that what you’re referring to?
Forum: Themes and Templates
In reply to: Help PleaseAre those files already on your hosting server? If you’re trying to link the files, you would have to go to your WordPress Admin.. Then Apperance > Editor. After, go to the “header” and add your links to the javascript and css within the header of your current theme.
Hope this helps.
Forum: Fixing WordPress
In reply to: Wordpres not sending out Email Notification? Godaddy, IIS7I installed wordpress automatically through GoDaddy and its still giving me the mail() function error. I submitted an email to them to see whats up.
Anything else I could try? And the site is at https://www.ericmendes.com if you want to check it out and register to see if you get an email.
Thanks!
Forum: Fixing WordPress
In reply to: can’t loginForum: Fixing WordPress
In reply to: Wordpres not sending out Email Notification? Godaddy, IIS7Thanks, but I would like to be able to use ASP.NET and PHP at the same time. I’m actually going to try their “Quick Install” application for WordPress, and if the emails work there then I know it should be able to.
Any other suggestions would be great!
Forum: Fixing WordPress
In reply to: New Install of WordPress 2.5.1 Dashboard very slowEDIT:
It seems as if the culprit of my slow dashboard was indeed the RSS feeds. As of yet, I have no idea why my feeds slow down my dashboard but it doesn’t for others? (just a guess).
So this is what I did, for any future people who may have this issue. I simply went into the wp-admin folder and opened up “index-extra.php” in Dreamweaver (you can do this in Notepad or any other WYSIWYG app).
All you have to do is commment out the 4th line (place // infront of it) so it reads
// require_once (ABSPATH . WPINC . '/rss.php');
I’ll repost if I figure out how to get the feeds without it slowing down my dashboard.