I have a problem with OpenCart v4.0.2.3 that I never had with v3.xx or v2.xx. using default theme and extensions. php 8.1 and different browsers.
Everything is fresh install and default settings (not old install or upgrade from v3.xx) except when I disable "Guest Checkout" ( System>Settings>Option>Checkout) and start to checkout a physical product (not downloadable) after entering register account information I will get an error "Warning: Items in your shopping cart require you to register for an account!" when I click continue button.
Please note that if "Guest Checkout" just be enable and I don't choose "Register Account" in checkout page (not choose Guest Checkout) everything works fine. If you can check the attachments, you will understand what I mean better.
Attachments
image_2024-10-27_192951442.png (189.04 KiB) Viewed 4158 times
image_2024-10-27_185630586.png (212.86 KiB) Viewed 4158 times
image_2024-10-27_185302580.png (218.67 KiB) Viewed 4158 times
Or try in upload/catalog/controller/checkout/register.php, change.
Code: Select all
if ($this->cart->hasDownload() || $this->cart->hasSubscription()) {
Code: Select all
if ($this->cart->hasDownload() || $this->cart->hasSubscription() || !$this->config->get('config_checkout_guest')) {
Code: Select all
if (!$json) {
// If not guest checkout disabled, login require price or cart has downloads
if (!$this->request->post['account'] && (!$this->config->get('config_checkout_guest') || $this->config->get('config_customer_price'))) {
$json['error']['warning'] = $this->language->get('error_guest');
}
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
Tracking Assiatant - Integrate Realtime Tracking Information on Website
OpenCart Extensions, Plugins Development, Themes Design and Website Optimization
FREE Guidance and Advice at https://www.cartcoding.com
Hello, Thank You so much. it works!ADD Creative wrote: ↑Tue Oct 29, 2024 6:41 pmSadly they do close a lot of bug reports without fixing. You could try 3.0.4.0 which has less bugs.
Or try in upload/catalog/controller/checkout/register.php, change.To.Code: Select all
if ($this->cart->hasDownload() || $this->cart->hasSubscription()) {
Code: Select all
if ($this->cart->hasDownload() || $this->cart->hasSubscription() || !$this->config->get('config_checkout_guest')) {
I had invented an unprincipled way myself, which was:
Enable "Guest Checkout" on "System>Settings>Option>Checkout"
Edit "extension/XXX/catalog/view/template/checkout/register.twig" and delete this part:
Code: Select all
<div class="form-check radio form-check-inline">
<input type="radio" name="account" value="0" id="input-guest" class="form-check-input"{% if not account %} checked{% endif %}/> <label for="input-guest" class="form-check-label">{{ text_guest }}</label>
</div>
Users browsing this forum: No registered users and 4 guests