Jump to content

การใส่ภาพประกอบสินค้าในรายละเอียดสินค้า


prestashop_begin

Recommended Posts

การใส่ภาพประกอบสินค้าในรายละเอียดสินค้า จากที่มีข้อความว่า

 

"Do you want an image associated with the product in your description? Click here."

พอคลิกเสร็จจะมีรูปให้เราเลือกแล้ว copy tag ไปใส่ใน รายละเอียดสินค้า แต่ไม่ขึ้นอ่ะครับ พอวิวดูไม่แสดงภาพแต่แสดง tag อย่างเดิม ไม่ทราบว่าเป็นกันไหมครับ แล้วแก้ยังไงครับ

 

 

ปล. ผมใช้ prestashop 1.5.3 ครับ

Link to comment
Share on other sites

  • 5 weeks later...
  • 4 weeks later...

มันบอกว่า "คุณต้องการภาพที่เกี่ยวข้องกับผลิตภัณฑ์ในคำอธิบายของคุณ หรือเปล่า"

- มันเป็นฟังก์ชั่น เพิ่มภาพ ใน คำอธิบายสินค้า ครับ

Link to comment
Share on other sites

  • 2 weeks later...

ขอบคุณมากครับ สุดยอด

override

controllers/front/ProductController.php

 

protected function transformDescriptionWithImg($desc)
{
// $reg = '/\[img-([0-9]+)-(left|right)-([a-z]+)\]/';
$reg = '/\[img\-([0-9]+)\-(left|right)\-([a-zA-Z0-9-_]+)\]/';
while (preg_match($reg, $desc, $matches))
{
	$link_lmg = $this->context->link->getImageLink($this->product->link_rewrite, $this->product->id.'-'.$matches[1], $matches[3]);
	$class = $matches[2] == 'left' ? 'class="imageFloatLeft"' : 'class="imageFloatRight"';
	$html_img = '<img src="'.$link_lmg.'" alt="" '.$class.'/>';
	$desc = str_replace($matches[0], $html_img, $desc);
}
return $desc;
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...