PlugPress.com
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: login form and registrationWhat you want to achieve is not possible ‘out of the box’. You’ll need one or more plugin to achieve that.
I suggest you take a look at BuddyPress:
http://buddypress.org/Forum: Fixing WordPress
In reply to: RSS Feed in new windowIf you are creating a link from your WordPress admin in a post or page, simply click on the “Open in new window” option.
Otherwise, if you are asking for HTML for a widget (html text):
<a href="http://rachellecunydesign.com/?feed=rss2" target="_blank">My RSS</a>Forum: Fixing WordPress
In reply to: How do you use esc_html for form inputs?What problem does it cause ?
If you are using the variable in a form, it’s probably in an <input> attribute, so you should check
esc_attrwhich is used to escape html in an atribute.E.g.
<input type="text" name="myfield" value="<?php echo esc_attr($string); ?>" />Forum: Everything else WordPress
In reply to: Apache is working page – Shows Instead of IndexDid you clear your cache ? Did you try with a different browser ?
I remember having this issue once after going the the url, getting that page as there is nothing installed. Then I installed the page and went back to the URL but I kept getting redirected to the page you are talking.
Just hope your configuration is good. Otherwise, hard to tell.
Forum: Fixing WordPress
In reply to: RSS Feed in new windowYou already have one!
Forum: Everything else WordPress
In reply to: Where are my emails sent to?You need to be more specific. Where does that form come from ?
Do you use a plugin ?
Forum: Everything else WordPress
In reply to: Install in root or in subdirectory?¿ Which is betterThere is no good or bad answer here.
I like to put it in the “root” as you call it because I do not have any reason to create a subfolder. That said, if it creates confusion for you… do what’s best for you.
I really think you’re the only one that could find pros/cons of doing it in a way or another.
Forum: Everything else WordPress
In reply to: Closing my accountSimply stop using it.
Forum: Fixing WordPress
In reply to: Dashboard/interface broken!!I am afraid that this is not a simple problem that can be answered in a few lines.
There are so many possibilities. Did you try to flush the cache of your browser ? Do you see any error message ?
Otherwise, I suggest you find an expert to take a look at your problem.
Forum: Fixing WordPress
In reply to: Error 404 Plz help!!Are your files still where they should be ?
Did you change something about your domain (like DNS) ?Did you contact your web host ?
Forum: Fixing WordPress
In reply to: Unable to login to blog, but can login to databaseReseting the web interface login password can be done by editing the database itself (not the values in the wp-config.php file).
Please take a look at this page:
http://codex.ww.wp.xz.cn/Resetting_Your_PasswordForum: Everything else WordPress
In reply to: How would this affect PR (page-rank) score?When possible, you should avoid duplicate content. If you do not have a logical reason to duplicate the content, I suggest you simply don’t do it.
Forum: Everything else WordPress
In reply to: How to extract text from wordpress for translationFirst, is your template ready for translation ? If it is, simply run PoEdit in your theme’s directory to get all phrases for translation.
To answer all your questions regarding translation (Localization and Internalization), I suggest you visit this page:
http://codex.ww.wp.xz.cn/Translating_WordPressIt contains all you need to proceed!
Forum: Everything else WordPress
In reply to: Sell Site using Buddy Press WordPressYou can sell it and you can keep all the money!
Both WordPress and BuddyPress are GPL… basically meaning they are free and give you the freedom to do (almost) everything you want.
Forum: Fixing WordPress
In reply to: Custom Select queryWhen debugging a query like this one, I always suggest that you start little and go bigger and bigger.
Start with only your “select * from ” and add only one left join and see if the result is what you expect. Then add another element and so on.
The thing is that you say you’re doing a “custom query” but there is no way to help you as we do not know what your query is doing. Debugging the way I told you is the best way to learn by yourself!
I hope it helped!