Mohsin Ali
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Social Login] facebook login not workingI am also facing the same issue on my client website. Can anyone help me to figure it out.
Valid OAuth Redirect URIs = https://notebuyergo.com/wp-content/plugins/wordpress-social-login/hybridauth/?hauth.done=FacebookAND it showing following error while attempting to login:
ERROR:
URL Blocked: This redirect failed because the redirect URI is not whitelisted in the app’s Client OAuth Settings. Make sure Client and Web OAuth Login are on and add all your app domains as Valid OAuth Redirect URIs.Forum: Developing with WordPress
In reply to: How to create Capitalized_Urls in WordPressHi @ashbodev, I’ve viewed stackoverflow link (but unfortunately that code is not working) and also know SEO factor but client is insisted to use that one.
Anyway Thanks for quick response.Forum: Fixing WordPress
In reply to: WordPress doesn’t create smaller versions of images@pwl, If you want to create different sizes of thumbnails from you can add “set_post_thumbnail_size()” function in your theme functions.php file
set_post_thumbnail_size( 300, 165, TRUE ); /** widht=300 and height=165 TRUE means enable croping mode **/
For more information you can learn more here https://codex.ww.wp.xz.cn/Function_Reference/set_post_thumbnail_size