在我的Woocommerce网站上,用户可以通过Fancy product designer插件设计多达6个不同的图像。我正在尝试在结帐页面上在购物车项目上输出这些用户的缩略图,而不仅仅是显示一张产品图片。
Website我正在努力做到这一点。
class-wc-cart.php
$dom = new DOMDocument;
libxml_use_internal_errors(true);
$dom->loadHTML( $thumbnail );
$xpath = new DOMXPath( $dom );
libxml_clear_errors();
$doc = $dom->getElementsByTagName("img")->item(1);
$src = $xpath->query(".//@src");
$srcset = $xpath->query(".//@srcset");
// custom image from customer
foreach ( $src as $s ) {
$s->nodeValue = $fpd_data['fpd_product_thumbnail'];
}
foreach ( $srcset as $s ) {
$s->nodeValue = $fpd_data['fpd_product_thumbnail'];
}
return $dom->saveXML( $doc );
我使用一个foreach来浏览高级产品设计师提供的图像。但这就像只是列出我结帐中的第一张图片。
知道是否有可能,或者我应该在woocommerce的class-wc-cart.php
文件中使用另一种方法。
class-wc-product.php
//the additional form fields
public function add_product_designer_form() {
global $post;
$product_settings = new FPD_Product_Settings($post->ID);
if( $product_settings->show_designer() ) {
?>
<input type="hidden" value="<?php echo esc_attr( $post->ID ); ?>" name="add-to-cart" />
<input type="hidden" value="" name="fpd_product" />
<input type="hidden" value="" name="fpd_product_thumbnail[]" />
<input type="hidden" value="<?php echo isset($_GET['cart_item_key']) ? $_GET['cart_item_key'] : ''; ?>" name="fpd_remove_cart_item" />
<?php
if( !fpd_get_option('fpd_wc_disable_price_calculation') )
echo '<input type="hidden" value="" name="fpd_product_price" />';
do_action('fpd_product_designer_form_end', $product_settings);
}
}
代码中有一个函数“ after_product_designer ”,在其中我添加了一些jQuery代码以获取应该从FPD发布多个fpd_thumbnail的输入字段。
位于 if(order.product!= false)
var values = [];
if(<?php echo fpd_get_option('fpd_cart_custom_product_thumbnail'); ?>) {
// $cartForm.find('input[name="fpd_product_thumbnail"]').val(dataURL); (OLD/Original)
$('input[name="fpd_product_thumbnail[]"]').each(function(){ // NEW
values.push($(this).val(dataURL));
});
}
答案 0 :(得分:1)
1)您应该向WP.SE
问与WP相关的问题 2)您的解决方案应位于代码下方(添加functions.php
并根据需要进行修改):
// Product thumbnail in checkout
add_filter( 'woocommerce_cart_item_thumbnail', 'product_thumbnail_in_checkout', 200, 3 );
function product_thumbnail_in_checkout( $thumbnail, $cart_item, $cart_item_key )
{
$use_product_thumb = false; //true or false
if (array_key_exists('fpd_data', $cart_item))
{
$thumbnail =""; //clear existing thumb
if ($use_product_thumb)
{
$fp = json_decode( stripslashes($cart_item['fpd_data']['fpd_product']) , true);
foreach($fp['product'] as $each)
{
$thumb = $each["thumbnail"];
$thumbnail .= '<img src="'.$thumb.'" style="width:50px; float:left; margin:5px;" />';
}
}
else{
$thumbnail = '<img src="'.$cart_item['fpd_data']['fpd_product_thumbnail'].'" style="float: left; margin: 5px; width: 200px; max-width: 550px;" />';
}
}
return $thumbnail;
}
答案 1 :(得分:1)
我找到了一种从精美的产品设计器中提取base64图像并在结帐中列出的解决方案。它们都以某种方式组合在一个垂直的base64文件中。尚未找到解决方案。但这与本主题无关。
更改:
class-wc-product.php 并将fancyProductDesigner.viewInstances[0].toDataURL
更改为fancyProductDesigner.getProductDataURL
,这将在一个数据URL中创建所有视图。如FPD jQuery documentation中所述,不同的视图将位于彼此之间。
更改: class-wc-order.php 函数add_order_item_meta到以下代码。
public function add_order_item_meta( $item_id, $item ) {
$fpd_data = null;
if( isset( $item->legacy_values['_fpd_data'] ) ) // WC 3.0+
$fpd_data = $item->legacy_values['_fpd_data'];
else if( isset( $item['_fpd_data'] ) ) // WC <3.0
$fpd_data = $item['_fpd_data'];
if( !is_null($fpd_data) ) {
wc_add_order_item_meta( $item_id, '_fpd_data', $fpd_data);
}
}
那是我的解决方案。