Abraham Garcia in WordPress   Friday, October 6 2023

10 Best WooCommerce Themes for 2023

Top 10 Themes to Use for your Next WooCommerce WordPress Project. Free and Paid Themes that can be Used. Learn About Them Today.

Launching an online e-commerce store requires careful consideration. It's a process that can take time and be costly. Choosing a theme that ensures the speed and reliability of your store,

Continue reading
Abraham Garcia in PHP Scripts   Tuesday, August 1 2023

419 Page Expired After Login on Laravel

Resolve expired login sessions on Laravel with Laracast's tip: Configure SESSION_DOMAIN for seamless security. Optimize user experiences now!

I have some projects that I have been getting expired after login on Laravel. I recently found something on Laracast that helped me get this solved. After you checked that

Continue reading
Abraham Garcia in PHP Scripts   Monday, July 31 2023

How to Publish All Laravel Packages

Publish Laravel Packages so you can modify files without affecting composer installation. Simple and Easy Script.

Learn how to publish the Laravel Package Assets. php artisan vendor:publish --tag=courier-config Here is also a bit more information on how to do this https://laravel.com/docs/10.x/packages#publishing-file-groups

Continue reading
Abraham Garcia in WordPress   Thursday, July 20 2023

How to Change Registration Email of WordPress

Learn how to change the default email that WordPress sends out for registration without editing WordPress Core Files.

Learn how to change the registration email from WordPress with a simple hook through your functions.php file. add_filter('wp_new_user_notification_email', 'rego_welcome_email', 10, 3); function rego_welcome_email($wp_new_user_notification_email, $user, $blogname){ //change the default email $key

Continue reading