Jump to content

kongondo

PW-Moderators
  • Posts

    7,529
  • Joined

  • Last visited

  • Days Won

    161

Everything posted by kongondo

  1. Yeah Mike. I read that a while back .
  2. Really??...on PW 2.3?
  3. I'm even more confused than you . That's the main source of my confusion. This was working before and I remember you asking this question previously. I have now checked, way back to VPS3 and it's not working! Not even in PW2.7. I don't know if it's a caching issue. Not currently supported but it can be done; we have this in Media Manager. I haven't been able to reproduce this. I've just tested and initSelector works fine here (PW 3.0.84). Strange one. We have no add new button in VPS. Must be a CSS issue related to Bookmarks? When the modal loads (if using default theme), there's a brief flash of some button but then it disappears. Sorry about this issues. However, I am afraid these Lister issues will now have to wait until after the next release of VPS which is quite close. I was going to request a number of you to beta test VPS5 (given the move to PW 3 + the other changes coming in RE Robin's suggestions). I hope you don't mind waiting till that is sorted. Thanks.
  4. Ah, I see. A while ago, I had a similar issue with Media Manager which I resolved using preg_match and str_replace. I must have forgotten to do the same for VPS. I'll do this in the next version of VPS. Thanks for catching this.
  5. Hi @mattgs, Sorry for the problems you are experiencing. You'll need to be a bit more descriptive. What is not working correctly? What ProcessWire version? Thanks.
  6. Mine are all empty, except for the 90% JPEG quality (which on its own will not do anything). So, yeah, strange. In my case though, these are new installs; I didn't upgrade.
  7. Like I said, available since 3.0.63 . That's 'later' (newer) than 3.0.41 .
  8. Not an answer, but just a clarification. Client-side image resize has been around since 3.0.63 Maybe the associated blog post answers your queries?
  9. Welcome to the forums @Orodreth. Blog does not support grandchild tags, hence the error. I have no current plans to change this behaviour, unfortunately.
  10. https://github.com/kongondo/MenuBuilder#api render() This method renders a menu/navigation list of a specified menu. The method accepts two arguments/parameters: render($menu, $options); The first argument is not optional and can be a Page object, a title, name or id of a menu or an array of menu items returned from a menu's menu_items field. Note that for multilingual environments, you cannot pass the method a title or a name; only the other three choices will work. The second argument is an optional array and will fall back to defaults if no user configurations are passed to the method. @thmsnhl That should resolve your issue .
  11. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  12. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  13. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  14. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  15. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  16. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  17. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  18. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  19. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  20. Quick update. I have made very good progress. Hi all. I am intending to ONLY support ProcessWire 3.x starting from the next version of this module. Please have a read here and let me know what you think. Thanks.
  21. @Roych What sort of output are you getting with your MarkupSimpleNavigation code? We can't tell what is not working if we can't see the output .
  22. Yeah, this approach is better. @ziu There's various examples in the forum regarding Robin's suggested approach. Just can't find them now.
  23. You will need to use a hook, maybe in ready.php. Here's some code to get u started (unstested and written in a hurry). // I can't remember if 'child' will get unpublished and/or hidden pages // you might need to perform other checks (user logged in? => $user->isLoggedin()) $usersChildPage = $parentPage->child("created_users_id={$user->id}"); if($usersChildPage && $usersChildPage->id) { // this user already has a child page; do something else }
×
×
  • Create New...