Search found 1479 matches

Search found 1479 matches

Re: Customer Groups appearing in guest checkout billing details

paulfeakins wrote:
Tue Jan 24, 2023 9:03 pm
So is the issue fixed?
Yes - just used the code provided by J Neuhoff as is.
Cut the customer group code that was there in each file and pasted the new.
I still can't believe it would work this way though.

Thanks for the input from everybody.

Jump to post
  • Wed Jan 25, 2023 11:28 pm
  • Replies 8
  • Views 984
Re: Customer Groups appearing in guest checkout billing details

JNeuhoff wrote:
Tue Jan 24, 2023 12:08 am
You'd probably have to modify the catalog/view/theme/<your-theme>/checkout/guest.twig file, e.g. to have amongst others this in there:
Thanks for that
As I have said I was hoping it was something obvious I had missed, I can't believe it works this way as is.

Jump to post
  • Tue Jan 24, 2023 4:19 am
  • Replies 8
  • Views 984
Re: Customer Groups appearing in guest checkout billing details

Are the trade groups unticked in the Customer Groups section of the setting under the Option tab? Well if they are unchecked then the option is no longer available in REGISTRATION for those groups. Which it obviously needs to be. Like I say I get the feeling I am missing something stupidly obvious ...

Jump to post
  • Tue Jan 24, 2023 4:16 am
  • Replies 8
  • Views 984
[Solved} Customer Groups appearing in guest checkout billing details

As above I have someone who has set up customer groups for trade and distributors as well as the default group. Everything seems OK however the default group can see trade and distributor options on GUEST CHEKOUT BILLING DETAILS. They are then able to select one of these and get the pricing of those...

Jump to post
  • Mon Jan 23, 2023 11:09 pm
  • Replies 8
  • Views 984
Re: oc_quote.price int ?

Hello, I'm using opencart-3.0.3.7, and I get the modification "MW OC Quotes" from "mikeinterserv", version 1.0. It is working, but I do have a problem, due to the type of oc_quote.price . Is there any reason it's not a float ? I can't show the full price because of it. Sure it's...

Jump to post
  • Wed May 18, 2022 9:20 pm
  • Replies 2
  • Views 294
Re: Admin password doesn't work on Opencart Version : 3.0.3.8

Search the forum - time zone
There is a problem when you set the time zone.
You need to make sure it is set to UTC in the DB.
You can reset it through phpMyadmin.
There are a lot of posts about it you should find.

Jump to post
  • Sun May 15, 2022 10:41 pm
  • Replies 1
  • Views 1354
Re: [SOLVED] Combine elements to a variable in a json array

If you want name why did you put product_id + Sku instead of name + sku :-)

Code: Select all

'name' => strip_tags(html_entity_decode($result['name'], ENT_QUOTES, 'UTF-8')) . ' - ' . $result['sku'];
Strip tags and decode are not required for integer. Only text.

Jump to post
  • Sun May 15, 2022 10:25 pm
  • Replies 4
  • Views 454
Re: Combine elements to a variable in a json array

Try

Code: Select all

'name' => $result['product_id'] . ' - ' . $result['sku'];

Jump to post
  • Sun May 15, 2022 10:07 pm
  • Replies 4
  • Views 454
Re: when use "new domDocument;" in opencart gives error -> "This page isn't working

paulfeakins wrote:
Thu May 12, 2022 5:21 pm
kanchan1995 wrote:
Wed May 11, 2022 6:07 pm

Code: Select all

$docs = new domDocument;
domDocument needs ()
Not necessarily - But probably better to add the required encoding at least.

Jump to post
  • Thu May 12, 2022 11:45 pm
  • Replies 13
  • Views 1104
Re: when use "new domDocument;" in opencart gives error -> "This page isn't working

Try this. <?php class ControllerExtensionModuleAllOffers extends Controller { public function index() { $this->load->language('extension/module/salescombopge'); $data['breadcrumbs'] = array(); $data['breadcrumbs'][] = array( 'text' => $this->language->get('text_home'), 'href' => $this->url->link('co...

Jump to post
  • Thu May 12, 2022 11:43 pm
  • Replies 13
  • Views 1104
Re: suddenly no access to adminlogin due to reCAPTCHA

If you are completely inexperienced with site hosting arrangements you are either going to have to ask your hosting company to help you or ask somebody here to look at your files via FTP. Otherwise you might be here all week going back and forth.

Jump to post
  • Sun May 08, 2022 10:34 pm
  • Replies 6
  • Views 557
Re: Square API

To be honest I am not that familiar with the square payment extension. This file fixed a previous problem a while back. It would do no harm to rename the original file you have and try this one. If it goes pear shaped you can just revert back to the original file. :-) I would expect the file you hav...

Jump to post
  • Sun May 08, 2022 1:52 am
  • Replies 8
  • Views 788
Re: Square API

Check the file in your
admin/controller/extension/payment/squareup.php
against the file attached and go here to check if there are any differences.
https://www.diffchecker.com/diff
Just copy and paste each file into the input areas.

Jump to post
  • Sun May 08, 2022 12:06 am
  • Replies 8
  • Views 788
Re: Category menu in default theme not working on cellphone/tablet

The coding for your accordian dropdown is incorrect.
Whether its just css or more.
Its trying to toggle the links open/close that should not.
Contact extension bazzar - they make that extension you are using.

Jump to post
  • Sat May 07, 2022 10:43 pm
  • Replies 11
  • Views 762
Re: Admin Ocmod requirement

ForgedGround wrote:
Sat May 07, 2022 10:12 pm

Than you man, i appreciate it.

Send me your paypal please, i insist.
OK if you are happy then no worries.
You don't have to do that, you can just remember me another day if you need a project done.
:-)

Jump to post
  • Sat May 07, 2022 10:18 pm
  • Replies 52
  • Views 2716
Re: Admin Ocmod requirement

I will change the position in the filter and heading column, no problem
Sorry to frustrate you last night, few silly errors I made.
Tell me exactly what order you want to have.

Jump to post
  • Sat May 07, 2022 10:05 pm
  • Replies 52
  • Views 2716
Re: Admin Ocmod requirement

That's what happens when people don't use Event Triggers. With OCMod / VQMod, one line can screw up the entire project as well as other extensions as opposed to Events where one line of unmatched results could simply return an empty result without causing anything else to fall apart. ;) Yes you are...

Jump to post
  • Sat May 07, 2022 8:36 am
  • Replies 52
  • Views 2716
Re: Admin Ocmod requirement

I don't blame him if he gave up - I messed that up 3 times :-)

Jump to post
  • Sat May 07, 2022 8:23 am
  • Replies 52
  • Views 2716
Re: Admin Ocmod requirement

@##@=+
Anyway its late :-)
Thanks for spotting that staightlight.
One more time.

Jump to post
  • Sat May 07, 2022 8:04 am
  • Replies 52
  • Views 2716

Search found 1479 matches