我是woocommerce和wordpress的新手,我想要实现的目标是在感谢页面上显示仅适用于下载产品的说明。
可能是我错了但我有这个文件我正在查看woocommerce->templates->order->order-details.php
它有以下代码片段输出thankyou页面上的下载链接(我假设我无法找到另一个文件做这项工作)。
if ( $_product && $_product->exists() && $_product->is_downloadable() && $order->is_download_permitted() ) {
echo 'Click the links below to access your courses. You will also receive an email shortly with the links to download your products.';
$download_files = $order->get_item_downloads( $item );
$i = 0;
$links = array();
foreach ( $download_files as $download_id => $file ) {
$i++;
$links[] = '<small style="font-size: 15pt !important;"><a href="' . esc_url( $file['download_url'] ) . '">' . sprintf( __( 'Download file%s', 'woocommerce' ), ( count( $download_files ) > 1 ? ' ' . $i . ': ' : ': ' ) ) . esc_html( $file['name'] ) . '</a></small>';
}
echo '<br/>' . implode( '<br/>', $links );
}
现在我想要的只是在这里回复文本以获取可下载的产品。但它不显示文字。
我想要回复的文字如下:红色箭头指向的位置
点击以下链接访问您的课程。您很快就会收到一封电子邮件,其中包含下载产品的链接。
如果有人能帮助我,我将非常感激。
答案 0 :(得分:2)
首先确保您已从后端添加可下载文件。 My guess is, you have not added file
。所以从back end
添加任何文件,以便查看您已插入的消息。
请参阅下面的图片和确保,您可以使用方框获得下面图片中显示的内容:
完成此操作后,您将能够看到消息。
我的代码位于相同文件:
<td class="product-name">
<?php
if ( $_product && ! $_product->is_visible() )
echo apply_filters( 'woocommerce_order_item_name', $item['name'], $item );
else
echo apply_filters( 'woocommerce_order_item_name', sprintf( '<a href="%s">%s</a>', get_permalink( $item['product_id'] ), $item['name'] ), $item );
echo apply_filters( 'woocommerce_order_item_quantity_html', ' <strong class="product-quantity">' . sprintf( '× %s', $item['qty'] ) . '</strong><br>', $item );
$item_meta->display();
if ( $_product && $_product->exists() && $_product->is_downloadable() && $order->is_download_permitted() ) {
echo "Click below link to download the file<br>";
$download_files = $order->get_item_downloads( $item );
$i = 0;
$links = array();
foreach ( $download_files as $download_id => $file ) {
$i++;
$links[] = '<small><a href="' . esc_url( $file['download_url'] ) . '">' . sprintf( __( 'Download file%s', 'woocommerce' ), ( count( $download_files ) > 1 ? ' ' . $i . ': ' : ': ' ) ) . esc_html( $file['name'] ) . '</a></small>';
}
echo '<br/>' . implode( '<br/>', $links );
}
?>
</td>
如果您有任何疑问,请与我们联系。