
Boost
Members-
Posts
127 -
Joined
-
Last visited
Everything posted by Boost
-
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.
-
Repeater output is not working (I'm misunderstanding it)
Boost replied to Boost's topic in General Support
-
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?
-
Repeater output is not working (I'm misunderstanding it)
Boost replied to Boost's topic in General Support
I did write only "test", and it did not work without getUnformatted Funny, because I don't remember changing any text formatter setting. -
Repeater output is not working (I'm misunderstanding it)
Boost replied to Boost's topic in General Support
Yes!!! I got it! But why?? -
Repeater output is not working (I'm misunderstanding it)
Boost replied to Boost's topic in General Support
Yes, I just tried, no luck. -
Repeater output is not working (I'm misunderstanding it)
Boost replied to Boost's topic in General Support
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 ? -
Repeater output is not working (I'm misunderstanding it)
Boost replied to Boost's topic in General Support
@aagdyes, I did! @diogo sorry, but which Id are you talking about? Where can I find it? -
Repeater output is not working (I'm misunderstanding it)
Boost replied to Boost's topic in General Support
-
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?
-
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?
-
Ok. I got it. Thanks.
-
I'm able to install any other modules. BTW is this a paid module?
-
Hei, Is it only me or the ProcessMediaManager by @kongondo doesn't install on the latest PW? I'm getting this error:
-
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.
-
[SOLVED] How do I format the username displayed on the admin?
Boost replied to Boost's topic in General Support
Solved! Thank you! -
Thank you!
-
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!
-
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
-
Thank you.
-
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!