Elementor Angie widget files
Located at
/public_html/wp-content/angie-snippets/prod/snippet-60072/main.php
Located at
/public_html/wp-content/angie-snippets/prod/snippet-60072/main.php
Here is the script its pretty self-explanatory on its own. Will expand on it later
for ((i=1; i<=5; i++)); do history -d $(history 1 | awk ‘{print $1}’); done to get rid of the last 5 lines / commands
We wanted to display product variations as selectable boxes rather than dropdown / select. So we needed to use a modified variable.php to modify the variations form accordingly under: /public_html/wp-content/themes/child-theme/woocommerce/single-product/add-to-cart/variable.php We thought a WC template file under child theme would work for sure in terms of hierarchy it should override wc default and the parent…
You might need to calculate average amount of memory used by each Apache process for several reasons. One being deciding on MaxRequestWorkers . You can do it by running: ps -ylC httpd –sort:rss | awk ‘{x += $8;y += 1} END {print “Apache Memory Usage (MB): “x/1024; print “Average Process Size (MB): “x/((y-1)*1024)}’ Apache Memory…
To quote the update notes directly: Previously, swiper styles were loaded everywhere to make them available for different carousel widgets. As of 3.24, widgets need to declare which styles they are using, with the get_style_depends() method. Therefore, Elementor no longer needs to load swiper styles on all the pages, these styles are loaded conditionally only…
As usual add it to your functions.php and adjust as needed