Jump to content

Leaderboard

Popular Content

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

  1. This week we have some useful upgrades to ProcessWire’s Markup Regions system. These upgrades make Markup Regions even more flexible and intuitive by reducing the dependence on HTML id attributes. Here is a new blog post that covers it in detail— https://processwire.com/blog/posts/pw-3.0.250/
    4 points
  2. Cool, thx! I've just pushed your suggested fix and it will be available soon as v1.3.2 🙂
    1 point
  3. @bernhard Not sure if anyone else has seen this issue but on a fresh install RockGrid isn't detected. Tracy shows this warning: Fix: <?php // ...rest of module // use product variations? if (!wire()->modules->isInstalled('RockGrid')) { $fs->add([ 'type' => 'markup', 'value' => 'Product variations require RockGrid>=1.3.0. Please install RockGrid first.', ]); } else { // check if RockGrid is at least 1.3.0 if (version_compare(wire()->modules->get('RockGrid')->config->version, '1.3.0') < 0) { // Add ->config before accessing ->version property here $fs->add([ 'type' => 'markup', 'value' => 'Product variations require RockGrid>=1.3.0. Please update RockGrid to the latest version.', ]); } else { $fs->add([ 'type' => 'checkbox', 'name' => 'useProductVariations', 'label' => 'Enable Product Variations', 'checked' => $this->useProductVariations ? 'checked' : '', 'columnWidth' => 100, 'notes' => 'When checked, RockGrid and all related fields will be installed. Once installed, unchecking the box will not remove the module or fields, it will just not use them.', ]); } } // ...rest of module Works like a charm!
    1 point
×
×
  • Create New...