When using the customizer, you may have noticed a pig icon which briefly appears when changing a setting. This is only viewable to the administrator, not the end user.
Also, it’s part of the Kirki customizer plugin, not the theme itself.
You can however remove this icon with a custom function, added to either a child theme’s functions.php file or via the Code Snippets plugin.
1 2 3 4 5 6 7 |
function shoptimizer_your_custom_loading_logo() { ?> <style> .kirki-customizer-loading-wrapper { background-image: none; } </style> <?php } add_action( 'wp_head', 'shoptimizer_your_custom_loading_logo', 100 ); |