I will have multiple stores setup. Some of the stores will have common products. Some of these common products should be featured in one store but not necessarily in the others. I did a backtrace, etc and I wound up looking at the *_module table and the record for 'featured'. It is JSON code:
Original:
Code: Select all
{
"name": "Home Page",
"product_name": "",
"product": [
"311",
"675",
"201",
"207",
"200",
"473"
],
"limit": "16",
"width": "200",
"height": "200",
"status": "1"
}
Code: Select all
{
"name": "Home Page",
"product_name": "",
"status": "1",
"store": {
"0": {
"product": [
"675",
"201",
"207",
"200",
"473"
],
"limit": "16",
"width": "200",
"height": "200"
},
"2": {
"product": [
"311"
],
"limit": "16",
"width": "200",
"height": "200,
}
}
}