Rahul Sonar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove Related Links on WordPress 2.9.2yes, I also think so. Try deactivating Google PageSyndication. Also, try changing the theme.
Forum: Plugins
In reply to: FormBuilder get_currentuserinfoI just downloaded and checked this plugin. I am not sure, but I think you need to add this code in main formbuilder.php file. The mail function is called on line 1285. You can try in this area.
Forum: Plugins
In reply to: FormBuilder get_currentuserinfoif the user is logged in, you can get the user id using the below code:
global $current_user; get_currentuserinfo(); $user_id = $current_user->user_ID;
Now, when the form is sent, you can save the current time in wp_usermeta table. Use like this:
$current_time = time(); update_usermeta($user_id, 'form_sent_at', $current_time);
Forum: Fixing WordPress
In reply to: Password protected pages not workingIs wordpress saving password for your posts ?
In wp_posts table, check this field: post_password. There should be the password you have entered for your post. If it is not saved properly, try adding manually in database..
Also, make sure you upgraded properly ( I mean you didnt miss any file from the new installation)..
Forum: Fixing WordPress
In reply to: envoke 404 manualymiqrogroove
Yes, you are absolutely correct. We use it like this:
if(have_posts())
{
.. do something
}
else
{
include(TEMPLATEPATH . ‘/404.php’);
}Forum: Installing WordPress
In reply to: E-mails not received for commentsconsult your host and ask if the php’s mail function is enabled on the server. If not, you will need to use SMTP authentication to receive mails:
Forum: Fixing WordPress
In reply to: How to insert ‘leave a comment’ form in postsat the bottom of your single.php (or index.php, or any other template you want), please this code:
<?php comments_template(); ?>
Forum: Fixing WordPress
In reply to: In-browser FTP appletyou can use php upload script..
Forum: Fixing WordPress
In reply to: Custom Permalinks for PostsYes, you can edit permalink for every post, but the standard format will be fixed.
Like, if you have permalink structure %postname%, your links will be as follows:
https://yourdomain.com/your-post-title-here/
Here, you can edit this part: your-post-title-here/
and make it anything like: anything-that-I-like/
Forum: Fixing WordPress
In reply to: date (year) messed up, formate incorrectF j, Y
Or go to your database:
wp-options table. Search this entry: option_name = date_format and change the value there.. Or provide an example link here..
Forum: Fixing WordPress
In reply to: Cannot even enter admin tool at this point. PLEASE HELP!I will not charge you, but can sort your issues. Contact me at rahul.soni149[AT]gmail[DOT]com
Forum: Fixing WordPress
In reply to: [Plugin:Simple Video Embedder WordPress plugin] Not workingbump
Forum: Fixing WordPress
In reply to: Issue with InstallationI am having the same issue.. have you got the solution?