Search found 60 matches

by jafo66
21 Aug 2024, 16:29
Forum: Laravel package
Topic: Email Job Errors
Replies: 1
Views: 589

Email Job Errors

I made some changes to the templates in the order/email/payment job, which now seems to have stopped working. I can't figure out how to see the output (to the PDF attachment) and/or see the log files to understand what happened. Is there a way to manually run the job on a specific order OR is there ...
by jafo66
05 Aug 2024, 03:44
Forum: Laravel package
Topic: Keep the basket between logins
Replies: 5
Views: 5674

Re: Keep the basket between logins

Could I use the "named basket" functionality behind the scenes? Meaning, I looked for a basket named "MySpecialBaskets", if found load it, save it, and the delete the older one with the same name? One note on this question... I have already hidden the named baskets functionality ...
by jafo66
01 Aug 2024, 06:48
Forum: Laravel package
Topic: Keep the basket between logins
Replies: 5
Views: 5674

Re: Keep the basket between logins

Okay, that makes sense, but how do I "load" it? Do I use the basket ID column to load it and should that be with the "frontend" controller? Also, do I need to load it and then immediately save it so the session knows this is the one to use?

Thanks!
by jafo66
29 Jul 2024, 02:34
Forum: Laravel package
Topic: Keep the basket between logins
Replies: 5
Views: 5674

Keep the basket between logins

Background: I'm looking to have the basket be permanent or at least last from one login to another for a specified period of time. Right now I see a number of baskets created in the mshop_order_basket table from what I can understand from the code corresponds to the CSRF tokens but they change as yo...
by jafo66
28 Jul 2024, 02:32
Forum: Laravel package
Topic: Show Product Subparts only for certain types of products
Replies: 6
Views: 9291

Re: Show Product Subparts only for certain types of products

Nevermind... I had to force a hard reload on the page and then it worked properly.
by jafo66
27 Jul 2024, 19:47
Forum: Laravel package
Topic: Show Product Subparts only for certain types of products
Replies: 6
Views: 9291

Re: Show Product Subparts only for certain types of products

here is my manifest file: { "projectName": "tournament-management", "licenseText": "proprietary", "pkgs": [{ "name": "tournament-management CSS", "file": "index-css", "isDebug": true, "fileInclud...
by jafo66
27 Jul 2024, 19:40
Forum: Laravel package
Topic: Show Product Subparts only for certain types of products
Replies: 6
Views: 9291

Re: Show Product Subparts only for certain types of products

This doesn't seem to be working, did I miss understand your reply? const origInit = Aimeos.Product.Selection.init; Aimeos.Product.Selection.init = () => { console.log('Yes, the override worked'); const tab = $(".item-navbar .selection"); ['tournament', 'group', 'select'].includes($("....
by jafo66
24 Jul 2024, 12:08
Forum: Laravel package
Topic: Show Product Subparts only for certain types of products
Replies: 6
Views: 9291

Re: Show Product Subparts only for certain types of products

Is there a good method to add an item to that list or do I need to override the entire product.js file? NOTE: to be clear, I'm trying to avoid having my own version of the file.
by jafo66
24 Jul 2024, 12:04
Forum: Laravel package
Topic: Extra non-breaking paragraph tags in CKEditor
Replies: 5
Views: 10709

Re: Extra non-breaking paragraph tags in CKEditor

It looks like there may be a fix on the way: https://github.com/ckeditor/ckeditor5/pull/16770 I'm still messing with the configuration to see if we can remove those extra tags... some of the comments seem to indicate that it is possible under certain circumstances, but I'm not sure those would be &q...
by jafo66
23 Jul 2024, 21:23
Forum: Laravel package
Topic: Extra non-breaking paragraph tags in CKEditor
Replies: 5
Views: 10709

Re: Extra non-breaking paragraph tags in CKEditor

Have you guys tried any of these configuration options?

Code: Select all

config.ignoreEmptyParagraph
config.fillEmptyBlocks
config.forceEnterMode
config.autoParagraph = false;