Clicky

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.

Ask your Questions Directly!
If you can't find the solutions in this article, then just ask us in the comments and we will answer it for you!
Updated on May 7, 2020

    Are you still looking for a solution?

    Then fill out the below form and we will reach out to you within a few hours.

    Was this article helpful?

    Related Articles

    Comments

    1. 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?

      1. this method not work for other theme then swift. only option are visible but sidebar doesn’t appear on page.

        1. 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.

    Leave a Comment