Jump to content

Robert Zelník

Members
  • Posts

    77
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Robert Zelník's Achievements

Full Member

Full Member (4/6)

7

Reputation

  1. @horst thank you for your answer. What you write makes sense. Currently I am building a list of website URLs for one ProcessWire-based project. I will observe how many of them will work with http-to-https redirect and if there are some websites that will fail in this way of redirection.
  2. In InputfieldURL I added a website link without the protocol at the beginning. It showed me this message: Maybe it is time to change it to https:// instead.
  3. I opened an issue on Github for this.
  4. I just installed all the Webmention modules (version 2.0.0) on ProcessWire 3.0.164. It looks like everything is installed well. I created the field for webmentions and added it to the template. It returns this error message in Modules.php on line 3420: Exception has occurred. ReflectionException: Class\ProcessWire\FieldtypeWebmentions does not exist The template returns this: Fatal error: Uncaught Error: Call to a member function render() on null in /var/www/.../processwire/site/templates/micropost.php on line 25 My template looks like this: <?php namespace ProcessWire; ?> ... <?= $page->body ?> ... <?= $page->Webmentions->render(); ?>
  5. It works as expected, thank you for all your solutions.
  6. Let me explain my use case: I would like to create a photo gallery where the newly added images are placed on the top. There are two ways how to show newly added images on the top of the list in the frontend: 1. template renders the images in reverse order, or 2. web site admin moves all the added images manually from the bottom to the top of the list. Both ways are unintuitive. I like the Children > Sort Children setting that allows to change the order of child pages in the backend. It would be useful to have a similar feature in the images field. Is there any other way how to sort images in reverse order (new images on the top) and see them in the same order in both frontend and backend?
  7. Is there any way how to set the order of images in the backend editing so that the last added image would be placed at the top of the list instead of the bottom?
  8. I no longer maintain the Slovak translation for ProcessWire. It is a Github repository, so you can easily clone it, update it and post a link to your updated version here.
  9. Yes, both approaches does exactly this using PHP. My suggestion is targeted to PW core developers to rethink the "Alternate Template Filename" option to take care of both layout and view, without the need of additional PHP code in the template files.
  10. Yes, exactly. It's a similar approach done differently. I just think that it would be great if PW would allow to set both layout and view files in the template settings. Currently we can just set the layout file (in Advanced > Alternate Template Filename).
  11. Back to the Soma's template approach: I just realized that we would not need to use dirty hacks to force PW to render alternate template file, if PW would allow us to set template files for both layout and particular view. Example: We have a post template. In post template we set main.php for layout (default setting for the whole site) - renders the whole HTML page post.php for view (default setting for this particular template - derived from the template name) - renders the content specific to the post template, nested inside the main.php layout This approach is common in many web application frameworks.
  12. I would like to set a custom default/starting page inside the page hierarchy instead of the root page. Is it possible, or should I create a redirect from the home page? Could the home page be inside a second level of the page tree?
  13. I would like to create a simple image gallery using simple image field with multiple images per page. I would like to show them sorted (newest first). I have tried this: $images = $page->images->find("sort=-id"); foreach ($images as $image): ... endforeach; It works well with child pages, but it seems like it doesn't work with image fields. Is there any way to sort these images, or should I use repeatable fields instead?
×
×
  • Create New...