Vishal Chowdhary
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: product permalinkyou have to change .htaccess file for correct url
Forum: Fixing WordPress
In reply to: Site within a site?This could be solve by using wordpress Multisite feature.
Forum: Fixing WordPress
In reply to: Temporary URL helpMigrate your Db according to the dev url you want.
Forum: Fixing WordPress
In reply to: Setting up a new user in phpMyAdminYou can change the password in wp_users table, but you have to use md5 hashing while storing the password from editing the row and choose md5 in function from the dropdown list before filling new password.
Forum: Fixing WordPress
In reply to: Sub-menu Hover ColorWelcome ??
Forum: Fixing WordPress
In reply to: Sub-menu Hover ColorFirst add custom CSS plugin.
then add
ul.sub-menu li:hover { color: red; }
Replace the color you want.
Forum: Fixing WordPress
In reply to: WordPress not loading after removing Shopify from my domainIf you see the source code its still Shopify. You have to correctly installed the wordpress from cpanel.
Forum: Fixing WordPress
In reply to: I can’t categorize my posts after updatingDisable the plugin used for mass update and then try to roll back the posts.
you have used
define(‘SUBDOMAIN_INSTALL’, true);
make it
define(‘SUBDOMAIN_INSTALL’, false);
Forum: Fixing WordPress
In reply to: Need to Understand Editing and Publishing Processyou can use preview option after editing the published post and then publish it again.
Forum: Fixing WordPress
In reply to: Database IssueTable does not support optimize, doing recreate + analyze instead.
It is because the table that you are using is InnoDB.
You can optimize the InnoDB tables by using this.
ALTER TABLE table.name ENGINE=’InnoDB’;
Forum: Fixing WordPress
In reply to: Backup to single site after MultiSite Install?Simply you just delete the sub-domain WordPress site from admin panel and after that export the database from wp-migrate db plugin and again set up your single WordPress.
Forum: Developing with WordPress
In reply to: Style.css won’t loadHere your path is incorrect.
wp_enqueue_style( 'style', get_stylesheet_directory_uri() . 'style.css' );
Correct one is
wp_enqueue_style( 'style', get_stylesheet_directory_uri() . '/style.css' );
OR
wp_enqueue_style( 'style', get_stylesheet_directory_uri() . '/css/style.css');
Path will be according to the stylesheet in your theme.
Notice: The code works for child themes. If you want to use it in a parent theme replaceget_stylesheet_directory_uri() with get_stylesheet_uri().
One more thing you have included bootstrap twice check your index.php also.
- This reply was modified 6 years, 9 months ago by Vishal Chowdhary.
Forum: Fixing WordPress
In reply to: desktop posts updating but mobile notyou need to fix this issue with the help of CSS.
its responsive issue.- This reply was modified 6 years, 9 months ago by Vishal Chowdhary.