Hello, you can try to fix the problem by change some files:
- view_cart.php (line 29)
- view_confirmation.php (line 27)
- view_form.php (line 26)
- view_payment_methods.php (line 26)
- view_summary.php (line 29)
All files try to call the file template.inc, but we use now Template.php.
There are two ways to fix it.
Way 1 (recommanded for WB 2.13 and higher)
- Add a double slash in front of the lines to make them useless in all files
- add the following line before the first php code (e.g. line 17, below the big comment) in all files
use vendor\phplib\Template;
Way 2 (works also)
Replace this in all files
require_once(WB_PATH.'/include/phplib/template.inc');
with this
require_once(WB_PATH.'/include/phplib/Template.php');
A test was successfully.