Hi,
Which booking mode are you using?
Hi,
Thanks for responding. I am just using the standard booking mode, multiple booking mode is disabled.
sorry I forgot to mention that I’m using Event manager 5.6.6.1 and event manager pro 2.4.2. Thanks.
Got this sorted, thanks for your assistance. 🙂
I ended up just writing a javascript file and enqueue it with the condition to only run for that post id.
Here is an example of the code for anyone else who needs it
function my_assets() {
if ( is_single( '1859' ) ) {
wp_register_script( 'myscript', get_stylesheet_directory_uri() . 'myscript.js', array( 'jquery' ) );
wp_enqueue_script( 'myscript' );
}
}
add_action( 'wp_enqueue_scripts', 'my_assets' );
And remember to call the function in header file.