Len
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Are there WordPress video tutorials?I’m not aware of any “official” videos but have you checked out this site?
Forum: Fixing WordPress
In reply to: Strange error on my siteYour theme’s searchform.php uses this function …
<?php the_search_query(); ?>which I believe was introduced in WordPress 2.1 and I see you’re using 2.0.11Try changing that to
<?php echo attribute_escape($s); ?>You’ll probably have to consult the Codex regarding the use of template tags as there may be more of them in that theme which are not compatible with the version of WP you’re using.
Forum: Themes and Templates
In reply to: Need helps in the comment sectionNobody can edit your post except for you. You are the only one who will see that “edit the post” link when you are logged in.
Forum: Themes and Templates
In reply to: how to make an encrypted linkanyone can tell me how to encrypt the links in the footer?
For all the preaching I and everyone else does about avoiding using themes using obfuscated code and you want to learn how to do it? Good luck finding an answer here. BTW, once you figure it out be sure to leave a download link to the new theme so that I can tell everyone to avoid it like the black plague.
Forum: Fixing WordPress
In reply to: PermalinkWhat theme are you using?
Forum: Fixing WordPress
In reply to: Accidentally gave WordPress New Directory, now can’t access.I cannot say anything that hasn’t already been posted by Podz. The instructions provided are very clear complete with screenshots.
Forum: Fixing WordPress
In reply to: Accidentally gave WordPress New Directory, now can’t access.Forum: Fixing WordPress
In reply to: Permalink<?php the_permalink() ?>is what you’re looking for. In most themes it is tied to the post title something like …<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title() ?></a>If you don’t want the permalink tied to the post title then it’s rather simple to modify the above and manually slip it into your post somewhere such as the end.
Forum: Installing WordPress
In reply to: Why dosent this site Work!?how do i log into my PHP ?
Through whatever web interface your host has provided such as cPanel.
Forum: Installing WordPress
In reply to: Can I change directories?Read carefully before attempting it.
Forum: Installing WordPress
In reply to: Why dosent this site Work!?How to undo your booboo.
Forum: Everything else WordPress
In reply to: how much for a good theme?There are a number of free magazine-style themes in this thread. You’ll find more if you search for “magazine-style themes” or “non-blog themes” or something along those lines. You can also check out wpmagthemes.com which features both free and paid mag-style themes.
Forum: Installing WordPress
In reply to: I’m a NewbieIf your blog is a self-hosted WordPress blog plugins are uploaded to your wp-contents/plugins folder. If you’re using wordpress.COM then you can’t use plugins. WordPress.COM has its own support forums.
Forum: Fixing WordPress
In reply to: clean out the databaseYou can clean out the wp_options table manually or, if you’re not comfortable doing that you can try the Clean Options Plugin.
Forum: Themes and Templates
In reply to: Changing ThemesWithout seeing the problem in action its very difficult to troubleshoot. What exactly are you doing?