Jump to content

zoeck

Members
  • Posts

    382
  • Joined

  • Last visited

  • Days Won

    2

zoeck last won the day on July 6 2022

zoeck had the most liked content!

2 Followers

About zoeck

  • Birthday June 12

Profile Information

  • Gender
    Male
  • Location
    Bavaria, Germany

Recent Profile Visitors

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

zoeck's Achievements

Sr. Member

Sr. Member (5/6)

326

Reputation

  1. Did you use the "$cache->save()" method? So something like this: $cache->save("test", $consultants, 3600); // get single cache value $str = $cache->get('test');
  2. There is a paid module for this, called Media Manager https://processwire.com/talk/forum/67-media-manager/ Unfortunately, the purchase page is currently in maintenance mode, but i think you can also contact @kongondo directly
  3. Nice module! An "autoclose on save" function would still be good πŸ™‚
  4. Did you take note of this information from the module description?
  5. zoeck

    if query

    "if ($article->gallery_images)" just works if the field is set to one image only. You have to use "if (count($article->gallery_images))" if you want to check whether one or more images are available. https://processwire.com/docs/fields/images/ -> "How to tell if a page has images present"
  6. That looks very interesting, currently I use PhpSpreadsheet for such tasks, but I think the library is actually too big for what I use πŸ˜‰
  7. No, the latest master version was released in august 2023…
  8. Could it be that you have an absolute path to the css files with https in the source code?
  9. Or Laragon πŸ˜‰ https://laragon.org
  10. Unfortunately, I'm not really familiar with XAMPP. But does the website work if you call it up via the following link: http://192.168.0.225/ticf/ or http://192.168.0.225:8080/ticf/ You would have to check which ports your XAMPP uses, apparently port 8085 is set for https. There should be another port for http (possibly 80 or 8080?)
  11. If you don't want https, you have to do the opposite πŸ˜‰ Simply write a # before lines 194 and 195.
  12. Just create a new field in the admin and add it to your template? Here's a little tutorial πŸ˜‰ https://www.smashingmagazine.com/2016/07/the-aesthetic-of-non-opinionated-content-management-a-beginners-guide-to-processwire/#three-simple-core-concepts
  13. Wouldn't it make more sense to put the H2 headings in a separate field? Would also be easier for the editor πŸ˜‰
  14. You have to open the database + table (field_pass) in an SQL administration tool, e.g. PHPMyAdmin (Or if you have installed Tracy with Adminer, you can also use this)
Γ—
Γ—
  • Create New...