Category: Geekery
-
Formidable: Adding Dynamic Link to Parent Values in a View with Child (Repeater) as the Source.
There are instances that you need to add a dynamic link to a Formidable Form view when your data source is the child table, instead of the parent table. Here’s a javascript snippet that will do the magic. function load_jquery() { wp_enqueue_script(“jquery”); } add_action(‘wp_enqueue_scripts’, ‘load_jquery’); function custom_href_shortcode_fix() { ?>
-
WordPress 6.4 first impressions!
WordPress 6.4 was released today and here are my first impressions. It’s cool and it’s fast and I love the modern Twenty Twenty four theme! Other features include the following. User Experience Improvements: WordPress tends to focus on refining the user experience with each update. My first impressions might include appreciation for a more streamlined…
-
Top 3 useful AI tools for your daily needs
1. Google assistant: Google assistant is a virtual assistant developed by Google that allows you to interact with your Android or iOS device using natural language voice commands and provides information and services based on the user’s request. It can be used for various tasks such as setting reminders, managing calendar events, making phone calls,…
-
WooCommerce: Add a product to cart automatically based on another product’s variation ID
If you want to add a product to your cart based on another product’s ID or variation or a configurable product, then this code snippet might help. Was searching how to do this until I found one in Stack Overflow. The function is based on the first code example on this website post: https://www.tychesoftwares.com/how-to-automatically-add-a-product-to-your-woocommerce-cart-in-3-different-scenarios/ Basically,…
-
Divi Blog Grid breaks when Minify JavaScript Files is enabled
If you’ve noticed that your Divi blog grid breaks after you enable JS minifaction using any plugin, then you just need to exclude the custom.js from /themes/Divi/js/custom.js to be minified. This will fix the issue. I haven’t checked what’s in this Javascript file yet that doesn’t want to be minified, but that fixes the problem…
-
Better late than never! Just upgraded to WP 5.7!
Yep, I do manual updates and I recently updated this WP blog to the latest version, which is 5.7. On a user’s perspective, nothing seems to be new as I’m using the classic editor. I hate the Gutenberg editor and they have a new one now, it seems like Gutenberg, but an improved one. Automattic…
-
Error Reference: invalid certificate csr (ZeroSSL)
If you’re renewing your SSL and selected autogenerate CSR and it’s always invalid, then you’re just encountering a temporary error. I always get this “An error occurred. Please try again or contact support. (Error Reference: invalid certificate csr)” when renewing my Let’s Encrypt Certificate via ZeroSSL. If you Paste your own generated CSR or manually…
-
Third Party Smart Plugs in Alexa App / Amazon Echo stopped working
Since December 2020 last year, third party plugs such as GoSund Smart Plugs connected via Smart Life or Go Smart App through Amazon Alexa Skills stopped working. You need to disable the skill then re-ensbled it again via the Alexa App to make it work. It works for a few days or minutes, then it…