Articles

Correct table of percentages to hex values for opacity

Correct table of percentages to hex values for opacity. % Hex 100% FF 95% F2 90% E6 85% D9 80% CC 75% BF 70% B3 65% A6 60% 99 55% 8C 50% 80 45% 73 40% 66 35% 59 30% 4D 25% 40 20% 33 15% 26 10% 1A 5% 0D 0% 00 That's it for now.

DMARC External Validation

If you see this error, one of the "rua" or "ruf" email addresses in your report does not have a DNS TXT record verifying that they wish to receive DMARC reports for your domain. If you want to send your DMARC reports to a domain other than the one that the record is for, then the recieving domain needs to configure a DNS record so that Email Serivce Providers know that the recipient is authorizing the the reports. https://mxtoolbox.com/problem/dmarc/dmarc-external-validation (https://mxtoolbox...

Using BerryCast on websites

To create an embedded video URL, you have to add "/video-player" at the end of the URL of the video. Let's say you have this link:https://www.berrycast.com/conversations/32eb77e0-5325-5e7e-b161-d6d957540380 To be able to embed it, you would have to use that URL:https://www.berrycast.com/conversations/32eb77e0-5325-5e7e-b161-d6d957540380/video-player And after that, you can just put that link into an iframe. Here is an example: https://codepen.io/maubut/details/poEWLpB

Hide table column or table row from logged out users

How can we hid a table row or a table column from not logged in Wordpress users? You can use TablePress plugin to achieve this for free (donation recommended!). https://tablepress.org/extensions/hide-data-logged-out-users/?fbclid=IwAR0MkkxQHifJmpSosgt7iD6PC3eC8kcbgziyLItRg8W1AYCLxJY-IMFVr4c End.

Disable archive pages in WP/WC

How can I disable products or any archive pages in WordPress / WooCommerce? Simply insert the code below into your functions.php theme file. function my_disable_archives_function() { /* Conditional checks examples: is_category() is_tag() is_date() is_author() is_tax() is_search() ... */ // Return a 404 for all archive types, except the my_custom_post_type archive. $post_types = array('my_custom_post_type'); if ( (is_archive() && !is_post_type_archive( $post_types )) ) { global $wp_query; $wp...

Test article

Test article title Test article paragraph.