Denislav Popov
Forum Replies Created
-
While they update it you can add this to your functions.php
This adds the official carousel component script with the officially provided hook
https://ampforwp.com/tutorials/article/hooks-in-ampforwp/Inside functions.php of the active theme.
add_action( 'amp_post_template_head', 'add_carousel_temp_script', 11 ); function add_carousel_temp_script() { printf( '<script custom-element="amp-carousel" src="https://cdn.ampproject.org/v0/amp-carousel-0.1.js" async=""></script>' ); }The problem is that the plugin is not with the latest script for the carousel and there are differences. Including the official AMP script fixes that.
The plugin includes from https://cdn.ampproject.org/v0/amp-carousel-latest.js
and the official amp script for carousel is https://cdn.ampproject.org/v0/amp-carousel-0.1.js
The plugin version of the script is not updated and carousels and sliders don’t work.Forum: Plugins
In reply to: [NMI Gateway For WooCommerce] Errors when Plugin ActivatedSame issue here. Any prgress with this?
Wordpress: Version 4.9.8
Woocommerce: Version 3.4.5
NMI Gateway For WooCommerce: Version 1.5.11- This reply was modified 7 years, 7 months ago by Denislav Popov.