-
Posts
7,529 -
Joined
-
Last visited
-
Days Won
161
Everything posted by kongondo
-
Yeah Mike. I read that a while back .
-
Really??...on PW 2.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.
-
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.
-
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.
-
New image upload options - client side vs server side resize
kongondo replied to SamC's topic in General Support
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. -
New image upload options - client side vs server side resize
kongondo replied to SamC's topic in General Support
Like I said, available since 3.0.63 . That's 'later' (newer) than 3.0.41 . -
New image upload options - client side vs server side resize
kongondo replied to SamC's topic in General Support
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? -
Welcome to the forums @Orodreth. Blog does not support grandchild tags, hence the error. I have no current plans to change this behaviour, unfortunately.
-
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 .
-
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.
- 96 replies
-
- chained-selects
- dropdowns
-
(and 2 more)
Tagged with:
-
Variations: Pro Module for (Product) Variations & Attributes
kongondo replied to kongondo's topic in Modules/Plugins
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. -
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.
-
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.
-
Module Module: RuntimeMarkup Fieldtype & Inputfield
kongondo replied to kongondo's topic in Modules/Plugins
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. -
Module Module: Matrix Fieldtype & Inputfield
kongondo replied to kongondo's topic in Modules/Plugins
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. -
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.
-
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.
-
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.
-
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.
-
@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 .
-
each user allowed to add only one page under a parent template
kongondo replied to ziu's topic in General Support
Yeah, this approach is better. @ziu There's various examples in the forum regarding Robin's suggested approach. Just can't find them now. -
each user allowed to add only one page under a parent template
kongondo replied to ziu's topic in General Support
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 }