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.
Example Code:
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.
1) How can I remove specific options and tabs from AMP panel in admin?
2) Where should I add code?
3) Where should I take an option ID?
4) Could I remove tabs?
Hi Alex,
Please go through this article – https://ampforwp.com/tutorials/article/how-to-remove-add-options-in-the-amp-panel/ and let us know if you face any issues now
this method not work for other theme then swift. only option are visible but sidebar doesn’t appear on page.
Hi Saurav,
Sidebar option, not available Design 1, 2 and 3 it’s only available in Swift theme and please let us know if there’s anything else we can do.