-
Posts
3,020 -
Joined
-
Last visited
-
Days Won
20
Everything posted by szabesz
-
Well, I opted for ProcessWire mainly for its Page/Selector design pattern (sure I like complete freedom on the frontend too...) so I would go with Pages, but it's just me... BTW, Have you see this: You might want to take a look at @Robin S new module. I have not yet find the time to test it, but looks promising.
-
+1 for the feature requests above. I'm not yet a happy Media Manager owner, but it is highly probable that one day I will be
-
Never mind, we noticed it I even gave you a like for the effort
-
As far as I get it, currently you have two different questions: 1) How to implement many-to-many relationships, 2) JSON support in ProcessWire So you might want to rename the title of the topic, 'cos it's to general and slightly related to these two questions. Welcome to the Forums, BTW. It's good to hear that you compare ProcessWire to Laravel and to other frameworks too, and ProcessWire wins. I think you are right
-
I always do something like this: $pages = $page->children("show.label=CTRL Daily") if(count($pages) && is_array($pages)) { foreach($pages as $post) //etc... } else { error_log("Custom NOTICE: Options Fieldtype called XYZ contains no label 'CTRL Daily'!"); } This way you will have a clue what goes on if someone (including you) happens to rename the option. Note, that even using IDs has its drawback: the order of labels can be changed as well even if they are exactly the same.
-
If it is really a fresh ProcessWire instance, can't you just wipe it (deleting the database itself too, not just emptying it) and install it on your own? That way you should be able to spot if anything goes wrong during the installation process.
-
Hi, In your /site/config.php do you have $config->httpHosts = array('yourdomain.com', 'www.yourdomain.com'); ?
-
+1 (I hate auto focus... )
-
Why? Someone might still find it useful in the future. Especially if you edit your original post, fix this line and provide a short explanation. Sure, this thread could be moved to the Dev Talk topic, so perhaps a Moderator can help us out...
-
Thanks! No ListerPro just yet, but recently I've been thinking of purchasing a single license version. Not too expensive but rather useful...
-
While we are at it, any chance of making the link to the template optional in this case? It takes up too much space and not really needed in this context (at least I do not need it :
-
Troubleshoot/test sending email from PW
szabesz replied to modifiedcontent's topic in General Support
As far as I know, it is module configuration based, and there is no global address to work with, except if you implement such a thing. So you need to go to the module's setting and set it there. about the API: and https://processwire.com/api/ref/mail/ so you can create a custom admin setting page (eg. like this https://processwire-recipes.com/recipes/create-custom-admin-settings-page-link-in-admin-menu/) and also hook into send() and change the "from" address according to your setting: https://processwire.com/api/ref/wire-mail/send/ -
True I've looked at almost "all of them" also tried out a lot, but the most (css) beginner friendly vs feature rich is http://materializecss.com/ Materialize CSS can be actually used by only the means of vanilla css overwriting its rules if one does not want to fine tune it by using Sass at all. The same is true for Chrome, probably others too. But we should not forget that simulation is never the/a real thing.
-
RockSVN brings Version Control to your Fields & Templates
szabesz replied to bernhard's topic in Modules/Plugins
The same is true in my case... -
RockSVN brings Version Control to your Fields & Templates
szabesz replied to bernhard's topic in Modules/Plugins
@bernhard But this is the one I already linked to -
Troubleshoot/test sending email from PW
szabesz replied to modifiedcontent's topic in General Support
You can activate (called "installing" in standard PW lingo, which is a bit confusing, since it comes with the system being already available) the core module called "Forgot Password", so that you can send a password reset emails form the admin login screen. -
You can also use the Lister (called Find under Pages) to get all sorts of relationships, although the built in Lister is just a stripped down version of the much more powerful ListerPro.
-
I see, thanks a lot!
-
@jacmaes Hi, Is it also exactly what you insert before the standard WP "# BEGIN WordPress ... # END WordPress" block? I have a few WP sites, that's why I ask
-
Something like this? : Of course, the selectors and the fields must be adjusted, but as far as I understand your issue, this one should also work when dealing with dates. BTW, welcome to the forum
-
Hopefully UIkit 3: https://getuikit.com/docs/uikit3.html So let us be patient
-
Hm. But there exits the "verbose way" of implementing this brand new "+" thingy. Its verbose counterpart is the classic way of doing things: variables and standard PHP concatenation. Why should we make a shortcut verbose? That is a contradiction... Am I missing your point?
-
Copying pages or content from one Processwire instance to another
szabesz replied to FrancisChung's topic in General Support
Thanks @bernhard for sharing! I have bookmarked it