nsathees
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can i do custom form with field when values will be chechedso you know how to save the Personal ID to table and read them? If yes use AJAX to check the value on leaving the input Box. I suggest AJAX as the person has to fill some other data to the form as well.
if you don’t know how to save and read the personal ID, check this out!
http://codex.wordpress.org/Class_Reference/wpdbForum: Fixing WordPress
In reply to: where to edit….sorry I don’t understand that language. But I guess it is the read more tag you want to edit. If YES here is the help!
Forum: Fixing WordPress
In reply to: Please help to understandyou are going to kinder garden and trying pass the uni exams!
Do you know php? if yes create your own theme!Forum: Fixing WordPress
In reply to: Getting post_parent when single posts are listed on a pagetry
if($post->post_parent){
$parent = get_post_ancestors($post->ID);
}and get the permalink to that!
Forum: Fixing WordPress
In reply to: 'Home' above my home buttonfind <div id=”navigation”>
it’s in there.hint: likely to find within header.php file
Forum: Fixing WordPress
In reply to: How to increase content areain style.css adjust the line 84 and 88
#content { margin: 0 325px 0 5px; }decrease 325px and decrease the same at width: 280px below. top is line 84 and bottom is line 88
#primary, #secondary { float: right; overflow: hidden; width: 280px; padding: 30px 20px 10px 20px; }Forum: Fixing WordPress
In reply to: Mobile version of a websiteI think you will have to modify the theme of the plug-in as the mobile version need to have different setup theme. Example: flexible width.
Forum: Fixing WordPress
In reply to: Retrieving post from old blogdid you back up the database? if yes then setup WP on localhost and import that DB backup. Then export the post from wp-admin and import it to your new online WP.
Forum: Fixing WordPress
In reply to: help with recent post from specific category PHP codecheck this out
http://codex.wordpress.org/Function_Reference/in_categoryForum: Fixing WordPress
In reply to: Slow for 2 minsDo you know why your question did not get any response? That’s because there is not enough information.
Tell us what version of WordPress your are running and what are the plug-ins used. Also some details of the theme you are using. How big is your database? what is your hosting configuration? Etc etc.
Then someone could help you to pin point the problem.
Forum: Installing WordPress
In reply to: Error establishing a database connectionHave you started the mySQL server? Can do that from XAMPP control center.
since you can create database, I assume that the MySQL is running. Try using the user as root and the respective password.
Forum: Hacks
In reply to: Add id="" to thumbnails in indexWhy do you need to add id? You can access it with the parent tag.
for example if the code looks like this . . .<div id="post"> <img class="alignleft size-thumbnail wp-image-104" title="my_image" src="my_image-150x150.jpg" alt="" width="150" height="150" /> </div>Then you can access it by
#post img{width=200px;}Forum: Installing WordPress
In reply to: Command to install WP on linux computer, not working.WordPress is OS independent CMS. All is need is a database, web server with PHP.
Under Linux install the LAMP stack. Then Install phpmyadmin. create a database using phpmyadmin. edit the wp-config.php file.copy all the file to the web server’s root dir (most probably under var/www/)
Then open the Chromium (OR Firefox) and type http://localhost.
Follow the on screen instructions.Forum: Hacks
In reply to: Custom Fields and Shortcode together on Functions.phpwhy not write the code directly in the template?
First check ob the custom field exist, and if yesecho '[' . $customfield . ']';Forum: Hacks
In reply to: Move posts category to an other one in a specific period timeif you could let us know why you want to do that, then we may be able to tell you a solution!