lamvt
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom AMP] Menu links not working?Menu Works Fine,please check it again
Forum: Plugins
In reply to: [Custom AMP] custom_content_width in HTML outputThanks TimThemann
Just DEBUG ??
I will remove itForum: Plugins
In reply to: [Custom AMP] Problems installingThanks, please updatet to lastest version
Release Date – April 03, 2016 *
Fixed Install admin messages thanks to Mr lookahead.io *
Fixed Show menu function thanks to Mr Gany *Forum: Plugins
In reply to: [Custom AMP] Show menu is not working.Thanks Gany Please update to lastest version
Release Date – April 03, 2016 *
Fixed Install admin messages thanks to Mr lookahead.io *
Fixed Show menu function thanks to Mr Gany *Forum: Plugins
In reply to: [AMP] Error "script" with Google search consolelet’s try to use https://www.ads-software.com/plugins/custom-amp-accelerated-mobile-pages/
1.0.5Release Date – March 26, 2016 *
Fixed Validation AMP HTML Erros: The tag ‘script’ is disallowed except in specific formsForum: Plugins
In reply to: [Custom AMP] Override the width and length for Logo and metada imageCould you send more details for example?
Forum: Plugins
In reply to: [Custom AMP] Add code to Head and Footerplease update to lastest version 1.0.4
Forum: Plugins
In reply to: [Custom AMP] Styling optionPlease update to 1.0.4
Forum: Plugins
In reply to: [Custom AMP] Styling optionDo you want to add Custom CSS Stylesheet for your AMP page??
Forum: Plugins
In reply to: [Custom AMP] The user will be redirected to the amp-pages/amp-posts?Do you want add function to allow user to use Mobile will automatic redirect to AMP page?
OK I will add for next version,
Thanks for AdvicesForum: Plugins
In reply to: [AMP] rtl supporthttps://www.ads-software.com/plugins/custom-amp-accelerated-mobile-pages/
Support Right to Left DirectionForum: Plugins
In reply to: [AMP] Make a replace at the contentOr you can use
/*Support https://lamvt.vn*/
add_action( ‘pre_amp_render_post’, ‘lamvt_amp_add_custom_actions’ );
function xyz_amp_add_custom_actions() {
add_filter( ‘the_content’, ‘lamvt_amp_add_custom_actions’ );
}function lamvt_amp_add_custom_actions( $content ) {
/*your action here*/
return $content;
}Forum: Plugins
In reply to: [AMP] Make a replace at the contentfunction lamvt_wrap_content($content) { $content .=''; //add your filter here return $content; } add_filter('the_content','lamvt_wrap_content', 99);