How to Set Default Post Title?

Modify the file named functions.php which is under your theme, add the following code at the file: //Default Post Title function my_default_title_filter() { global $post_type; if (‘post’ == $post_type) { return ‘Eyeglasses ‘; } } add_filter(‘default_title’, ‘my_default_title_filter’); Here the default… Read moreHow to Set Default Post Title?

Bulk Delete Magento 2.3 Orders

By default, magento 2.3 does not support bulk delete orders, so we have to use a third-party module. I have tried w3ctrl-module-delete-orders successfully to delete all orders under https://www.extraglasses.com/. First, download the module from marketplace.magento.com/w3ctrl-module-delete-orders.htm, you also can download it… Read moreBulk Delete Magento 2.3 Orders