-
Posts
7,479 -
Joined
-
Last visited
-
Days Won
146
Everything posted by kongondo
-
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 } -
I missed that, sorry. Thanks for the correction.
-
The brief is to have something that is viewable offline. Jasonette needs to call home every time you access it. https://docs.jasonette.com/ Edit: Above not true; see correction below
-
My bad, sorry. Understood it the other way round.
-
Shouldn't this not be negated?