-
Posts
687 -
Joined
-
Last visited
-
Days Won
4
Everything posted by matjazp
-
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
matjazp replied to David Karich's topic in Modules/Plugins
To be honest I don't have enough knowledge on what's really going on in the source files, I just included fixes and PR's from others, hoping that it might help them. But it's not a problem for me to maintain this fork with PR's of other contributors, if that helps. -
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
matjazp replied to David Karich's topic in Modules/Plugins
I have a forked version at https://github.com/matjazpotocnik/ProcessWire-AIOM-All-In-One-Minify that includes a lot of pull requests and fixes from several contributors. Test on dev site first!!! -
Don't convert thousand separator (point => comma)
matjazp replied to suntrop's topic in Multi-Language Support
@suntrop put setlocale() in /site/init.php There is also $languages->setLocale(); https://processwire.com/api/ref/languages/set-locale/ -
https://unicode-table.com/en/ but I guess not enough options...
-
Of course. And I can do it even without AOS ;-)
-
Thx for info and for legacy link. I must be lucky since I drive like 5 mins to work
-
[solved] iconv() in sanitizer.php error during module installation
matjazp replied to bot19's topic in General Support
Based on https://processwire.com/about/requirements/ PW does not require iconv, but installer does check for it. -
[solved] iconv() in sanitizer.php error during module installation
matjazp replied to bot19's topic in General Support
Do you have iconv support enabled? Check with phpinfo(); -
@Martijn Geerts I upgraded from 0.8.7 to 0.9.4 and I get: Warning: Invalid argument supplied for foreach() in C:\inetpub\wwwroot\site\modules\AdminCustomFiles\AdminCustomFiles.module on line 249 $files = NULL $dependencies = string(41) "ProcessPageEdit AdminCustomFiles/test.css" Also, AdminCustomFiles.js fails at line 19. I see that you dropped support for PW 2. Any reason for that?
-
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
matjazp replied to David Karich's topic in Modules/Plugins
Maybe this can help? //https://github.com/FlipZoomMedia/ProcessWire-AIOM-All-In-One-Minify/issues/64 $_timestamp = ((int)$_timestamp + $file['last_modified'] + hexdec(md5(basename($file['absolute_path'])))); -
Can't tell for sure, but it looks like... its minified, but files are equal. @dreerr are you sure you installed "clean", that is you are not overwriting wire folder but instead create a new wire folder? Just to be sure... <ul class="PageListActions actions" style="display: none; opacity: 0;">...</ul> This is triggered on hover, I can "see" the style is changed to display: inline; opacity: 1 but after that it is hidden by Jquery hide()...
-
He did. It look like ProcessPageList.js is hiding it in SetTimeout. But I can't find out why. And, I can't reproduce on my install...
-
It has to be something along this, as after I login, I don't get page tree, just header. I also get no content on Pages, Setup, Modules, Access...
-
Done, please check v1.6.8 on GH.
-
Thanks for PR. Bumped to v1.6.7: - Control for line endings - Extend directory start list with a scan of the templates subfolder - Change icon to pencil-square-o - CodeMirror update to 5.30.0
-
FieldsetTabOpen, FieldsetTabClose: problem while renaming
matjazp replied to theoretic's topic in General Support
This is known bug/inconvenience/annoyance: https://github.com/ryancramerdesign/ProcessWire/issues/1854 -
[SOLVED] BUG : Repeater fields appears in template settings of any page
matjazp replied to abmcr's topic in General Support
Confirm. -
Could this: else if ($type instanceof FieldtypeRepeater) { $items = $page->{$f->name}; if (!$items) continue; if ($items instanceof PageArray) { foreach ($page->$f as $item) $tagged = array_merge($tagged, findTaggedImages($item, $tag)); } // FieldtypeFieldsetPage returns a single page instead of a PageArray elseif ($items instanceof Page) { $tagged = array_merge($tagged, findTaggedImages($items, $tag)); } } be like this? else if ($type instanceof FieldtypeRepeater) { $items = $page->{$f->name}; if ($items instanceof Page) $items = array($items); if ($items) foreach ($page->$f as $item) $tagged = array_merge($tagged, findTaggedImages($item, $tag)); } I'm not a programmer at all and haven't tested this so I might be completely wrong
-
Shouldn't that be: } else if ($type instanceof FieldtypeRepeater || $type instanceof FieldtypeFieldsetPage) { or perhaps: } else if(wireInstanceOf($type, 'FieldtypeRepeater')) { to support FieldtypeFieldsetPage?
-
Can you tell more about that?
-
I would love to see that hack/hooks I admire this PW community, showing their work, coming up with great ideas and helping other.
-
I think a lot of us would like to contribute, some way or another, depending on skils and available time. But at the end it's Ryan who must alocate time and other resources for this project and take a lead.
-
Maybe this is related https://github.com/processwire/processwire/commit/d427b7f563f3024c1030265463ecaf79ab92d070
-
@MacruraI tried that and css is applied to .ImageData but it doesn't help in my case... Didn't try your module ...