On my site, I have the additional users. I don't want to allow them to press "Flush All Pages" button.
I've tried to add the custom CSS code to hide. It's not work for me.
Code
li#cf_flush_all a {
display: none !important; }X3 Photo Gallery Support Forums
<?php /* <!-- load custom panel.css from parent of X3 installation if exists --> */
if(file_exists('../../panel.css')) echo '<style><!--' . file_get_contents('../../panel.css') . '--></style>';
if(file_exists('custom.css'))echo '<style><!--' . file_get_contents('custom.css') . '--></style>';
?><?php
/* <!-- load custom panel.css from parent of X3 installation if exists --> */
if(file_exists('../../../panel.css')) echo '<style><!--' . file_get_contents('../../../panel.css') . '--></style>';
/* <!-- load custom custom.css from panel folder if exists --> */
if(file_exists('../custom.css'))echo '<style><!--' . file_get_contents('../custom.css') . '--></style>';
/* <!-- load /config/panel.css if exists --> */
if(file_exists('../../config/panel.css'))echo '<style><!--' . file_get_contents('../../config/panel.css') . '--></style>';
?>