Pierre Gordon
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP] Error after last updateHmm that’s weird. I can confirm its working on WordPress 5.6 and later. Nevertheless, glad to hear it’s working for you!
Forum: Plugins
In reply to: [AMP] Post editor not working after the latest AMP update@souldesigns The
@wordpress/compose
dependency bundled with WordPress v5.5.4 is too old and is missing some required functionalities that the plugin relies on to work.If you can, updating to WordPress v5.6 or later should resolve your issue.
Forum: Plugins
In reply to: [AMP] Error after last update@mark8888 Are you on WordPress 5.5.4 (or earlier) by any chance? If so, the issue is that the
@wordpress/compose
dependency bundled with your version of WordPress is too old and does not provide the necessary functionality required for the plugin to work.If you can, updating to WordPress v5.6 or later should resolve your issue.
- This reply was modified 3 years, 6 months ago by Pierre Gordon.
Forum: Plugins
In reply to: [AMP] Validated URLs Badge@egornmore If you chose the “Non-technically savvy or wanting a simpler setup” option in the Onboarding Wizard then AMP Validation Tools will not be shown for you, and so you would not see the validation counts in the admin sidebar.
If you want to re-enable the AMP Developer Tools even though you selected the non-technical user option, you can go to your user profile and enable the “AMP Developer Tools” option. Alternatively, you can reopen the Onboarding Wizard and select the technical user option.
Forum: Plugins
In reply to: [AMP] Validated URLs Badge@considerthis1 Are you on Reader mode by any chance? The validation screens are not shown by default if you are on Reader mode or if AMP Developer Tools is disabled for the user.
Forum: Plugins
In reply to: [AMP] AMP theme BrokenDo you have mobile redirection enabled by any chance?
Forum: Plugins
In reply to: [AMP] Twenty Twelve main menu bouncesForum: Plugins
In reply to: [AMP] Placeholder for iframesHi @yummy-wp,
The placeholder for
amp-iframe
elements are added by default. They will look like:<span placeholder="" class="amp-wp-iframe-placeholder amp-hidden"></span>
Forum: Plugins
In reply to: [AMP] Content is not sized correctly for the viewportHi @nobita, I assume you would have the
emulsion addons
plugin activated, since the theme recommends you install it when it detects the AMP plugin and standard or transitional mode is enabled. If that is the case, it is theemulsion addons
plugin that is removing the meta tags from the page, and not the AMP plugin.Whenever the
emulsion addons
plugin detects that a page is AMP, it removes theenqueue
support from the theme, which in turn will not output the meta tag:<meta name="viewport" content="width=device-width, initial-scale=1" id="emulsion-viewport" />
If the
viewport
meta tag is not present in the markup, the AMP plugin will add a default one, as it is required by AMP (as already stated above).It would be best to seek support from their team to have this resolved.
Forum: Plugins
In reply to: [AMP] Using WordPress AMP Plugin on an iPadHi @moodandmystery,
Unfortunately there has not been much effort put in supporting touch functionality; it has only been considered for desktop editing. However, supporting tablet devices is indeed on the roadmap!
Forum: Plugins
In reply to: [AMP] webp image not loadingHi Naveen,
I’m not able to replicate your issue on that page.
Also, it seems you have created 2 issues to report the same problem. Please close one of them if that is the case.
Forum: Plugins
In reply to: [AMP] Auto Add not showing properly on AMP pages on Desktop VersionHi Bramesh,
The
amp-ad
elements you have on your webpage are designed for mobile display only. I would recommend using responsive AMP-compatible display ad-units instead. Documentation for this can be found here.Forum: Plugins
In reply to: [AMP] Menu is not getting displayed on Mobile after Implementing AMPHi @bramesh,
Removing or commenting out the CSS I outlined in my previous comment should resolve your problem.
Forum: Plugins
In reply to: [AMP] Auto Add not showing properly on AMP pages on Desktop VersionHi @bramesh,
I’m unable to replicate the issue you are facing. Do note however, this would not caused by the AMP plugin, but by the theme’s CSS.
Forum: Plugins
In reply to: [AMP] Menu is not getting displayed on Mobile after Implementing AMPHi @bramesh,
The issue you describe is with your theme and not the AMP plugin.
To be more specific, there is a media query in your theme’s CSS file to not display the menu items if the screen width is less than 769px:
@media screen and (max-width: 768px) .themonic-nav ul.nav-menu, .themonic-nav div.nav-menu > ul, .themonic-nav li { background: none; border-bottom: none; border-top: none; display: none; }
Removing that CSS rule should then show the menu on mobile devices.
- This reply was modified 5 years ago by Pierre Gordon.