Hello everyone, does anyone know to delete or disable some features? Id like to remove the invoice payments and tasks. Somehow to turn off those features or hide them.
1 Like
I would hide them.
You’re in luck. I found this piece in the sidebar:
<?php if (get_setting('projects_enabled') == 1) : ?>
<li>
<a href="<?php echo site_url('tasks/index'); ?>" title="<?php _trans('tasks'); ?>"
class="tip" data-placement="right">
<i class="fa fa-check-square-o"></i>
</a>
</li>
<?php endif; ?>
That means that if the setting is set to false
at least fhe menu item doesn’t show up in the sidebar.
Let’s hope it’s consistent through the codebase.
Otherwise look for this:
<li>
<a href="<?php echo site_url('payments/index'); ?>" title="<?php _trans('payments'); ?>"
class="tip" data-placement="right">
<i class="fa fa-money"></i>
</a>
</li>
and just put it in comments:
<!-- <li>
<a href="<?php echo site_url('payments/index'); ?>" title="<?php _trans('payments'); ?>"
class="tip" data-placement="right">
<i class="fa fa-money"></i>
</a>
</li> -->
Payments is a little trickier than tasks:
- There’s a payments tab on the clients view page.
- There’s an
Enter Payment
menu option with the invoices.