How to remove/add options in the AMP panel

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.

Share
Published by
Sonali R

How to create an AWeber form in AMP

If you want to add an AWeber form in AMP then first you need to…

3 years ago

How to setup webpushr notification in AMP

Webpushr is the fastest growing web push notifications platform that marketers love & developers rely…

3 years ago

How to add Adobe Analytics in AMP

Follow these steps to add Adobe Analytics in AMP Step 1: Go to WordPress Admin Area -> AMP…

3 years ago

What is the CWV plugin all about

Core Web Vitals are the subset of Web Vitals that apply to all web pages,…

4 years ago

How to fix “Alternate page with proper canonical tag” Page Index issue in Google Search Console

The following reasons can be shown for non-indexing. Server error (5xx) Your server returned a 500-level…

4 years ago

Google Analytics ( GA4 ) integration in AMPforWP

We have added the Google Analytics 4 ( GA 4 ) integration in AMPforWP v1.0.80.…

4 years ago