คำถามติดแท็ก media-images

2
วิธีบันทึกแอตทริบิวต์ที่กำหนดเองของรูปภาพใน magento 2
ฉันต้องแสดงภาพผลิตภัณฑ์บางส่วนที่ด้านหน้าตามเงื่อนไข: ควรใช้การตรวจสอบกระจกเงาเสมือน <?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Dcw\Vm\Observer; use Magento\Framework\Event\ObserverInterface; class ChangeTemplateObserver extends \Magento\ProductVideo\Observer\ChangeTemplateObserver { /** * @param mixed $observer * @SuppressWarnings(PHPMD.UnusedFormalParameter) * @return void */ public function execute(\Magento\Framework\Event\Observer $observer) { $observer->getBlock()->setTemplate('Dcw_Vm::helper/gallery.phtml'); } } แม่แบบ: <div class="admin__field …

2
Magento 2, วิธีการลบภาพที่ไม่ได้ใช้โดยใช้สคริปต์ PHP
ฉันมีภาพมากกว่า 50,000 ภาพในผับ / สื่อผลิตภัณฑ์ แต่มีภาพที่ไม่ได้ใช้จำนวนมากดังนั้นผมจึงต้องการที่จะลบภาพทั้งหมดที่ไม่ได้เกี่ยวข้องกับผลิตภัณฑ์ใด ๆ สำหรับ magento 1.9.x นี่เป็นลิงค์อ้างอิง แต่ฉันต้องการสคริปต์ php เดียวกันสำหรับ magento 2.1
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.