Здравствуйте. Нужно в /catalog/view/theme/default/template/product/category.tpl (список товаров в категории) сюда вывести картинку товара (миниатюру) Но что бы скрипт брал первую картинку из описания товара.
Нашла похожее но только для WP/
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
// no image found display default image instead
if(empty($first_img)){
$first_img = "/wp-content/uploads/2010/04/103.jpg";
}
return $first_img;
}
catch_that_image(), которая собственно и извлекает из поста первую картинку посредством регулярной записи
Как это применить к opencart?
Спасибо.