When AMP Theme Framework is activated then some of the options will not be displayed in AMP options panel and if you want to display that specific option then follow you can follow this tutorial.
With the help of below code, you can enable the required options in the AMP Options Panel when AMP Theme Framework is activated.
To add an option:
add_filter('ampforwp_options_enabler','ampforwp_new_options');
function ampforwp_new_options($options){
$options = array('gnrl-sidebar');
return $options;
}To remove an option:
add_filter('ampforwp_options_remover','ampforwp_remove_options');
function ampforwp_remove_options($options){
$options = array('gbl-sidebar');
return $options; }Note: Which option you need copy this ID and paste in this code
For example:
If you want to add sidebar then you need to find “sidebar” in plugins folder like below the screenshot.
Note: You need to just copy that particular ID and paste in this code
Directory:
wp-content\plugins\amp-theme-framework-master\amp-theme.php
Inside this file “amp-theme.php” you need to add this code like below the screenshot.
Now “gnrl-sidebar” option added successfully like below the screenshot.
That’s it for this tutorial!
We hope it helped you. If you have any feedback or questions, then please share them in the comments section below.
If you want to add an AWeber form in AMP then first you need to…
Webpushr is the fastest growing web push notifications platform that marketers love & developers rely…
Follow these steps to add Adobe Analytics in AMP Step 1: Go to WordPress Admin Area -> AMP…
Core Web Vitals are the subset of Web Vitals that apply to all web pages,…
The following reasons can be shown for non-indexing. Server error (5xx) Your server returned a 500-level…
We have added the Google Analytics 4 ( GA 4 ) integration in AMPforWP v1.0.80.…