threestyler
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem getting conditional statement to work in sidebarYou could try
if ( is_page('about')instead?Forum: Fixing WordPress
In reply to: Dreamweaver Cs5Forget dreamweaver for a minute what happens when you point your browser to http://localhost/quilldesigns ?
Looks like the abspath is incorrect, I’m assuming if you have WordPress correctly installed on your localhost then your theme is located at:
C:\xampp\htdocs\quilldesigns\wp-contents\themes\themename\index.php?I would try a combination of the following:
remove
./and see if it loads or addwordpresswith and without./before/wp-blog-header.phpie change line 17 to:require('wp-blog-header.php');require('./wordpress/wp-blog-header.php');require('wordpress/wp-blog-header.php');
Forum: Fixing WordPress
In reply to: FTP upload and downoad functionWordPress has the functionality to password posts built into the core and accessible from the write panel when creating a new post or page.
Otherwise there are plenty of additional plugins you can use to secure/lockdown/moderate your site.
Forum: Fixing WordPress
In reply to: How can I shorten the_title?This is one way of doing it:
<?php if (strlen($post->post_title) > 75) { echo substr(the_title($before = ”, $after = ”, FALSE), 0, 75) . ‘…’; } else { the_title(); } ?>Forum: Fixing WordPress
In reply to: Headers already sent (IE I hate you)Could be white space. I would check the functions.php in the active theme and make sure there are no spaces before the opening
<?phpor closing?>tags.Forum: Fixing WordPress
In reply to: 403 error after Chownopen .htaccess and delete anything related to wp supercache
If they link to malware/virus/phishing sites then it’s likely your site could be punished/de-indexed.
You wont get any page rank boost by linking to other sites, the links have to be to your site.
Forum: Fixing WordPress
In reply to: Damn SpamTry reading:
wpbeginner.com/beginners-guide/vital-tips-and-tools-to-combat-comment-spam-in-wordpress
Forum: Fixing WordPress
In reply to: RSS feeds not workingDid they work? Do you have pretty permalinks? Have you tried disabling them and deleting the .htaccess?
Forum: Plugins
In reply to: Include Custom Fields in RSS Feed?This should do what you need, otherwise it’s customisable to fit your needs.
http://justintadlock.com/archives/2008/01/27/custom-fields-for-feeds-wordpress-plugin
Forum: Fixing WordPress
In reply to: Need help reset password AND email addressForum: Installing WordPress
In reply to: WP crashed, impossible to log on WPdelete the
.htaccessfile failing that in phpmyadmin follow these instructions and make sure your blog url matches your wordpress location:Forum: Fixing WordPress
In reply to: Convert out accented characters from the_titleWordPress has a function for this
<?php remove_accents( $string ) ?>Forum: Fixing WordPress
In reply to: Publishing Date Shows 20 Days LaterTake a look in wp-admin/settings/general and see what the time/date settings are and if they also show as 20 days ahead?
Forum: Themes and Templates
In reply to: Customized Theme & CSSYou need to convert your template into a WordPress theme, basically replacing static code with wordpress dynamic functions.
There are quite a few tutorials available:
http://thethemefoundry.com/blog/html-wordpress/
http://max.limpag.com/2006/09/01/video-tutorial-wordpress-theme/
http://codex.wordpress.org/Theme_Development