Answer the question
In order to leave comments, you need to log in
How to remove the checkbox from all products through the console?
I'm trying to uncheck the box popular with all products, alas, it doesn't work
<?php
$products = $modx->getIterator('msProduct', array("class_key" =>"msProduct"));
foreach($products as $product){
$options = $product->getMany('Options');
$options = array(
'popular' => 0,
);
$product->set('options', $options);
$product->save();
};
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question