Jump to content

Boost

Members
  • Posts

    127
  • Joined

  • Last visited

Everything posted by Boost

  1. Interesting. This is the first time I read about having three site/config.php files. If you could give me more details about this approach, it would be great.
  2. Hey, What is your strategy for local development? For example, if you're converting a WordPress website to ProcessWire - let's say the website is acme.com - do you set up your development web server to use acme.com using the 127.0.0.1 trick?
  3. I did write only "test", and it did not work without getUnformatted Funny, because I don't remember changing any text formatter setting.
  4. Yes!!! I got it! But why??
  5. Yes, I just tried, no luck.
  6. Ok, let me take a step back here: My repeater field: My template: My page: And here is my home.php <?php namespace ProcessWire; // Template file for “home” template used by the homepage ?> <div id="content"> <?php foreach($page->sections as $x) : ?> <?= $x->body ?> <?php endforeach ?> </div> My issue here is that if I changed the output to image, it works: <div id="content"> <?php foreach($page->sections as $x) : ?> <?= $x->image ?> <?php endforeach ?> </div> But it doesn't for body ?
  7. @aagdyes, I did! @diogo sorry, but which Id are you talking about? Where can I find it?
  8. Thanks. I do have some there
  9. Hei, A little help here would be nice. So, I created a repeater field with a body and image fields. I named this repeater field sections. I added the field to my home template and use it on my page normally. Now on home.php template file, I try to output it like this: <div id="content"> <?php foreach($page->sections as $x) : ?> <?= $x->body ?> <?php endforeach ?> </div> But nothing shows up. Yes, I read the page https://processwire.com/docs/fields/repeaters/ Am I missing something?
  10. Hei, I'm testing the MediaLibrary with around 1000 images. Is there a way to add a search function so I can search the uploaded images by their filenames?
  11. Hei, There is a specific template that I would like to hide from the dropdown menu when the user creates a page. How can I do that? Thanks
  12. Hei, I'm building a monolingual website now. My question is, in the future, if we decide to go multi-language, can I add support for it on my current website or do I need to start over? Cheers
  13. Ok. I got it. Thanks.
  14. I'm able to install any other modules. BTW is this a paid module?
  15. Hei, Is it only me or the ProcessMediaManager by @kongondo doesn't install on the latest PW? I'm getting this error:
  16. Hello, I'm planning to introduce PW to my boss and persuade them to choose PW over WP. Do you have any articles, posts, or presentations that I could use to support my argument? Thank you.
  17. Hei, So, I created an user like this: And when I log in with the user, this is what shows up: How can it be formatted to be shown as "Jack Priest", or, in the last resort, show up his email instead of his name? Thanks, B
  18. Hi, I have this structure: website.com/company/career website.com/contact/thankyou What I want to achieve is that if someone accesses the URLs "website.com/company/" or "website.com/contact/" she should be redirected to the homepage, since "/company" and "/contact" are just folders and there is nothing to see there. Is there an easy way of doing that in PW? Maybe a different approach? Thanks!
  19. Hi, I'm finding it tricky to identify fields to be used in a template for pages with a more complex layout. For example. Following this tutorial, https://mauricius.dev/basic-processwire-website-workflow-part-one/ is quite easy. But in a more 'real life' layout, it is not straightforward. How do you do that? Cheers
  20. Thank you.
  21. Hi, The processblog module is great, but there is one thing that bugs me. It's the URL structure. Today I use: /mysite/example-post/ /mysite/categories/example-categories/ Would it be possible to remove the "categories" from the URL? I'd like to accomplish the following: /mysite/example-categories/example-post Thanks!
×
×
  • Create New...