
joe_g
Members-
Posts
447 -
Joined
-
Last visited
Everything posted by joe_g
-
Console error on pay screen with stripe
joe_g replied to joe_g's topic in ProcessWire Commerce (Padloper) Support
Yes I did make a mistake. I reinstalled everything under Padloper/ and I got a bit further.. -
Oh I see, thanks. So the $customFormFields in checkout.php is a 'schema' to define the fields, then I also need to change the markup myself. Makes sense. Maybe it's good to mention the markup file here as well, it wasn't clear to me that it existed: https://docs.kongondo.com/start/checkout/custom-customer-form.html#supported-form-inputs Initially I wasn't sure if the checkout.php did anything at all, but since I could hide and show the arrow, I knew it did : P . Not my most thought-through comment. No problems, one step at a time. Appreciate the patience (more questions to come for sure : P ) tx J
-
Hi hello, I've gotten a bit further but the Pay XX button doesn't do anything (after choosing strip as payment method). There are some console errors: The path to the missing js fil has an extra "padloper/" in it, but my install is one level up, directly under modules: I remember first trying to put it all under 'Padloper' but not getting it to work. Did I make a mistake? So should all the padloper module stuff be under "Padloper/" actually? tx J
-
Where can I find the addons?
joe_g replied to joe_g's topic in ProcessWire Commerce (Padloper) Support
I found this video, and in it there is a list of addons that I couldn't find anywhere, so that's why I asked: -
Proceed to confirmation not proceeding
joe_g replied to joe_g's topic in ProcessWire Commerce (Padloper) Support
Great, thanks - now it works! -
Hello, The addons doesn't seem to be included in the padloper 2 download. Where can I find them? If i go to settings addons I get If I instead create the folder /templates/padloper/addons/ I get tx,J
-
Hi there, I'm trying to change the custom checkout form but it's not using the code for the custom form. No matter if I use the latest demo-1 version (with corrected variable names): https://github.com/kongondo/Padloper2Starter/blob/demo-1/templates/checkout.php or the minimal version: https://github.com/kongondo/Padloper2Starter/blob/demo-5/templates/checkout.php it looks the same However if I change $isShowSectionBackArrow to 'false' it does hide the arrow, so my checkout.php is processed. Also if i set $isCustomForm to 'false' i get a different, more basic, layout: tx,J
-
Error after checkout, right when about to buy
joe_g replied to joe_g's topic in ProcessWire Commerce (Padloper) Support
-
It's the general PW page overview. In general things are a bit borked due to some deprecation notice, I think.. ps. Nice with a proper ecommerce solution for PW!
-
Error after checkout, right when about to buy
joe_g replied to joe_g's topic in ProcessWire Commerce (Padloper) Support
-
With 8.2 the 'pages' view doesn't work either. You get 'unkown error, please try later'. I downgraded to 8.1 for the time being, that worked for now
-
Hi there, just installed padloper 2, for that I needed php > 7.3, so i upgraded to what is now the latest (8.2) but I get these errors: Deprecated: Creation of dynamic property ProcessWire\Padloper::$outOfStock is deprecated in /home/joel/subdomains/godzillab/site/modules/Padloper/Padloper/Padloper.module on line 111 Deprecated: Creation of dynamic property ProcessWire\Padloper::$productNotFound is deprecated in /home/joel/subdomains/godzillab/site/modules/Padloper/Padloper/Padloper.module on line 112 Deprecated: Creation of dynamic property ProcessWire\Padloper::$checkYourOptions is deprecated in /home/joel/subdomains/godzillab/site/modules/Padloper/Padloper/Padloper.module on line 113 Deprecated: Creation of dynamic property ProcessWire\Padloper::$session_id is deprecated in /home/joel/subdomains/godzillab/site/modules/Padloper/Padloper/Padloper.module on line 122 thanks!
-
Hi there, I've got a site with pages built with the repeater matrix. In the repeater I've got an images field where the editor uploads images and can then place them in the body text. The placed images only appear if you're logged in as admin. I suppose that has to do with the repeater matrix pages aren't fully visible for guest users, or something in that line. But I don't know what to do about it exactly. One solution is to have an 'images' field on the page itself, and not inside the repeater matrix, but its a hassle because once you are editing a text field inside the repeater matrix and select the image icon to place an image you're not in the parent page, you have to go and find it, like so: What's the solution to allow placeable images inside a repeater matrix? Thanks! j
-
Cannot get Lazy cron to work, no logs, no message, no cache file, nothing
joe_g replied to joe_g's topic in General Support
omg. ...... took me a good hour to realize I had forgotten to actually install the lazy cron module *hand clap* -
Hi there, I can't get my LazyCron to fire <?php $useMain = false; $wire->addHook('LazyCron::everyMinute', null, function() { $log->message("1 min passed"); echo '1 min passed'; }); echo 'hooked - '; ?> Some output for good measure I tried making it into an anonymous function (see above), but same result as by using the example in the docs (with regular function). No lazycron*.cache file, No logs, No message - it just doesn't fire at all. Not sure how to proceed? tx!
-
Hi there, I've got a site where the editors are creating tags using a 'Page Auto Complete' Field. Through this field they can create new tags with "Allow new pages to be created from field". The problem is that any page (tag) created this way ends up only be published in the default language. The site is bilingual, and when trying to access this newly created page (tag) in the non default language it gives a 404. Any tips how to get the page (tag) be published in all languages is greatly appreciated ? thanks, J
-
Hi there, I've got a peculiar problem in the backend I don't manage to solve on my own. After moving a page, the spinner won't stop spinning: Under Network, in the console I can see continuous requests: Not sure how to fix this one. I run over 10 other PW install on the same server, they all work fine. But this one is the only one with the latest version ProcessWire 3.0.200. So I assume it has to do with something recently changed. thanks!
-
Randomize order in backend (actual order, not presented order)
joe_g replied to joe_g's topic in General Support
@Jan Romero Wow, interesting. Thanks, will try this! -
Randomize order in backend (actual order, not presented order)
joe_g replied to joe_g's topic in General Support
I have ~800 things (in this case published texts) that needs to be shown in random order. It's about 20-50 pages or results, depending how many I show per page. Preferably the randomization stays the same, so a refresh (or a page change) doesn't ruin the order.