Code fixes and adjustments
-
Proposed fixes and adjustments:
/classes/em-booking.php line 357:
apply_filters('em_booking_get_price', $this->booking_price, $this);Should be:
$this->booking_price = apply_filters('em_booking_get_price', $this->booking_price, $this);/em-actions.php line 635:
add_action('init','em_init_actions',11);Increase priority value to allow plugins to register their custom post types and taxonomies (specifically pods) for use in AJAX requests:
add_action('init','em_init_actions',15);Thank you for considering these adjustments.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Code fixes and adjustments’ is closed to new replies.