This file contains hidden or 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
/** | |
* move woo bundled products on product page form from "woocommerce_before_add_to_cart_button" to "woocommerce_after_single_product_summary" | |
*/ | |
function ax_wc_product_bundles_move_singleproduct_display() { | |
if ( class_exists('WC_PB_BS_Display') ) { | |
remove_action( 'woocommerce_before_add_to_cart_button', array( 'WC_PB_BS_Display', 'display_bundle_sells' ), 1000 ); | |
global $product; | |
if ( $product->is_type( 'variable' ) ) { |
This file contains hidden or 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
# Updated Full Perfex Hook List - For Perfex CRM Developers - Perfex CRM v3.2.1 | |
## File: <perfexcrm_root>/application/controllers/Authentication.php: | |
10: hooks()->do_action('clients_authentication_constructor', $this); | |
61: hooks()->do_action('after_contact_login'); | |
217: hooks()->do_action('after_client_register', $clientid); | |
239: hooks()->do_action('after_client_register_logged_in', $clientid); | |
307: hooks()->do_action('before_user_reset_password', [ | |
320: hooks()->do_action('after_user_reset_password', [ | |
341: hooks()->do_action('after_client_logout'); |
OlderNewer