Omeprazol
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Yoast SEO has been updated to version 3.2.3It also appears the following bug was reintroduced again:
Fixes a bug where the post slug would be overwritten with the post ID in case a post was autosaved and did not have a title yet.
This appeared to be fixed for me since 3.1.1 but is now back. I hope a fix is due soon!
Forum: Plugins
In reply to: [AMP] Google Search Console reporting errorsDebugging works by adding #development=1 to your AMP url and to then check your developer console. Here you can see the following error is reported for your page:
https://serienfuchs.de/news/orange-is-the-new-black-staffel-3-broadway-im-gefaengnis-2-1015/amp/:248:0 The attribute ‘align’ may not appear in tag ‘p’.
That’s this line:
<p align=”right”><i><small>Beitrags-Bild: Darla Mack @ Flickr; CC BY 2.0 </small></i></p>
Are you on the latest plugin version? I think align should be stripped, at least from div tags, not sure also on p tags already, else the devs are likely going to pick this up!
Forum: Plugins
In reply to: [AMP] google Amp Console errorsYes, it seems the URL is still rewritten.
If you are using Cloudflare, did you follow these instructions?
https://www.ads-software.com/support/topic/w3-total-cache-browser-cache-issue?replies=3#post-8077972
If you are using the Cloudflare plugin for WordPress, turn off the “HTTPS Protocol Rewriting” setting in the Cloudflare plugin. That fixed it for me.
Forum: Plugins
In reply to: [AMP] Anyone have a gallery plugin that works with AMP?Given that the AMP documents state:
Script tag = Prohibited unless the type is application/ld+json. (Other non-executable values may be added as needed.) Exception is the mandatory script tag to load the AMP runtime and the script tags to load extended components.
I think there won’t be any gallery plugin for AMP. From what I understand the idea behind AMP is to make pages load as fast as possible with as little ‘extras’ as possible.
Forum: Plugins
In reply to: [AMP] Error on logo in SDTTNot sure, but you are using an external CSS file that isn’t allowed…
Forum: Plugins
In reply to: [AMP] Error on logo in SDTTYou appear to load an additional external Stylesheet
<link rel="stylesheet" href="https://www.inexhibit.com/wp-content/plugins/sitepress-multilingual-cms/res/css/language-selector.css?v=3.3.6" type="text/css" media="all" />
This one is not allowed.
Forum: Plugins
In reply to: [AMP] google Amp Console errorsrelisys, are you using WP-Rocket? It seems you suffer from the same issue as described here: https://www.ads-software.com/support/topic/issues-with-google?replies=12#post-8071844
Forum: Plugins
In reply to: [AMP] New error on Console : layout CONTAINER not supportedI also got the same CONTAINER error with missing images
Forum: Plugins
In reply to: [AMP] AMP Plugin active, but…One of your errors appears because you load jQuery in the body of your page. (Error: the parent tag of script is body, but it can only be head), this means Javascript can only be loaded in the <head> tag.
Forum: Plugins
In reply to: [AMP] Issues with GoogleYou can also check in the developer console for errors by adding: #development=1 to your URL. Did you check there for validation errors too?
Forum: Plugins
In reply to: [AMP] AMP validation had errors:It appears the script doesn’t properly add https:// or https:// in front of the scripts it has to load. Are you using a plugin to modify links e.g. a plugin that automatically converts your links to https?
Forum: Plugins
In reply to: [AMP] Does AMP for WordPress support custom post types?Thank you, that works! Thanks a lot!
Forum: Plugins
In reply to: [AMP] Does AMP for WordPress support custom post types?I have to admit this is kind of difficult for me, due to the regexes, but this is how I once defined the URLs for the custom post types ?? he reviews use a multipage plugin, which also makes them a bit more complicated.
add_rewrite_rule(‘review/[^/]+-([0-9]{1,})/[^/]+-([0-9]+)?/?$’, ‘index.php?post_type=review&p=$matches[1]&pageid=$matches[2]’, ‘top’);
add_rewrite_rule(‘article/[^/]+-([0-9]{1,})/[^/]+-([0-9]+)?/?$’, ‘index.php?post_type=review&p=$matches[1]&pageid=$matches[2]’, ‘top’);add_rewrite_rule(‘(news|article|review)/([A-z-0-9]+)-([0-9]+)’, ‘index.php?post_type=$matches[1]&p=$matches[3]’, ‘top’);
add_rewrite_rule(‘(news|article|review)/([0-9]+)’, ‘index.php?post_type=$matches[1]&p=$matches[2]’, ‘top’);I hope you can help, thanks in advance!
Forum: Plugins
In reply to: [AMP] Does AMP for WordPress support custom post types?Thank you so much for the quick reply, that worked! The last thing is, the automatically generated URL in the header is my pretty URL /amp/ however only ?amp=1 works, anyway to fix that? Either by letting the plugin generate the ?amp=1 links or by properly parsing the URL?
I already flushed the permalinks BTW.