clientclicks
Forum Replies Created
-
Forum: Plugins
In reply to: [Safety Exit] Doesnt Work on DiviHere’s the settings on the divi builder. I am good with 1.6.0.
https://houseoflovinghands.org/wp-content/uploads/2022/11/2022-11-16_12h58_42.pngForum: Plugins
In reply to: [Safety Exit] Doesnt Work on DiviI also had the same issue in Divi and reverting to 1.6.0 fixed it.
Forum: Plugins
In reply to: [Testimonial Rotator] Google Snippets and no scoreYou can also hide the stars in CSS.
.testimonial_rotator_stars {
display: none;}I’ve only been working in AMP for about a month now, but I really like it. I was surprised to find that AMP is really very full featured and flexible. Most of the examples of AMP that I had seen are news or blog sites without interesting formatting and I had read about how AMP is stripped down HTML. Well it turns out with all of the various components available like amp iframe, amp carousel and amp bind, you can do lots of interesting dev work in AMP. You just need to use Ampforwp’s custom template option to do it.
You should check out this page which talks about creating a custom AMP theme: https://ampforwp.com/tutorials/article/create-a-custom-amp-theme-for-wordpress/
AmpforWP gives you a very basic template that you can use as an example, but what I found to be more helpful was to copy the existing design-3 template files by ftp to use as a basis for a custom template. Then you can modify it to suit your needs.
Your experience with HTML and CSS will pay off because you’ll see that you now have an AMP style sheet (style.php) that you can modify. You can also change up the home page template (index.php) the basic template (single.php) and the header and footer. You can also add in the other AMP components that are not present.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Spaces between Photos using Carousel@puntoman, I also had this problem and found a fix. When you’re copying the AMP carousel code to either the custom AMP area or the page builder widget, you should remove the spaces between the > close brackets and the following < open brackets for the next tag. Otherwise the editor turns the spaces between tags into <br> tags which results in the blank slides.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] How to remove leave a comment buttonI’m not sure if this is the best way to go, but you can hide the comments button in CSS.
AmpforWP options, Design, Custom CSS
Then add this:
.ampforwp-comment-wrapper {display:none;}