This is a perfect example of bad cold email outreach marketing. Heck, we can even call it spam. Actually, I am calling it spam because that is what it is: Generic Doesn't have any identifying information Does not have an opt-out method Unsolicited Using 100% scraped data Send from non-company...
Additional articles by Piotr Krzyzek
Thrive Themes Facebook API Connection Fixed: Can’t Load URL: The domain of this URL isn’t included in the app’s domains
Thrive Theme's tools are great but sometimes things don't work: either because the code is bad or a third-party changed their integration requirements (API). For a while if you tried to connect Facebook's API to Thrive Theme's API Manager you'd get: Can’t Load URL: The domain of this URL isn’t...
Fixed: (vscode) Git pull permission denied (Public key) on Mac OS
If you're using Mac OS (High Sierra or otherwise) you might have seen this error when you tried to push git code (to GitHub), especially if you tried doing so from something such as Visual Studio Code (vscode): > git push [email protected]: Permission denied (publickey). fatal: Could not read from...
Set Unique Slug In Laravel With Unique Counter
In a recent Laravel project I needed a way to get pretty URLs BUT to ensure that they are unique. You might think, why not just set the column to UNIQUE in SQL? Simple, with a multi-tenant setup we needed it unique but only unique to the tenant but we...
Simple Magento (jQuery) Quantity Increment Script
Magento's themes and extensions aren't always of the highest quality, and when I ran into an issue on one of my client's Magento sites that the quantity increment and decrement arrows didn't work on the single product page (product/view.phtml) I tossed in the following quick jQuery code to make it...
How to prevent hidden mac files (__MACOSX, .DS_Store) from being added to zip
If you're trying to zip files on Mac OS but keep getting stuck with the hidden files like .DS_Store and __MACOSX then there's a simple command line solution for you. And yes, that means you can't use the built-in Mac graphical tools, you have to use the command line. Thankfully, it's...
Fix Divi Theme’s Horrible WooCommerce Gallery With Simple code: remove_theme_support
Not liking Divi's usage of WooCommerce's new single product gallery features? Me neither. By default Divi adds support for all three of WooCommerce's new gallery features: zoom, lightbox and slider. For some this is great, but for real life things hazing all three together doesn't work as well as you'd...
[SOLVED] events.js:160 throw er; // Unhandled ‘error’ event
In a recent Laravel project I came across this rather annoying error: events.js:160 throw er; // Unhandled 'error' event Though I didn't save the text of the whole error, here's a screenshot of the ending part of the error log: The solution: It's really easy. All this really means...