Hello.
1) Please try to check this troubleshooting instruction if you are having any issues with CAPTCHA: https://wpbookingcalendar.com/faq/captcha-showing-problems/
2) Please recheck that your server was configured for using 2.0 GD library.
Reason
The cause is that you do not have the version 2.0 GD library loaded in PHP which defines this function, which is used for the captcha in this plugin.
Checking
Use this PHP code to view what extensions you have loaded on your hosting account.
<?php
print_r(get_loaded_extensions(
));
print_r(var_dump(gd_info()));
?>
Just create a text file with the four lines above in your public_html folder (or wherever your web root is), name it with a .php extension like “test.php” and then run it by using your web browser like “https://www.yourdomain.com/test.php “
This does not write correct HTML but will show you the info you need. (Just do a View/Source on your browser if you want a nicer looking format.) Look for text like “[some number] => gd”. If you don’t see this, you do NOT have the GD library loaded.
Next you want to look for the version number. Something like: [“GD Version”]=> string(27) “bundled (2.0.28 compatible)”
This needs to say version 2.0 or later.
———–
If you do not see GD version 2.0, you must get your hosting provider to install or upgrade your system.
———–
LEARN MORE:
Learn more about the GD library:
https://www.php.net/manual/en/ref.image.php
Learn more about this function:
https://www.php.net/manual/en/function.imagecreatetruecolor.php
If you are still will have this issue, please recheck the error.log in your server configurations to be sure in a reason of that issue.
3) If you are using Cache plugin (like “WP Super Cache” ), please deactivate it or add the exception to the page with booking form to do not cache this page.
Kind Regards.