ikiterder
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Missing rel tagAhmed Kaludi
https://sitework.epizy.com/2021/06/08/hello-world/arnaudbroes
Updated from version 4.1.2.2 to version 4.1.3.1 and code worked O_oFound this code but it doesn’t work. After inserting it, nothing changes.
add_filter( 'aioseo_schema_output', 'aioseo_filter_schema_output' ); function aioseo_filter_schema_output( $graphs ) { foreach ( $graphs as $index => $graph ) { if ( 'BreadcrumbList' === $graph['@type'] ) { unset( $graphs[ $index ] ); } foreach ( $graph as $key => $value ) { if ( 'breadcrumb' === $key ) { unset( $graphs[ $index ][ $key ] ); } } } return $graphs; }
Maybe Image from Custom Field ? How it is done for Facebook and Twitter.
OR
Or maybe it is possible to take “application / ld + json” – “#articleImage” from image for Facebook?
—-
I need it because the errors on the AMP pages show. https://developers.google.com/search/docs/data-types/article#article_typesForum: Plugins
In reply to: [Conditional CAPTCHA] Here’s the FIX for this plugin on WP 5.5 and laterBest!
Forum: Plugins
In reply to: [LiteSpeed Cache] Plugin adds JavaScript to AMP pagesHi @hailite
im use LiteSpeed Cache v4.0
Arnaudbroes
Thanksarnaudbroes
Thank you. That helped.arnaudbroes
Thank you . Did it like thisadd_filter( 'aioseo_canonical_url', 'aioseo_canonical_url_add_trailing_slash' ); function aioseo_canonical_url_add_trailing_slash( $url ) { if ( is_archive() ) { return trailingslashit( $url ); } return $url; }
Forum: Plugins
In reply to: [LiteSpeed Cache] Please add exclude html minifyHai Zheng
Tag
<noindex>... </noindex>
causes HTML code validation errorForum: Plugins
In reply to: [LiteSpeed Cache] Please add exclude html minifyqtwrk
HI
I mark ONLY a piece of content this tagHi.
The problem is still observed.
Forum: Plugins
In reply to: [Link Fixer] Please add optionGoogle spider follows the link to the picture (as in the example
https://website.com/images/post-staff-name-and...
orhttps://website.com/images/post-staff-name-and№-=
), and as a result, it redirects to the article. I want to avoid this.Forum: Plugins
In reply to: [Link Fixer] Error to many redirectspermalinks on
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Add tag for disqus commentsaccelerated-mobile-pages\templates\features.php
Before
<section class="amp-wp-content post-comments amp-wp-article-content amp-disqus-comments" id="comments"> <amp-iframe height=<?php echo esc_attr($height) ?> width=<?php echo esc_attr($width) ?> layout="<?php echo esc_attr($layout) ?>" sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts" frameborder="0" src="<?php echo esc_url($disqus_url) ?>" title="<?php echo esc_html__('Disqus Comments','accelerated-mobile-pages'); ?>"> <div overflow tabindex="0" role="button" aria-label="Read more"><?php echo esc_html__('Disqus Comments Loading...','accelerated-mobile-pages') ?></div> </amp-iframe>
After
<section class="amp-wp-content post-comments amp-wp-article-content amp-disqus-comments" id="comments"> <amp-iframe height=<?php echo esc_attr($height) ?> width=<?php echo esc_attr($width) ?> layout="<?php echo esc_attr($layout) ?>" sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts" resizable frameborder="0" src="<?php echo esc_url($disqus_url) ?>" title="<?php echo esc_html__('Disqus Comments','accelerated-mobile-pages'); ?>"> <div overflow tabindex="0" role="button" aria-label="Read more"><?php echo esc_html__('Disqus Comments Loading...','accelerated-mobile-pages') ?></div> </amp-iframe>