darwincrack19
Forum Replies Created
-
Puede alguien ayudarme por favor
Forum: Plugins
In reply to: [NSFW] [BA Book Everything] price based on countriesThank you very much for your reply !!
I would like to know if it is possible to use two types of currency at the same time, for example: dollar and euro.
That the user can select in which currency he sees the prices.
is this possible?
Forum: Plugins
In reply to: [AMP] Centered images in full size don’t fit on page@westonruter you who have created this great plugin can help me in two cases that I have open, since I have not found a response from the community.
My questions
https://wordpress.org/support/topic/the-images-are-deformed-in-amp-version/
Forum: Plugins
In reply to: [AMP] the images are deformed in amp versionHi, have you been able to find a solution to this?
It happens to me with all the images, with the old and the new editor and you?
Forum: Plugins
In reply to: [AMP] add custom CSS in amp paired modeThank you very much, it has worked for me.
I share my final solution for those who have asked me the same thing:
add_action( 'wp_enqueue_scripts', function() { if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) { wp_register_style( 'custom-style', get_template_directory_uri() . '/css/custom-style.css', array(), '20190118', 'all' ); wp_enqueue_style( 'custom-style' ); } } );Forum: Plugins
In reply to: [AMP] Custom CSS to AMP pageHello, I want to add css that only affects the amp version of my site, I use the paired mode,
can you help me please.