Ah yeah I spotted this one too, it’s because $this->config[‘card_width’] isn’t defined. No where in that file do they load the config as they should.
add this towards the top of the productcardrender.php file to fix it (the full file directory is in the error you copied)
if (empty($this->config['card_width'])) {
$this->config['card_width'] = 400;
}
A few more bugs/things I noticed :
- There is no duplicate button for products.
- The price for shipping must be a whole number. I tried setting my shipping cost to £2.99 and it went to £3?
- I cannot set the product url to /%category%/ which isn’t the best for seo.
-
This reply was modified 1 month, 1 week ago by connor012.
-
This reply was modified 1 month, 1 week ago by connor012.