Jump to content

MSP01

Members
  • Posts

    102
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

MSP01's Achievements

Sr. Member

Sr. Member (5/6)

25

Reputation

  1. Just to pipe in because the new look of the repeaters bothered me as well. I like both yours and @AndZyk suggestion better than what the new theme provides. There's something in it that makes the fields hard to look at for me.
  2. Thanks for pointing that out. I had read all the previous comments when this post was made, but had either forgotten or missed that the old theme will still be around! I'd like to offer something more constructive about the new theme and how to improve it, but it's not easy to do. Differences are subtle and yet many at the same time, yet I cannot shake my initial negative experience, especially since it hasn't really changed after a week. If I have time and chance I'll try to offer some suggestions, though as someone mentioned, design by commitee is indeed not the way to go.
  3. After using it for a week, I must say I'm not happy about the end result of this update. Processwires backend has never been especially sleek or modern looking. But it is usable and clear for the most part. Ryan said he's not been a designer in a long time, and while that maybe true his version of the UIKIT admin is far better than what this update provides. This new look basically just makes everything look more gray and drab and at least to my eyes, even more old fashioned. I'm not seeing any new functionality anywhere either, which to me would have been a far bigger upgrade than having a new skin, that seemingly isn't even optional but will be forced on everyone! I think overall it's a step down and at best it's a sidegrade. I really hope the current admin version stays on as a version you can choose to use!
  4. This might be a band aid but: If you don't have a huge amount of pages to sort, one possibility is to create a separate page with page reference field, add the pages there and base the sorting on the ordering of this field. Admittedly this is a good solution in some cases and sometimes it's far too inconvinient to do it like this. It's how I usually do web pages main navigation.
  5. That's a neat little project! Select list for fonts is bugging out a little bit (color and background-color are both white).
  6. @ryan Can you take a look at this? If I'm using the cache wrong it would be great to know. But if it's correct then there's definitely something funky going with the cache itself.
  7. Hello, I'm using WireCache with matrix repeater. Usually it works fine, but on occasion it seems to cache nothing instead of the actual content and serves a totally blank page, which then wont go away until someone manually clears it out. I've also added a hook in ready.php that will clear out any related cache on page save. That seems to work fine, when cache is working correctly, but when it saves "empty" the hook does not function either, which I find pretty peculiar. I'm just here to double check I'm using the cache correctly Inside the matrix repeaters php file: foreach ($value as $item) { if ($item->type !== 'matrixForm' && $cache->get('page_' . $page->id . '_item_' . $item->id, $cacheTime)) { echo $cache->get('page_' . $page->id . '_item_' . $item->id); } else { ob_start(); // Matrix item HTML/PHP here $cacheValue = ob_get_clean(); if($item->type !== "matrixForm") { $cache->save('page_' . $page->id . '_item_' . $item->id, $cacheValue, $cacheTime); } echo $cacheValue; } } There are few item types that are not supposed to get cached, 'matrixForm' being an example.
  8. Well few hooks did the trick. Feels a little hacky but if it works, it works!
  9. We have a need for enforcing the use of TFA TOTP on users. But neither Register Login Pro or Processwire in general seem to offer much help with this. Specifically TOTP needs to be turned on and then the QR code should be provided on first login attempt if TFA hasn't been added yet. Has anyone done anything of the sort?
  10. I'm getting this error when trying to access the field, or any page that is using the field. "Expecting Hex color string (length 6 or 8 digits) with optional leading '#'" I believe it's because I first selected hex output and later changed it to rgba. The error is basically breaking every page where the field is used. Some more information. Temporarily editing out line #84 in FieldtypeColor.module allowed me to fix the defaul value that was crashing the module. It seems that if default value has an alpha value it will cause a crash. But now I'm running into an another issue. Allowing user to select alpha causes this error: "InputfieldColor: Submitted value: rgb(0, 0, 0) does not match required pattern: /#?[a-fA-F\d]{6}/."
  11. You know what, I've never in my life tried the search. I'm not even sure what I thought it was for. It's a little slow, but still great improvement!
  12. Sometimes when you have a lot of fields, finding one you want to edit can be bit cumbersome. I like to organize things with tags, but I've lately noticed that they really just slow you down and using the browsers search is probably the quickest way to find the right field, as long as you know what it's called. But if your tagged field groups are closed browsers search wont be able to find the field until you open the group... So would it be possible to add one of these options? A) Ajax search field that would show you a list of fields that match the search criteria B) A simple checkbox or button that would open / collapse all the tagged field groups at once so you can use browsers search to find your field Of course if someone has made an extension to do this, do let me know. ?
  13. Seems to be back to normal now, about 8 seconds this time. About 3 seconds of that is two .js files and one .json that are giving 404 though. I was a little shocked first time I opened the page, had a serious 14.4 Kb modem flashback. ?
  14. Your pages homepage took more than 5 minutes to load. Inspector shows that almost every image with took more than minute. You might want to take a look at that pagespeed module, can't imagine it doing anything good.
  15. Nice site. My only critique would be to remove the UIKIT transition from the thumbnails. It gets tiring very quickly and it's kinda gimmicky.
×
×
  • Create New...