processwire-issues
processwire-issues copied to clipboard
ProcessWire issue reports.
The icon indicating whether a function is hookable is not displayed on mobile devices. Incidentally, I don't think the icon is very appropriate either. https://github.com/user-attachments/assets/4fa17073-beb9-4963-8572-e2a5aceed87f
```php $data = wire()->pages->findRaw([ 'template' => 'whatever', ], [ 'id', 'title' => 'renamed', 'os.title', ], [ 'nulls' => true, 'indexed' => false, ]); ``` As you can see the 'title'...
When trying to choose a page from chained tree, getting error "Required parent" after i add `InputfieldPageListSelection`like other page field, its ok. https://github.com/processwire/processwire/blob/44fcf13ea2d7f14a04eed54c29afcc79eb46ec45/wire/modules/Inputfield/InputfieldPageAutocomplete/InputfieldPageAutocomplete.module#L31
*Bug summary by Claude.AI* **ProcessWire Version:** 3.0.251 **PHP Version:** 8.3 **MySQL Version:** 5.7 ### Issue Summary When saving a page with a required URL field that is left empty, ProcessWire...
### Short description of the issue Seems like i discovered a bug, where editing custom fields for images are not saving in frontend editing if the image field is inside...
**ProcessWire Version**: 3.0.246 **PHP Version**: 8.3 **MySQL Version**: 8.0.42 ### Issue Summary Saving a page with a repeater that contains a file/image field will lose the value of any custom...
"noHooks" option for Page::save() doesn't call Pages::save() and Pages::saveField() with underscores
### Short description of the issue Related forum topic: https://processwire.com/talk/topic/25850-nohooks-option-in-page-save/ The [documentation](https://processwire.com/api/ref/page/save/) for the options argument of `Page::save()` just refers to the [documentation](https://processwire.com/api/ref/pages/save/) for `Pages::save()`, and here the explanation of...
Text is white until I hover the trash icon. Maybe this is intentional, but it sure is ugly when the repeater background is dark. Note also the weird line on...
Hi @ryancramerdesign - not really sure if this is a bug or not, but if you call: `$page->getFormatted('rm_field')` then all items will end up with outputformatting on. I assumed it...
Let's say I have this simple selector to choose all the orders in my system (I'm using findMany): ``` parent=/orders/,template=order ``` That works fine, but I want it to be...