-
Posts
2,927 -
Joined
-
Last visited
-
Days Won
19
Everything posted by szabesz
-
Hi, Quick tips Bookmark these two Google queries: tutorial site:processwire.com/talk recipe site:processwire.com/blog Whenever you are in need, just edit the first words accordingly Learn by doing, eg: (4 part tutorial): http://blog.mauriziobonani.com/processwire-basic-website-workflow-part-1/ OOP is "easy", read this one once a month and also study simple ProcessWire modules: http://www.startutorial.com/homes/oo_beginner Find simple ProcessWire modules/profiles in the directory, install them, change them, abuse them. Sooner than you think you will get a hang of it.
-
PagefieldPairs - Synchronize Pagefields between two different Pages
szabesz replied to bernhard's topic in Modules/Plugins
Not to mention that if you unite forces everyone wins, especially with such a much needed module. So I suggest Robin S leading the development with Bernhard posting lot's of pull requests -
Hi, Did you post it twice by accident?
- 8 replies
-
- 1
-
-
- image quality
- images
-
(and 2 more)
Tagged with:
-
As far as I know, the ProcessWire API can either resize, crop or do both of these operations but it cannot pad an image. Are you looking for something like this: http://www.imagemagick.org/Usage/crop/#extent
-
Hi, Did you see this?
-
If you want to teach your kids programming or just want to put together games easily, then GDevelop is highly recommended: http://compilgames.net/
-
Ach so! Thanks!
-
Hi, One way to solve such issues is to prepare separate collentions to be outputted into both the <head> and the footer, like this: https://github.com/NinjasCL/pw-ghost/blob/c192001567b73063dac3cdae72e6e19bbf08e632/templates/_main.php#L35-L38 so when you need something extra on a given page, you just add it to the collection: https://github.com/NinjasCL/pw-ghost/blob/c192001567b73063dac3cdae72e6e19bbf08e632/templates/blog-item.php#L59 more on this: https://github.com/NinjasCL/wire-render-pattern
-
But why is it that the menu background is blue? I'm suspicious
-
Which one is the repeater? gruppe? You are trying to remove the repeater form its own item, as far as I can see. $m is a Page object, not a (Repeater)PageArray if I'm correct: $m->gruppenzuordnung->remove($delGruppe); So incidentally it is probably the image this line removes because of a matching key of the image: http://kongondo.github.io/ProcessWireAPIGen/devns/source-class-ProcessWire.WireData.html#333-351 You need to work on the RepeaterPageArray: http://kongondo.github.io/ProcessWireAPIGen/devns/class-ProcessWire.PageArray.html#_remove like this: $delGruppe->remove($m); // or $gruppe->remove($m); // depending on what you want to achieve
-
+1
-
Hi, I've never done it myself so I cannot present some pre-made solutions, but there seem to be discussions about it in the forum: https://www.google.hu/search?as_sitesearch=processwire.com%2Ftalk&as_q=migrate#q=+Import+comments+site:processwire.com%2Ftalk especially: Also, there are various discussions about using an existing module to import vs implement your on solution. I also recommend checking out @adrian's Batch Child Editor which can also import data (note, that I do not know if you can use it for importing comments or not, but he will be able to tell us...):
-
"Latest release date"... How can it be automatically kept up-to-date? We have incremental releases, so it is tedious to do it manually.
-
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...