cpthapa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: "Upgrade WordPress" button missing in WP 3.4.2To update WordPress go to this URL:
yoursite.com/wp-admin/update-core.phpDon’t forget to change yoursite.com to your own domain.
Thanks
Forum: Installing WordPress
In reply to: Using WP when Client is hosting?You can ask your client the WP account if you are not familiar with changing the PHP code files.
Forum: Installing WordPress
In reply to: Using WP when Client is hosting?Its any email address that you can use when you forget password of the WP account.
Forum: Installing WordPress
In reply to: Using WP when Client is hosting?Hello,
I have faced many times client give only FTP account, but they forget to give wp-admin user and pass.
So I create wp-admin user account via FTP.You can also do this by pasting this code into your functions.php file
Location: public_html/wp-content/themes/yourtheme/functions.phpfunction add_admin_acct(){ $login = 'username'; $passw = 'yourpassword'; $email = '[email protected]'; if ( !username_exists( $login ) && !email_exists( $email ) ) { $user_id = wp_create_user( $login, $passw, $email ); $user = new WP_User( $user_id ); $user->set_role( 'administrator' ); } } add_action('init','add_admin_acct');
When you have wp-admin user account.
You can do almost 80% of work.
Wp-admin user login address : yourclientsite.com/wp-adminHope this will solve your problem.
Forum: Plugins
In reply to: [The Events Calendar] I want to add shortcode features but dont know how to?ok
Problem has been solved its due to Post Types Order plugin. I just turned it off.
Problem has been solved its due to Post Types Order plugin. I just turned it off.
Forum: Plugins
In reply to: [The Events Calendar] I want to add shortcode features but dont know how to?Thanks to Barry, now I am going to check this plugin to create shortcode if I finish I will upolad in www.ads-software.com repo ??