-
Posts
6,674 -
Joined
-
Last visited
-
Days Won
367
Everything posted by bernhard
-
Do you want to develop something on your own? Do you want to hire someone that develops it for you? Do you want to ask @kongondo if it is possible to add that feature to his module when you purchase it? What are your skills? What is your level of experience with processwire? What is your timeframe? What amount of options do you have (thousands of options or just a few)? etc. --- The more information you provide, the better the answers will be. Edit: Sorry, didn't read the quoted message carefully enough. But still some more information will help in providing better answers ?
-
Are you talking about something like this?
-
I'd recommend you install Adrian's awesome tracy debugger module. It helps a lot in all kind of situations - maybe also in your current one. It might throw a more meaningful error. Or at least it makes it very easy and comfortable to run some code snippets. The panel is called "console". You can just paste in some code, run it, dump variables, log messages etc. Did you try to rename your 1029 folder via FTP to 1029_bak and see what happens? Can you move your site to another server and see if that makes a difference?
-
What is "very very large" ? ?
-
I've heard WordPress has a plugin for that ?
-
You should really do that as soon as possible ? I'm using it on all my projects and it's an absolutely awesome listing tool. Much better than the core listing in most of the cases IMHO (not praising my own work here, most of the awesomeness comes from agGrid). I decided to make it free (MIT) so that others can use it in their modules (batch child editor, the new padloper, etc. - really a lot of possibilities here). I really think that it opens up a new world for processwire regarding how users can manage their content (GUI). Great, good luck and have fun ?
-
Predefined field: create / show link to child page
bernhard replied to neophron's topic in General Support
Just place a checkbox field (eg "showlink") on the garden template (child) and in your gardens template (parent) you list your pages: // current $page is "gardens" echo "<ul>"; foreach($page->children() as $child) { $link = $child->title; if($child->showlink) $link = "<a href='{$child->url}'>$link</a>"; echo "<li>$link</li>"; } echo "</ul>"; -
Forgot one: One click with RockGrid, already built in - and they can even filter the grid before exporting ?
-
What is "very very large" ? RockGrid, RockGrid, RockGrid! It's a perfect szenario for it and it was mentioned several times already by @kongondo and @flydev - it seems you didn't have a look yet? There are several modules to help you with CSV import: https://www.google.com/search?q=site:processwire.com+import+csv
-
I've just not created any yet ?
-
This is called "Set Filter" in aggrid and it is an enterprise feature: https://www.ag-grid.com/javascript-grid-filter-set/ I've already created two custom filters: https://gitlab.com/baumrock/FieldtypeRockGrid/tree/master/plugins/filters I want to create a filter similar to the set filter of aggrid one day, but it has low priority at the moment. You can try my smart filter (that is already default in the new versions) or you can try to build your own. If you (or anybody else) are/is interested in sponsoring this type of filter for the community please let me know.
-
Glad to hear that. I'm also still impressed how powerful and well crafted aggrid is ? If others read this just have a look here: https://gitlab.com/baumrock/FieldtypeRockGrid/blob/master/plugins/columns/rgColAddIcons.md https://gitlab.com/baumrock/FieldtypeRockGrid/blob/master/readme.md#transmit-data-to-the-client-side https://www.ag-grid.com/javascript-grid-row-styles/
-
Great, have to try this soon. Thanks for sharing! Just flew over the readme and saw that you are always using http instead of https in your instructions. Is that a typo? Or does it also work with http? Maybe a hint that https would be more secure would make sense? No idea how JWT Auth works and I also didn't have a look at your examples yet. Just wanted to say thank you, follow the thread and maybe my comment is even useful ?
-
Seriously?! ? OK... no FTP is actually a good idea, but "everything locked down and doing updates via zip" does not sound good to me ^^ I'd also go via SSH (if you are using Windows I can recommend WinSCP) or you could also use GIT to host your files and do a git pull on the server once you pushed an update (or even do that automatically with a webhook). Using GIT you'd also have version control for your project. Oh, and welcome to the forum ?
-
RTFM ?
- 246 replies
-
- 1
-
-
- visual studio code
- vsc
-
(and 2 more)
Tagged with:
-
Hey @kongondo, not sure why you need auto close tag as an extension, I don't see any difference to the built in emmet support: https://code.visualstudio.com/docs/editor/emmet I'm on Win10 and after startup it just works. Do you see that it is indexing when you startup vsc with a project that has a wire folder?
- 246 replies
-
- visual studio code
- vsc
-
(and 2 more)
Tagged with:
-
You mean the $cookie etc. suggestions? This is what I get: I guess that's the setting mentioned in the extensions docs:
- 246 replies
-
- 2
-
-
-
- visual studio code
- vsc
-
(and 2 more)
Tagged with:
-
pages.clone() doesn't clone repeater-fields
bernhard replied to Dennis Spohr's topic in API & Templates
imho it should work, maybe you can try it on a clean installation? -
can you please provide an example where this is annoying for you? other question: do you have an extension that brings you right to the php docs, for example when using "file_get_contents()"? or that shows e preview of that?
- 246 replies
-
- visual studio code
- vsc
-
(and 2 more)
Tagged with:
-
@AndZyk do you have any settings for us? I think there are some techniques to tell the ide which class the variable is. @AndZyk I'd be interested in that as well. Maybe you already know how to do that? Thx!
- 246 replies
-
- visual studio code
- vsc
-
(and 2 more)
Tagged with:
-
Yeah, same here. I used Felix Becker's but was never happy with it. Need to do some testing with the linked one but first tests where promising. In the screencast you see that it even picks the "pagebreak" property from rockreplacer which would not be possible with snippets created from the cheatsheet Also, you get a nice preview and docs and you can use "go to definition" or "peek definition" to go directly to the class file
- 246 replies
-
- 1
-
-
- visual studio code
- vsc
-
(and 2 more)
Tagged with:
-
thx, I just tried that extension and it looks great! @kongondo I think his question was what is different from your version to normal intellisense? that's how it looks like with intelephense:
- 246 replies
-
- 2
-
-
- visual studio code
- vsc
-
(and 2 more)
Tagged with:
-
If you want a GUI you can try RockGrid. It has a batch deletion feature.