How to Connect to Xampp from Visual Studio

Method 1: Install MySql connector Install MySQL for visual studio Packages can be found at : https://dev.mysql.com/downloads/ Resource : https://stackoverflow.com/questions/55670070/how-to-connect-to-a-mysql-data-source-in-visual-studio-2019 Method 2: Install MySQL.data by oracle Resource: https://stackoverflow.com/questions/21618015/how-to-connect-to-mysql-database

Continue ReadingHow to Connect to Xampp from Visual Studio

Update WordPress Database to Change Post Dates

Delete saved post revisions from database SELECT * FROM `wp_posts` WHERE post_status != "publish" and post_title like '%guest post%'   Change the post date or post modified date Single entry: SELECT * FROM `wp_posts` WHERE post_status = "publish" and post_title like '%guest post%' All: SELECT * FROM `wp_posts` WHERE post_status = "publish" and post_title != "" ORDER by post_date DESC  

Continue ReadingUpdate WordPress Database to Change Post Dates

Insert JavaScript into Certain Specific Category Pages in WordPress

Step 1: Register Script Register your JavaScript file in word-press ?php function wpb_adding_scripts() { wp_register_script('my_amazing_script', plugins_url('amazing_script.js', __FILE__), array('jquery'),'1.1', true); wp_enqueue_script('my_amazing_script'); }   add_action( 'wp_enqueue_scripts', 'wpb_adding_scripts' );  ?> Step 2: Inside…

Continue ReadingInsert JavaScript into Certain Specific Category Pages in WordPress

Warning: array_merge(): Argument #2 is not an array in /home/anotherfolder/public_html/example.org/wp-includes/load.php on line 63

Solutions Method #1: PHP.ini edit (best results) Method #2: .Htaccess edit (Did not work) Method #1 Today, a client of mine using my favorite host SiteGround ran into the following issue. They…

Continue ReadingWarning: array_merge(): Argument #2 is not an array in /home/anotherfolder/public_html/example.org/wp-includes/load.php on line 63

WordPress Themes compatible with woocommerce free

REGULAR ---------- IMNEWS Education LMS   FOR WOOCOMMERCE BELOW ____ https://demo.themegrill.com/flash/shop/ https://themeisle.com/demo/?theme=ShopIsle https://themeisle.com/demo/?theme=Zerif%20Lite http://8theme.com/demo/wooclean/shop/ https://themeisle.com/demo/?theme=Parallax%20One http://demo.iograficathemes.com/store-wp-premium/?post_type=product Paid https://themify.me/demo/themes/shoppe/product-category/women/page/3/?id=sidebar_filter&wpf=1&wpf_cat=accessories,women&price-from=85&price-to=1199 https://themify.me/demo/themes/ultra/shop/page/4/ http://www.mojomarketplace.com/item/highend-ultimate-multi-purpose-wordpress-theme/demo

Continue ReadingWordPress Themes compatible with woocommerce free

End of content

No more pages to load