我在image_with_border.phtml文件中有此代码,我希望能够在url之后添加sku代码
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
?>
<?php /** @var $block \Magento\Catalog\Block\Product\Image */ ?>
<span class="product-image-container"
style="width:<?= /* @escapeNotVerified */ $block->getWidth() ?>px;">
<span class="product-image-wrapper"
style="padding-bottom: <?= /* @escapeNotVerified */ ($block->getRatio() * 100) ?>%;">
<img class="product-image-photo"
<?= /* @escapeNotVerified */ $block->getCustomAttributes() ?>
src="www.nuovo.it/"<? here would insert Sku code ?>
max-width="<?= /* @escapeNotVerified */ $block->getWidth() ?>"
max-height="<?= /* @escapeNotVerified */ $block->getHeight() ?>"
alt="<?= /* @escapeNotVerified */ $block->stripTags($block->getLabel(), null, true) ?>"/></span>
</span>
非常感谢
答案 0 :(得分:0)
首先为您的BASE链接创建一个变量。
$link="https://www.nuovo.it/";
然后获取SKU代码,并将其通过 strtolower
函数传递(通常的做法是将所有内容保持较低,但无需执行下一步操作)。我不知道您如何在此处获取SKU代码,因此,请随意更改strtolower( )
添加的帖子的内部。
$sku=strtolower($_POST['SKUCODE']);
只需将其与$link
变量
$newlink=$link.$sku;
在$newlink
中使用src
变量
src="<?php echo "$newlink" ?>"