php Magento 2:自定义共享和打印按钮phtml

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Magento 2:自定义共享和打印按钮phtml相关的知识,希望对你有一定的参考价值。

<?php
$current_url = $block->getUrl('*/*/*', ['_current' => true, '_use_rewrite' => true])

?>
<div class="facebook">
	<a href="https://www.facebook.com/sharer/sharer.php?u=<?php echo $current_url; ?>" target="_blank">
		<i class="fa fa-facebook-official" aria-hidden="true"></i>
		<span>share on facebook</span>
	</a>
</div>
<div class="pinterest">
	<script
			type="text/javascript"
			async defer
			src="//assets.pinterest.com/js/pinit.js"
			data-pin-custom=true
	></script>

	<a data-pin-do="buttonPin" href="https://www.pinterest.com/pin/create/button/?url=<?php echo $current_url; ?>"
	   data-pin-custom="true" target="_blank">
		<i class="fa fa-pinterest-square" aria-hidden="true"></i>
		<span>share on pinterest</span>
	</a>
</div>
<div class="print">
	<script>
		function printPage() {
			window.print();
		}
	</script>
	<a onclick="printPage()" target="_blank">
		<i class="fa fa-print" aria-hidden="true"></i>
		<span>Print page</span>
	</a>
</div>


以上是关于php Magento 2:自定义共享和打印按钮phtml的主要内容,如果未能解决你的问题,请参考以下文章

php Magento 2:简单记录器到自定义文件

Magento 2:自定义属性不起作用

将“添加到购物车”按钮重定向到 Magento 中的不同自定义页面/在 Magento 的产品页面中添加新按钮

如何在 Magento 管理面板中添加新按钮到订单视图?

Magento:自定义模块错误(在 Layout.php 中找不到类)

PHP TP框架自定义打印函数P