Jump to content

Java

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by Java

  1. It's nice to see you working on this problem. Since my original post, I've decided to ditch SCF and use EmailObfuscation instead. I don't regret that because I don't get spam.
  2. I have installed the latest version, should be 1.08 but it says 1.07.
  3. Hi, In localhost I have created a contact form using SimpleContactForm. The form has three fields: name, email and message. It works, i.e. the messages are passed locally to "Test Mail Server Tool". If I leave the field 'scf-website' empty, the message "Number of fields does not match" appears in the log file and if I fill 'scf-website' with something, the message "Honeypot field was filled" appears. In both cases - 'scf-website' empty and filled - the message is sent. The "Number of fields does not match" error is annoying, but I could ignore it. The malfunctioning spam protection makes the form unusable. What now?
  4. Thanks wbmnfktr. I've seen that and I've tried it, but it makes no difference. More out of desperation than wisdom I changed "n" to "15" and it works! So the code is now: $items = $page->children("limit=15"); echo $pager->render($items); foreach($page->children("limit=15") as $child) I'm curious about the explanation of this.
  5. Hi The pagination on my site works, that is to say button 1 gives page 1, button 2 gives page 2, 3 page 3 and so on. But page 1 always remains the current, active page no matter what I do, so the pagination display always remains 1 2 3 NEXT. I've searched the forum front to back and back to front, but haven't found a solution to this problem. The code I am using is simple: $items = $page->children("limit=n"); $pager = modules('MarkupPagerNav'); echo $pager->render($items); echo $page->body; foreach($page->children("limit=15") as $child) The attached image shows the generated code. What could be wrong here?
  6. When I started Joomla was still called Mambo. At that time it was quite easy to modify the code to get the desired result; the examples were freely available. That changed with time. Joomla became more and more complicated and the extensions more and more commercial. Seblod was a breath of fresh air. With that you could make what you wanted if you were willing to spend a lot of time searching and studying. I only used the forum to search existing posts. With Joomla 4 it's all done with freedom and joy. Seblod has collapsed and the owners of Joomla-Seblod websites have nowhere to go. At least that's how it seems. Until I came across Processwire after a lot of searching. It takes time to understand the structure and to get used to the simplicity, but it is easy to do with the different profiles. Yes, Seblod is dead and so is Joomla for me. I've been thinking about posting on the Seblod forum about Processwire. Something stopped me: many users means many hackers. And yet..... this message also goes to the forum of Seblod.
  7. Thank you MarkE and zoeck! I see the logic now, kind of stupid of me not to have seen that before.
  8. Hello all, In the past I have made a few websites with Joomla and Seblod. Joomla is completely revamped in the current version 4 and Seblod is hardly updated and not compatible with the new version of Joomla. That is why I started looking for a good CMS. Processwire seems to me to be an excellent replacement, although I need to learn more about the structure and code of the templates. At the moment I am working on my wife's site (https://www.jokeruijs.nl/en/). Using the Regular profile I am trying to generate a list of photos with descriptions. I have a page with two fields: "title" and "image". The template has the following code: <div id="content"> <?php foreach($page->children() as $child) { } ?> <?php foreach($child->get('images') as $image) { $thumb = $image->width(250); } ?> <div class='favs'> <a href='<?=$image->url?>' data-uk-lightbox="image"> <img src='<?=$thumb->url?>' alt='<?=$child->title?>'> </a> <div class='text-favs'> <span><?=$child->title?></span> </div> </div> </div> Problem: Only one picture is shown. The titles of the child pages are there. How do I get all the photos in place?
×
×
  • Create New...