Fastest way to create product variations in WooCommerce?

this link will give a solution to your problem : https://stackoverflow.com/questions/47518280/create-programmatically-a-woocommerce-product-variation-with-new-attribute-value the above solution is based on creating product variation programmatically which may not be safe so I would recommend to follow tool provided by WooCommerce and create a duplicate copy of existing and similar products and just change as you needed. From a defined … Read more

Theme Options – localhost to new url

The way I’ve always migrated sites is not by search and replacing, but just by changing two fields in wp_options: siteurl and home. Try doing only this, no search and replace, and see if it fixes your options page / widgets. It may be that by replacing all instances of “localhost,” you’re actually impairing your … Read more

Running a Development Copy of WordPress?

You can open your database in a text editor and make a search and replace in the database. You have to change developmentsite.com for localsite.com. This method usually gives problems with theme options and widgets settings. To avoid these problems you can use the plugin http://wordpress.org/extend/plugins/duplicator/. This has given me excellent results.

cannot log in to the mysql server (wamp and wordpress)

The default Wamp user`s credentials are: username: root password: (empty, nothing, nada) If you already have a WordPress website previously created on your Wamp system, then go to /www/yourlocalsite/wp-config.php and check out the username and password you set. Here`s an example: /** MySQL database username */ define(‘DB_USER’, ‘root’); /** MySQL database password */ define(‘DB_PASSWORD’, ”); … Read more