askwhyweb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Modification in wp_create_user() methodNo I don’t think this is enough to complete my requirement i had found else which is actually for what i need. I had fixed my problem using
https://blog.2i2j.com/plugins/wp-user-registrationRegards,
Farhan IslamForum: Fixing WordPress
In reply to: Fatal error: Call to undefined function the_post_thumbnail()Neddy no needs to thanks, Just keep sharing your knowledge with pplz is a good habit. Also wordpress says “Code is poetry” and i really believe in this =)
Regards,
Farhan IslamForum: Developing with WordPress
In reply to: Using PHP in WordPressHi there all,
i am looking for some function using which the default user registeration pattern can be changed, i.e. when new user try to create a user by default wordpress ask a username and email. and sends the password to the user given email.
i need to have function to enter their password manually rather then randomly generated password
My question how to sort this out? Does WordPress have any quick edit for this rather than changing wp-login.php to get this functionality.
Shall be very thankful.
I had posted this question in “How to and troubleshoot” but no buddy answered it.Regards,
Farhan IslamForum: Fixing WordPress
In reply to: Fatal error: Call to undefined function the_post_thumbnail()Try adding these lines into your functions.php located in theme
if ( function_exists( ‘add_theme_support’ ) ) {
add_theme_support( ‘post-thumbnails’ );
set_post_thumbnail_size( 140, 120 ); // default Post Thumbnail dimensions
}if ( function_exists( ‘add_image_size’ ) ) {
add_image_size( ‘category-thumb’, 300, 9999 ); //300 pixels wide (and unlimited height)
add_image_size( ‘homepage-thumb’, 140, 120, true ); //(cropped)
}after this hope your problem will be solved.
Regards
Forum: Fixing WordPress
In reply to: cannot install backupIf you read carefully MySQL wana say that their is already some entries located in your table with same reference. Try these steps
1) Create a backup (for the safe side)
2) Empty all the database also delete any table if exist
3) Restore your database,Hope this will fix out your issue.
Regards,
Farhan Islam