layerslider.php
14 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Remove update notices for layer slider |
| 4 | * |
| 5 | * @return void |
| 6 | */ |
| 7 | function auxin_compatibility_layerslider_remove_plugins_purchase_notice(){ |
| 8 | remove_action( 'after_plugin_row_LayerSlider/layerslider.php', 'layerslider_plugins_purchase_notice', 10 ); |
| 9 | remove_action('admin_notices', 'layerslider_important_notice'); |
| 10 | remove_action('admin_notices', 'layerslider_update_notice'); |
| 11 | remove_action('admin_notices', 'layerslider_unauthorized_update_notice'); |
| 12 | } |
| 13 | add_action( 'admin_notices', 'auxin_compatibility_layerslider_remove_plugins_purchase_notice', 12 ); |
| 14 |