This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Quick Reference Guide For Perfex CRM Language functions | |
_l('string') // Basic language conversion | |
_d('date') // Will output formatted date (Although seems to output datetime if datetime in DB) | |
_dt('datetime') // Will output formatted datetime output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File ---> application\controllers\admin\Authentication.php: | |
23: hooks()->do_action('admin_auth_init'); | |
80: hooks()->do_action('after_staff_login'); | |
107: hooks()->do_action('after_staff_login'); | |
117: hooks()->do_action('after_staff_login'); | |
219: hooks()->do_action('after_user_logout'); | |
File ---> application\controllers\admin\Auto_update.php: | |
14: hooks()->do_action('before_perform_update', $latest_version); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // For implementation instructions see: https://aceplugins.com/how-to-add-a-code-snippet/ | |
/** | |
* Remove add to cart notice in WooCommerce | |
*/ | |
add_filter( 'wc_add_to_cart_message_html', '__return_empty_string' ); |