Jump to content

Gideon So

Members
  • Posts

    489
  • Joined

  • Last visited

  • Days Won

    1

Gideon So last won the day on June 29 2022

Gideon So had the most liked content!

Profile Information

  • Gender
    Male

Recent Profile Visitors

6,562 profile views

Gideon So's Achievements

Sr. Member

Sr. Member (5/6)

302

Reputation

  1. Hi @Cybermano I think you need to set the textarea field to allow data attributes. Which RTE you are using? CKEditor or TinyMce? Gideon
  2. This is unbelievable but true. Gideon
  3. Hi @DrewPH Put the following line into your config.php $config->dbInitCommand = "SET NAMES '{charset}', time_zone = '-08:00' "; Adjust the timezone according to your need. Gideon
  4. Hi @lpa 1. Enable "Allow new pages to be created from field?" in the input tab of the field. 2. Specify the parent and template of the future newly create pages 3. Done. Gideon
  5. Hi @kuenprax Seems that the server is down. Maybe you should contact your hosting company to check. Gideon
  6. Hi @Edward Ver Welcome to the forum and the world of ProcessWire. Please try the following code. Please note the comments to see if you get the idea. <?php $showcase = $pages->find("template=work_details") ?> <?php foreach($showcase as $showcases): ?> <div> <?php foreach($showcases->work_hero_repeater as $whr): ?> // You need to loop therough the repeater because repeater is an arrray. <p class="pb-2 text-left"><?= $whr->work_hero_subheading ?></p> // Then call the field in the repeater item as you need" <?php endforeach; ?> </div> <?php endforeach; ?> Gideon
  7. Hi @MarcC A very wild guess with only not much info from you. Do you check the html syntax? Gideon
  8. Hi @DrewPH There is no such Widget API. Gideon
  9. Hi @Rob(AU) Maybe you can take a look at the api doc about $database https://processwire.com/api/ref/wire-database-p-d-o/ Gideon
  10. Hi @kuba2 I am running a lot of processwire sites with PHP 8.3 and have no problem at all. Do you see any error message? It helps if you provide us the error message if any. Gideon
  11. @bernhard You are the best. ? Gideon
  12. Hi @jeremie Then try this: <?php $items = $pages->find("template=artist")->reverse(); https://processwire.com/api/ref/wire-array/reverse/ Gideon
  13. Hi @jeremie May be <?php $items = $pages->find("template=artist", "sort=-sort"); Gideon
  14. Hi @floko What option do you have toninstall a module? Gideon
  15. @floko May be you can try this module https://processwire.com/modules/process-file-manager/ https://processwire.com/modules/process-file-manager/ Gideon
×
×
  • Create New...