wptit
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Keep default permalink workingThen keep default permalink only
Setting > Permalink > Select Plain as URL
Forum: Fixing WordPress
In reply to: photos when uploaded in gallery not to size asm uploadedYou photo size is auto managed in wordpress as per photo setting of your wp website
check this plugin
Forum: Fixing WordPress
In reply to: Adding About or person bioForum: Fixing WordPress
In reply to: Move Website to other Servercheck this
https://codex.wordpress.org/Moving_WordPress
Your account turn into user account , you need to login using admin account
Forum: Plugins
In reply to: No featured image option with woocommerce productsyou search for this line of code:
add_theme_support( ‘post-thumbnails’, array( ‘post’, ‘page’, ‘movie’ ) );
You will need to add this to the end of the array:
‘product’
So it will look like this:
add_theme_support( ‘post-thumbnails’, array( ‘post’, ‘page’, ‘movie’, ‘product’ ) );
Check the various PHP files for your theme… I hope this helps.
Forum: Fixing WordPress
In reply to: Site images skewed in different browsersIts opening perfectly i think some cache issue ,
Are you using any cache pluginForum: Fixing WordPress
In reply to: Change nothing, but homepage can't be indexed nowGo to setting > Reading > Uncheck Search Engine Visibility
Forum: Fixing WordPress
In reply to: Keep default permalink workingPeople can also access with default permalink structure but they will be redirected to new permalink structure
Forum: Fixing WordPress
In reply to: Error establishing database connectionForum: Fixing WordPress
In reply to: (resolved) All links load the homepage after https address changeIn wpconfig.php Use
define(‘FORCE_SSL_ADMIN’, true);
htaccess file
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.yoursite.com [NC]
RewriteRule ^(.*)$ https://www.yoursite.com/$1 [L,R=301,NC]Forum: Fixing WordPress
In reply to: How to tell googlebot to crawl just one URL with .htmlTry
https://www.google.com/webmasters/tools/submit-urlTo tell google to crawl your url
Try this plugin
Forum: Fixing WordPress
In reply to: Image upload (http error) and image refreshHave you tried:
– deactivating all plugins to see if this resolves the problem? If this works, re-activate the plugins one by one until you find the problematic plugin(s).
– switching to the default theme to rule out any theme-related problems?
Restore Old Function.php file or change theme it will work .
Upload old function.pho file from cpanel
or disable that theme then login to wp-admin area to change themeForum: Fixing WordPress
In reply to: How do I change a http:// site to https:// in the Multisite Network?Treat it like moving WP: http://codex.wordpress.org/Moving_WordPress#Moving_WordPress_Multisite