-
Posts
196 -
Joined
-
Last visited
-
Days Won
1
Everything posted by zoeck
-
I think Wanze no longer uses PW, it was written here somewhere... "LAST VISITED October 23, 2021"
-
Nice Page! But why didn't you just adapt the admin theme to the CI? Thanks to @bernhard this is now very simple π https://processwire.com/blog/posts/pw-3.0.179/
-
Is there actually another possibility other than this module to predefine templates for pages (or defined parents/templates)? I need exactly this function, but there have been no updates for this module for a long time π
-
I trink the popup is a new repeater Matrix function π (released in october 2021) https://processwire.com/blog/posts/new-repeater-and-repeater-matrix-features/
-
Not tested π echo $p['select_countries']['id'];
-
Just Connect to your old database and Save your entries as Pages π? o
-
Price-fields in german settings (decimal point=comma)
zoeck replied to csaggo.com's topic in Padloper Support
Off topic, but shouldn't the decimal field be used for a price (not float)? -
Just have a Look at this π
-
The article is not very interesting, except for absolute beginners π It only describes how to install PW and then create a "web business card" with 2-3 fields. The comments are the typical WordPress comments π And yes, I have already left my thoughts as a comment π
-
I think a repeater matrix field would be perfect for this π Then you can set a headline and a content type, these can be added by the editor or a normal repeater with table field (i think it's easier for the editor) (repeater matrix and table field are ProFields, So you need a license for it) But it would also work without ProFields Just create a repeater with the headline field and in the repeater an additional repeater with 2 fields (Name and Fee) Repeater1: Repeater2: And the Final Result:
-
CKEditor issue with some special unicode characters
zoeck replied to Jan P.'s topic in General Support
Check out this thread π Do you have your database charset set to utf8mb4? -
Oh my God, I was able to "solve" the problem. Just checked this function with a user on his PC and the problem did not occur. It is caused by the "Enpass" (password manager) plugin from the browser. After disabling the "Passwort Manager Popup Function", everything is working again π I think it's a known Problem: https://discussion.enpass.io/index.php?/topic/27897-enpass-browser-extension-steals-focus-in-webform-when-using-iframes/
- 1 reply
-
- 1
-
-
Hello, I have a very strange problem which I first noticed with the "FEEL" module. (Current Master Version ProcessWire 3.0.184 - clean install, blank profile, without any none core modules) When an admin edit link is opened in an iframe (with or without "&modal=1"), textarea fields (not CKEditor!) don't work correctly anymore or can't be focused. The previously selected field is always focused. After collapsing the "previously selected field", the textarea is working again. If the problem occurs, it is also no longer possible to press the save button. A little screencast: The other fields work without problems! On the corresponding page there are no javascripts and no styles included. If you open the page without iframe, everything works. I was able to reproduce the problem in Edge and Firefox. Can anyone else reproduce the problem? Field Config: { "cmn_longtext": { "id": 231, "name": "cmn_longtext", "label": "Textfeld", "flags": 0, "type": "FieldtypeTextarea", "tags": "Allgemein", "inputfieldClass": "InputfieldTextarea", "textformatters": [ "TextformatterEntities" ], "contentType": 0, "htmlOptions": "", "collapsed": 0, "showIf": "", "themeInputSize": "", "themeOffset": "", "themeBorder": "", "themeColor": "", "themeBlank": "", "columnWidth": 100, "required": "", "requiredAttr": "", "requiredIf": "", "minlength": 0, "maxlength": 0, "showCount": 0, "stripTags": "", "placeholder": "", "rows": 5 } } Can someone help me π? Thanks!
-
That's where I got my info, but I missed that it's related to the SessionHandlerDB module π
-
Sounds like something went wrong with the update. Just Rename the "TracyDebugger" Folder in "\site\modules" to ".TracyDebugger" After that try again if you get back into the admin panel
-
Do you have an older version of Tracy Debugger installed? If yes, try to switch off Tracy or update Tracy to the latest version (4.23.25).
-
the browser doesn't show the css-html changes just made
zoeck replied to franciccio-ITALIANO's topic in Getting Started
Just use the reload Button π Orβ¦ live.js - as written by @pwired -
You know that this is not a wordpress forum? And your answer has nothing to do with the field in question at all.
-
Hello Seba, yes, this is possible. I have connected the login to our domain controller via LDAP and the control of the authorisations runs via corresponding groups. (Customized Version of this Module: https://github.com/conclurer/LdapSignIn ) in general, its just a normal website with access protection π
-
That's exactly what I always think. It already bugs me with Docker Compose and also with other tools. But your recorder looks really cool π
- 60 replies
-
- 2
-
-
- developing
- working with pw
-
(and 1 more)
Tagged with:
-
Do you mean something like "Fieldset in Tab (Open)" (Class: FieldtypeFieldsetTabOpen)? This is included in the Processwire core π
-
You can also combine corresponding classes, for this purpose there is the "@apply" function. This makes it possible to keep the code relatively clean π Example vom the Tailwind Docs: .btn { @apply px-4 py-2 rounded font-semibold bg-gray-200 text-black; }
-
You can set your own path to your data directory π https://processwire.com/api/ref/paths/ or you can use the root directory: $urls->root Site root: / (or subdirectory if site not at domain root)
-
You can use RockMigrations for such tasks π It's a very Powerful Module Or just look at the docs π https://processwire.com/api/ref/page/delete/ // Delete a page and recursively all of its children, grandchildren, etc. $item = $pages->get('/some-page/'); $item->delete(true); It looks like the "true" is missing: $item->delete(true); "If set to true, then this will attempt to delete all children too."
-
Best way to do a fixed count, repeated group of fields?
zoeck replied to cst989's topic in General Support
Do you know the "Combo" ProField? https://processwire.com/store/pro-fields/combo/ I'm not sure, but I think this might be just the right thing for you π