processwire-issues
processwire-issues copied to clipboard
ProcessWire issue reports.
If a field has been added to the **user** template and marked as editable via **ProcessProfile**, it should be editable if the user has `profile-edit` permission. However, for language-supporting fields,...
So for example a TinyMCE field should only be visible if field2!="", once that field2 is filled in the TinyMCE field is hidden, when field2 is empty again and the...
A ProcessWire Text Field can optionally have a Pattern, defined on its Input tab when editing the field in the admin. Currently the option has the "Notes": _See html5pattern.com for...
When the page initially loads, it matches `pw-main-color`, but after it finishes loading, it changes to `#FFEBEB` Recording shows it's initially final state - then you'll see the page reload...
When using the new default admin theme, this should not override custom styles set in InputfieldTinyMCE: The custom style should take precedence. This may be something on the list to...
Pagination buttons issue - note the missing left border on no. 2 Reported by @adrianbj on forums
Even though I have set a custom color (which is applied in lots of places), the PW pink is being used for most links and other places like: It's not...
Hi @ryancramerdesign - this commit https://github.com/processwire/processwire/commit/a817943b73d2e7832b324e9f0a2b5fd44f5bc858 is causing a huge slowdown when editing certain pages on my site. Everything is fine with the original Uikit theme, but when I switch...
Assume the following code: ```php // init.php wire()->addHookAfter('Pages::saved', function(HookEvent $event) { $page = $event->arguments('page'); if($page->template->name!='repeater_order_line_items') return; echo "running the hook!"; }); // elsewhere in my codebase $order = $pages->get(1234); //...
Hi, While updating my [PageMjmlToHtml](https://github.com/eprcstudio/PageMjmlToHtml) module, I’ve been wondering if `Sanitizer::httpUrl()` shouldn’t default to `https` in respect to `$config->https`? Otherwise it could be an added option to `Sanitizer::url()`, something like...