
[英]How to fix disabled form fields in Magento customer create account page
[英]Fix text alignment in account page
我剛剛在我的網站上添加了 php 並想修復文本 alignment。 這是我剛剛添加的代碼非常感謝!
function display_product_image_on_account_downloads( $download ) {
// Targeting view order pages only
if ( ! is_wc_endpoint_url( 'downloads' ) ) return;
if ( $download['product_id'] > 0 ) {
$product = wc_get_product( $download['product_id'] ); // The product object
$image = $product->get_image( array(100, 100) ); // The product image
if ( $download['product_url'] ) {
echo $image . '<a href="' . esc_url( $download['product_url'] ) . '">' . esc_html( $download['product_name'] ) . '</a>';
} else {
echo $image . esc_html( $download['product_name'] );
}
}
}
聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.