image_with_border.phtml中的自定义网址

时间:2019-02-04 21:53:54

标签: magento-2.3

我在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>

非常感谢

1 个答案:

答案 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" ?>"