-
Posts
3,019 -
Joined
-
Last visited
-
Days Won
20
Everything posted by szabesz
-
Hi Bernhard, Modified and Created are the same for new – not yet modified "again" – pages. Does that help? Related post:
-
Hi, Can you give us an example? I cannot seem to follow... Also, your post seems to be cut off at:
-
Go to: Setup > Fields > altTitle > Input tab: Did you get an error (if yes, what?) or you just did not see any change in the source code of the page? If the latter, did you make sure you are not watching some sort of cache? (browser, cloudflare, ProCache, ProcessWire cache etc...) I have no experience with this one but if you are still getting cached pages then it is what makes it hard for you to work on any changes. Seeing how much trouble it means to make changes to the site, you might want to ask for some paid help. Have you considered this?
-
Hi, One solution: for creating Dates setup a PageTable on your single Dates Page, so that Dates are created by adding items in the table. Actual Date Pages are stored under a Parent according to your setup ("Select a parent from items" on the Details tab of PageTable field). From then on, you have a parent which can be used for asmSelects. This can be used for your Settings page. For the Event page, you need to setup "Custom PHP code" for "Selectable pages" under the Input tab of the PageReference inputfield. I've never done this so I'm not the right one to show you a proper example, but this might help you get started:
-
Hi, I do not know if this is what you need, but @bernhard used to share with us his modules: https://processwire.com/talk/topic/15524-preview-rockdatatables/ (see more: https://processwire.com/talk/topic/17207-custom-office-management-crmcontrolling-software/) Also: https://processwire.com/talk/topic/4147-excel-like-crud-in-pw-using-handsontable/ https://github.com/wanze/PwHandsontable https://processwire.com/talk/topic/16608-fieldtypehandsontable-excel-like-inputfield/ Hope this helps.
-
Why not just link to choosealicense.com? Takes up less space (personally I always try not to use too much whitespace in the case of administrative GUIs). Also, they keep their database up-to date so no need to keep in sync should anything change (probably not, but one never knows...).
-
+1 ISC. You might want to link to relevant choosealicense.com pages. Also, you could point out – in the UI – that ISC and MIT are "functionally equivalent". Let's be progressive
-
Module Visual Page Selector (commercial page picker module for ProcessWire)
szabesz replied to kongondo's topic in Modules/Plugins
Option please -
Tutorials are not just a bunch of examples I expect a – good – tutorial to be more than what is written in the docs, some extra info on how to wire things together, and possible gotchas to look after and how to iron them out. Sure, the UIkit docs are good but there is no guidance on where to put those components in a real site, for example. Also, what I'm really missing is the explanation of the design approach of the SASS/LESS structure (eg. how changing a variable will propagate through the components, etc..). They assume one already knows all this stuff. That is where a tutorial could come in handy BTW, I have not yet found any tutorials but I already published a site based on UIkit 3. Still, I am also interested reading/watching them if they exist.
-
This one? https://processwire.com/talk/topic/17477-dummy-text-generators/?do=findComment&comment=153638
-
+1 And do not forget .htaccess as well
-
Great news! Now I just have to find the time to try it out... BTW, how about renaming it to something like Sites Manager? Is it too late to rename it to something more descriptive and less confusing? There is another group of modules with almost the same name: https://modules.processwire.com/modules/multisite/ https://github.com/somatonic/Multisite/tree/dev2#add-multisitedomains also: https://processwire.com/api/modules/multi-site-support/ Multiple solutions with multiple multies in their names are a bit confusing
-
Settings Train (module preview)... all aboard!
szabesz replied to Macrura's topic in Module/Plugin Development
There is one big advantage of "non-standard" names like "Settings Train" – or ProcessWire for that matter – and it is that it's easy to search for them. "SettingsTrain" is already number one result in Google. -
@Marudor Hi, I recommend reading a few tutos, like: https://webdesign.tutsplus.com/tutorials/how-to-develop-a-processwire-theme--cms-25692 http://processwire.com/docs/tutorials/how-to-structure-your-template-files/ http://processwire.com/docs/tutorials/default-site-profile/ It should work but it will not affect the frontend of the site because in ProcessWire nothing is outputted without writing some code in the template files. There is no "theme" in the WordPress sense. You need to start taking a look at the template file(s) rendering the page(s) to get started. The developer who implemented the forntend could have chosen all sorts of ways to do it, but if you can provide some code samples we can help by pointing you in the right direction. As you can also see in the tutorials linked above, you need to look for something like (but not the same...): <title><?php echo $page->title; ?></title> And there must be some concatenation used too which adds "Agencja PR Q&A Communications – Poznań, Gdańsk, Warszawa, Bristol" to the string. You can do it this way: <title><?php echo $page->my_field_goes_here; ?></title> where my_field_goes_here is the name of the field you need to add to the template(s) of the page(s). That is where Markup SEO can help you but I never used that module. However, the site might use a template engine like Twig or something similar, so you might not see regular PHP echos being used and that is why you need to find out what renders what in the fist place.
-
Today I got the email: "CSS Grid is included in Edge 16 that was released today as part of the Windows 10 Fall Creators update."
-
Module Preview: Process Documentation
szabesz replied to Macrura's topic in Module/Plugin Development
Thanks for the explanation! I still haven't find the time to go about implementing a dashboard and generally speaking I'm looking for a "versatile" way of doing it right off the bat that is why your module made me think: why not kill two birds with one stone? Bernhard is right saying that I "just need a process module" but why not build upon an already working solution if possible? -
Thanks for sharing @Juergen! It will be a nice jump start when I find the time to implement my own version with UIkit 3.
-
Module Preview: Process Documentation
szabesz replied to Macrura's topic in Module/Plugin Development
Looks great! Thanks in advance for sharing! Can it be used like a Dashboard? If the module could support "custom php" then would it be possible to generate output based on database queries as well? -
Big Numbers, when integer is not enough. What to do?
szabesz replied to bobbit6k's topic in General Support
Another option might be the FieldtypeDecimal module: https://processwire.com/talk/topic/7542-development-fieldtypefloat-fieldtypedecimal/?do=findComment&comment=139097 -
Should not matter too much as far as I know.
-
Meaning you have this number of published, non-hidden products, right? A simple "template=my_products" selector should be fast enough and by storing the result in memory (eg. assigning it to a variable) can give you the possibility to work with it afterwards. With 512MB RAM it should not be an issue, I guess.
-
[WIP] ProcessMailer - A module for managing and sending newsletters
szabesz replied to abdus's topic in Modules/Plugins
Your module should not do it, especially if you can make it play together well with Newsletter Subscription module. Because it is very unlikely, I think you can deal with this issue in another version in the future. No need to solve "all possible" issues in the first few releases +1 -
This solution should have its own config setting as my local dev sites are always in debug mode but with real content already in place. We would need a way to disable those textformatters quickly and maybe conditionally like: created>2017-10-16
-
GIF is good at "compressing stills" as it just stops for the period of time required so I normally start my GIF screen captures with a modest pause period and also take short breaks between actions so that the whole stuff is easy to follow.
-
Soma's module is what I normally use to clear cache: https://github.com/somatonic/ClearCacheAdmin It works well.