by Paul Drecksler | Oct 22, 2021 | Updates
I've learned that this is an error with the Divi theme. Add this code to your Custom CSS and it'll remove the second set of stars. form#commentform .comment-form-rating .stars:nth-child(2) { display: none; }
by Paul Drecksler | Oct 21, 2021 | Updates
Use this code courtesy of Divi Kingdom. /** * Disable WooCommerce zoom effect on the product image * @author Abdelfatah Aboelghit * @version 1.0 */ add_action( ‘wp', ‘divikingdom_disable_wc_zoom', 99 ); function divikingdom_disable_wc_zoom() {...
by Paul Drecksler | Oct 20, 2021 | Updates
Currently my Blog Module displays: Author | Date | Category | Comment Count I wanted to add a link to my affiliate disclosure at the end of that post meta data so that it would read: Author | Date | Category | Comment Count | This post may contain affiliate links When...
by Paul Drecksler | Oct 20, 2021 | Updates
Great post by Divi teaching how to turn blog modules into swipeable carousels. I hate the buttons, but haven't taken the time to style them the way I like. However it's possible....
by Paul Drecksler | Oct 19, 2021 | Updates
Use the following liquid code, replacing page-name with the slug of the page you want to include. It will only include the content and not the title of the page. You can use this to make it easy for clients to update sections of their product template. {{...
by Paul Drecksler | Oct 19, 2021 | Updates
I couldn't find the Author Box when using the Divi Theme Builder. Then I discovered that in order to create an Author Box, you're actually adding a Person Module and then creating a Dynamic Name, Bio, Image, etc within that module. Super easy once I discovered it....