-
Posts
354 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Klenkes
-
Oh, sorry, I must have missed that part... Unfortunately I don't know anything about the ProcessExportProfile module. Webserver and browser sometimes cache stuff in a hysterical manner. If the file is gone, it is gone! Somebody got it in the cache. I'm sorry, I am of no help 😢
-
This is just a warning that the memory limit is to low. The site should run fine. A client of mine has the same warning with his shared hosting and doesn‘t want to upgrade. Just check your image fields that images are resized during upload through the browser. I usually resize images to 2000px width or height, and 64Mb memory will be enough. No need to go through the installer again!
-
Most of the time I use Combo for settings in my MatrixFields to build sections of content. Like this: Or like that: All the fields are in one place and showif works great within Combo. Not so great if you have a dependancy in a parent field.
-
KIOSK, One-Page Checkout Module for ProcessWire
Klenkes replied to fruid's topic in Module/Plugin Development
@fruidShort question: What fieldtype should stack_prices be? -
I did pagination but infinite scroll not working?
Klenkes replied to kkalgidim's topic in Getting Started
You are executing infiniteScroll in the HEAD before you load Jquery(bottom of page) -
Thank you again for this great module. It's a huge time saver. No website of mine without it! V 0.2.0 seems to work fine!
-
WayFathomAnalytics - Fathom Analytics dashboard in your admin panel
Klenkes replied to Craig's topic in Modules/Plugins
The warning banner seems to be gone now. The cut off iframe results from iframeSizer.contentWindow.min.js not being loaded by Fathom. I hope they are aware and working on it. -
WayFathomAnalytics - Fathom Analytics dashboard in your admin panel
Klenkes replied to Craig's topic in Modules/Plugins
@CraigHave you noticed recently that Fathom inserts a warning banner if Fathom is embedded via your module? And the iframe is cut off at the bottom. Screenshot: I couldn't figure out what to do. -
Don't get me wrong, but these hours would have been better spent on 74€ for a single licence of FormBuilder. No coding required. I own a DEV licence since 2016 and I never think twice about the yearly payment, not even a second! FormBuilder slogan should be: Forms made easy!
-
what about the module SimpleContactForm. https://processwire.com/modules/simple-contact-form/ Wouldn‘t do that what you want?
-
[solved] Does disabling multi-lang work for you?
Klenkes replied to bernhard's topic in General Support
I did. I checked 3.0.190 and it worked. I checked 3.0.197 and it doesn't work anymore. Somewhere in between it happened. -
[solved] Does disabling multi-lang work for you?
Klenkes replied to bernhard's topic in General Support
Tried your copy on my local dev server and it shows the same behavior like in the video. Both languages are there until I save or publish. Then additional langs vanish. -
[solved] Does disabling multi-lang work for you?
Klenkes replied to bernhard's topic in General Support
Sorry, at the moment I only have PW 3.0.184 multilang availabe, and there it works as it should. I will try later with a more recent version. -
Novice - Need to add widget / limits on HTML
Klenkes replied to andrewbauer's topic in Getting Started
Or if you want to jump right into it, you can always read about HannaCode. It's like Shortcodes in WP. Just don't forget to add the TextFormatter to your field! -
I just tried with PW 3.0.191 and kept everything default. Seems to work for me with a dot as a separator but not with a comma. Comma leaves the field empty afer save.
-
How to setup a exsisting website to multilanguage
Klenkes replied to Angelino's topic in General Support
You probably have to convert each field from singlelanguage to a multilanguage field in the fields settings. Not a big deal! i.E. Textarea to Textarea(Multilanguage) -
Good idea. I try that as well for my client.
-
How about this in your config.php $config->paths->templates = 'YOUR_PATH_TO/site/templates/pages/'; $config->urls->templates = '/site/templates/pages/';
-
Display multiple fields in the page search (backend)
Klenkes replied to lenoir's topic in General Support
I did something like you want. Add this hook to ready.php: $wire->addHookBefore('ProcessPageSearchLive::execute', function(HookEvent $event) { $event->wire()->addHookAfter('FieldtypePageTitle::wakeupValue', function(HookEvent $event) { $page = $event->arguments(0); // specify your template if($page->template == 'tool') { // get the fields you like $prefix = $page->pre; $suffix = $page->suf; // add your data to the list $event->return .= " | {$prefix} {$suffix}"; } }); }); -
I have a client who fights with his logouts as well. I am almost sure(98%) his Avira Antivir deletes or blocks something during his session.
-
With Formbuilder you can save your submitted data either as entries or normal pages. You may then query those entries or pages and output them as you see fit. Thoroughly sanitized I don't see why this wouldn't work. Depends on your Processwire skills. But I am sure there are people in the forum with more experience in that matter.
-
This is weird. I set up a clean installation as well, single language with shipped blank profile, and cannot create a new page with template basic-page. However... I can create a new template and create exactly 1 new page with it. A second page redirects me to the edit screen of the former created page... what's going on here?
-
@ryan I am unable to create pages with 3.0.191 I wanted to use the quiet days to set up a small website for a friend. DEV 3.0.191, multilanguage German and English with German as the default, as I did countless times. The website was pretty basic with only AOS and Combo modules. When I wanted to setup a basic page structure I noticed that I cannot create pages, as PW redirected me to Admin - Access - Users, with the warnings that the page name is already in use, the page has been created, and has been renamend to xxxx-100, which wasn't the case. No page was created. A downgrade to 3.0.190 solved the problem and everything works as it should. Screenshot: Translations: The page /de/bio/test-100, using template Standardseite(basic-page) has been created.(not true) Warning! the page name test is already in use and has been changed to test-100(not true)
-
@wbmnfktr Thanks for the pointers! The hoster is All-Inkl. in Germany, so no fancy cloud service. PW logs don't say much, just: this request was aborted because it appears to be forged Unfortunately the client doesn't live nearby, so no chance of dropping by and checking myself. At some point he will get frustrated and eventually agrees to use some sort of Teamviewer with me. My gut feeling says inhouse routing, AntiVirus program or VPN, but my guts are old now...