-
Posts
2,952 -
Joined
-
Last visited
-
Days Won
20
Everything posted by szabesz
-
I see, sure, there is no need to copy over too much stuff from PHPInfo, maybe just the most important things to get a quick general overview. (memory/file size related stuff, and other things that we sometimes trip over)
-
This is really useful again Adrian, thanks! However, be careful. If you show us what can be achieved, we might demand more and more and even more Just to show you what I mean, here is the WooCommerce "System Status" report (certain parts are deleted, such as the list of plugins): Similar to the above is the diagnostics info of another WP plugin: I copied over these just to give you some ideas should you find the time to improve this new feature. It would help forum support as well in some cases.
-
Not to mention that most users (be it PC or Mac) do not know where and how drag-and-drop can be used.
-
I see, so you are just promoting your module, right? (Note: AdminOnSteroids (AOS) is very cool and useful, everyone should at least check it out!)
-
That's cool @tpr, thanks! However, this might not be the feature @Kurbel needs, I suppose for Editors it is enough to be able to tell apart the pages based on template names and they should not edit the templates themselves.
-
Thaks a lot @Rudy! I've been reluctant to rely too much on SCSS preprocessors, setting up JS based preprocessors is a real PITA for me. I will surely check out your module, scssphp is something that makes mew more comfortable in utilizing SCSS. Note, that I especially like the short description in the comment here: https://github.com/lesaff/ProcessWire-Sassify/blob/master/lib/sass-compiler.php
-
ProcessSlider - Image sliders for ProcessWire
szabesz replied to mauricius's topic in Modules/Plugins
Welcome to the Forums @scaaty ! As you can see by reading @mauricius's post above, he will probably not update the module to sort out the issues with it, however, in ProcessWire it is easy to integrate any sliders into your templates. The very simplest form of this integration is using repeaters for storing the data of the slides and using a free slider that suits your needs, such us: lightSlider, Swiper, etc... Here is a related post to get you started (this example is even simpler than using Repeaters, it just uses images uploaded to a page, but it is just enough to showcase the basics): -
CMS Critic Powered by ProcessWire (again) + Case Study
szabesz replied to ryan's topic in News & Announcements
I'm far from being a ProcessWire guru (think of me as PW hobbyist who sometimes even develop sites for clients...), but have a general understanding of "WordPress concepts" so I'm really keen on this. Thank you for the update on this! -
As long as we hit the target we are quite happy with it, I think Oh, and thanks a million as always!
-
Luckily, I have not had to update templates recently Jokes aside, yeah, now I see what you meant, but as a side note let me add that even those asmSelects have "text with links on them" and I thought you were referring to simply clicking on the bounding box itself and not on an additional element of it like the <a> in this case. The pencil icon might not be used in the ProcessWire admin in this context, but some sort of indicator is used, and generally I like these indicators, so that even newcomers can figure out the intended behavior.
-
Where are those options? Have I missed them so far? The only similar behavior is the action of the "drop down headers" of Repeater items (but those have the arrow like "greater-than sign") like this: We can only drag-and-drop or delete standard asmSelect list items, at least that's what I have thought so far. Am I missing something?
-
Having trouble with Custom selector to find selectable pages
szabesz replied to flyrs88's topic in General Support
This one can easily happen when @adrian is neither on holiday nor sleeping Anyway, welcome to the Forums and have fun with ProcessWire! -
Module: Testrun selectors + find() from admin (ProcessSelectorTest)
szabesz replied to nik's topic in Modules/Plugins
Just for the record: It is also possible to test selectors easily with @adrian's Tracy Debugger module, e.g.: https://processwire.com/blog/posts/introducing-tracy-debugger/#console-panel and https://processwire.com/blog/posts/introducing-tracy-debugger/#want-a-quick-way-to-see-the-results-of-a-pw-selector -
You should be able to implement it the "other way round". If you know the actual number of all the images (both "missing" and not missing), and they are also named (or will be named) according to their position in the sequence, and you know that they are grouped by 20, then why don't you just create nested loops and work out your logic according to the current element you might find or not found uploaded to the actual page the iteration points to?
-
Normally I locked down such features in any CMS I've used so far, but thanks for sharing anyway.
-
@pwired Have you considered using @LostKobrakai's https://github.com/LostKobrakai/Paginator eg: Anyway @Tom. is right, we need more background to recommend a solution or two...
-
main.inc, url segments, and Wire404Exception()
szabesz replied to Jason Huck's topic in API & Templates
Thanks for the report! Yeah, the default ProcessWire profiles do use the basic-page template for 404 too, and I recon this can lead to problems when it is forgotten. I did not think of it either in this case.- 6 replies
-
- main.inc
- urlsegment
-
(and 1 more)
Tagged with:
-
Me too, but it works for me as it did before. Maybe something on your end?
-
Sure, so that we get the formatted attribute. However, I would do: /* save the page object to database as child of the given parent */ $newPage->save(); /* turn on output formatting again, important before outputting in template files */ $newPage->of(true); Note that it is called formatting and not filtering.
-
@EyeDentify Thanks for sharing! May I ask why you turned on output formatting before saving? It is recommended to save first, then turn it on (if it needs to be ON, like normally in the case of the frontend). See for example: https://processwire.com/blog/posts/processwire-2.6.9-core-updates-and-new-procache-version/#new-page-gt-setandsave-method API doc: https://processwire.com/api/ref/page/of/
-
When you are not sure about this, you might want to: $of = $page->of(); and later on $page->of($of); like this: $of = $page->of(); $page->of(false); $page->set('property', 'value'); $page->save('property'); $page->of($of); source: https://processwire.com/blog/posts/processwire-2.6.9-core-updates-and-new-procache-version/#processwire-core-updates-for-2.6.9 BTW: you might want to give $page->setAndSave()a shot.
-
Module FrontendUser: login, logout and register users / members
szabesz replied to pwFoo's topic in Modules/Plugins
The button with the eye on the right, labelled -
main.inc, url segments, and Wire404Exception()
szabesz replied to Jason Huck's topic in API & Templates
That's '"strange", probably something else is going on then. Maybe other, more experienced PHP developers can join in and help as I've never experienced something like this.- 6 replies
-
- main.inc
- urlsegment
-
(and 1 more)
Tagged with:
-
main.inc, url segments, and Wire404Exception()
szabesz replied to Jason Huck's topic in API & Templates
Hi Jason, I think it must be related to PHP"s output buffering, which I do not use so sorry for not being able to help more here, but I guess you should examine the way it works on the server in question. Note that I opted for wireRenderFile() to do the "buffering", that is to store rendered template partials in variables so that the complete page can be assembled later on.- 6 replies
-
- main.inc
- urlsegment
-
(and 1 more)
Tagged with: