Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/20/2025 in Posts

  1. Hey @adrian this is a bit special, but maybe it's an easy fix, I don't know 🙂 I love these direct IDE links in dumps that open up the file in question right in my IDE when clicked: The problem is that @Sanyaissues and I have been working on improving RockMigrations deployments and Michael also suggested to put all PW files into /public This leads to a folder structure like this: /Users/bernhard/projectx /public /site /wire /src foo.latte bar.latte When I set localRootPath to /Users/bernhard/projectx/public/ links for files inside the PW root work (eg /site/ready.php) BUT links for files to /src/foo.latte do not 😞 I have all my latte files outside of /public. Also all assets (css/js) are in the /src folder and then compiled, merged and minified via RockDevTools to /public/dst I was hesitant to go with such a setup at first because I was expecting issues. I already had to refactor my modules to support that setup and there are likely some spots still to fix. But I think it is a great setup and it is worth the effort. What do you think? Is that something you could support for tracy debugger as well? Maybe it's just do add a new (optional) setting like "projectRoot" so that paths to can properly be rewritten: /var/www/html/src/foo.latte /Users/bernhard/projectx/src/foo.latte /var/www/html/public/site/ready.php /Users/bernhard/projectx/public/site/ready.php At the moment the result is this: /var/www/html/src/foo.latte /var/www/html/src/foo.latte /var/www/html/public/site/ready.php /Users/bernhard/projectx/public/site/ready.php I guess it's because it does not find $config->paths->root in the filename and thus does not apply a str_replace? Thx a lot in advance 🙂
    1 point
  2. Hey @Spinbox I have just added support for showIf also checking other form fields on the block (not only other settings) and it now supports complex conditions like these: 'showIf' => 'advancedOptions=1 && (layout=grid || layout=list)', 'showIf' => 'whatever=1 || text="foo bar"', https://www.baumrock.com/en/processwire/modules/rockpagebuilder/docs/settings/#conditionals-showif
    1 point
  3. https://chatgpt.com/share/687cd89c-e074-8005-aa0a-e8c850457edf you can use new css :has selector for styling not needed "input + label" label:has(input[checked="checked"]) { text-decoration: line-through; }
    1 point
×
×
  • Create New...