【问题标题】:Adding affiliate links to Woocommerce variations将附属链接添加到 Woocommerce 变体
【发布时间】:2018-03-27 04:04:28
【问题描述】:

我正在尝试将附属链接添加到 Woocommerce 变体。我们的想法是为每个产品变体提供一个唯一的 http 链接/URL(附属链接)。我可以在 Woocommerce 后端输入的链接/URL,当客户点击“添加到购物车”按钮时,会加载一个新网页(基于该产品的相应 URL)

对于没有变化的产品,这很容易实现。但是没有这样的开箱即用的功能可以为具有变化的产品实现相同的目标。

我在here 上遇到了一个解决方案 我实现了代码,但是每当我尝试在后端输入 URL 并尝试保存我的更改时,链接就会消失,不知道我的代码出了什么问题。

    // Display Fields
add_action( 'woocommerce_product_after_variable_attributes', 'variable_fields', 10, 2 );
//JS to add fields for new variations
add_action( 'woocommerce_product_after_variable_attributes_js', 'variable_fields_js' );
// Save Fields
add_action( 'woocommerce_process_product_meta_variable', 'variable_fields_process', 10, 1 );

function variable_fields( $loop, $variation_data ) {
?>  
    <tr>
        <td>
            <div>
                    <label><?php _e( 'Affiliate URL', 'woocommerce' ); ?></label>
                    <input type="text" size="5" name="my_affiliate_url[<?php echo $loop; ?>]" value="<?php echo $variation_data['_my_affiliate_url'][0]; ?>"/>

            </div>
        </td>
    </tr>
<?php
}

function variable_fields_js() {
?>
<tr>
        <td>
            <div>
                    <label><?php _e( 'My Custom Field', 'woocommerce' ); ?></label>
                    <input type="text" size="5" name="my_affiliate_url[' + loop + ']" />
            </div>
        </td>
    </tr>
<?php
}

function variable_fields_process( $post_id ) {
    if (isset( $_POST['variable_sku'] ) ) :
        $variable_sku = $_POST['variable_sku'];
        $variable_post_id = $_POST['variable_post_id'];
        $variable_custom_field = $_POST['my_affiliate_url'];
        for ( $i = 0; $i < sizeof( $variable_sku ); $i++ ) :
            $variation_id = (int) $variable_post_id[$i];
            if ( isset( $variable_custom_field[$i] ) ) {
                update_post_meta( $variation_id, '_my_affiliate_url', stripslashes( $variable_custom_field[$i] ) );
            }
        endfor;
    endif;
}

//front-end variations
function woocommerce_variable_add_to_cart() {
        global $product, $post;
        $variations = $product->get_available_variations();
        foreach ($variations as $key => $value) {
        ?>
        <form action="<?php echo esc_url( $product->add_to_cart_url() ); ?>"method="post" enctype='multipart/form-data'>
            <input type="hidden" name="variation_id" value="<?php echo $value['variation_id']?>" />
            <input type="hidden" name="product_id" value="<?php echo esc_attr( $post->ID ); ?>" />
            <?php
            if(!empty($value['attributes'])){
                foreach ($value['attributes'] as $attr_key => $attr_value) {
                ?>
                <input type="hidden" name="<?php echo $attr_key?>" value="<?php echo $attr_value?>">
                <?php
                }
            }
            ?>
            <table>
                <tbody>
                    <tr>
                        <td>
                            <b><?php echo implode('/', $value['attributes']);?></b>
                        </td>
                        <td>
                            <?php echo $value['price_html'];?>
                        </td>
                        <td>
                            <a class="single_add_to_cart_button button alt" target="_blank" href="<?php echo get_post_meta($value['variation_id'], '_my_affiliate_url', true); ?>" ><?php echo apply_filters('single_add_to_cart_text', __( 'Add to cart', 'woocommerce' ), $product->product_type); ?></a>
                        </td>
                    </tr>
                </tbody>
            </table>
        </form>
        <?php
        }
}

【问题讨论】:

    标签: php wordpress woocommerce


    【解决方案1】:

    已经有一段时间了,所以您可能已经解决了这个问题。但是将来任何人像我一样来到这里寻找答案。

    替换:

    add_action( 'woocommerce_process_product_meta_variable', 'variable_fields_process', 10, 1 );
    

    与:

    add_action( 'woocommerce_save_product_variation', 'variable_fields_process', 10, 2 );
    

    自 WooCommerce 2.4.4 起更改的保存变体

    【讨论】:

      猜你喜欢
      • 2019-04-19
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2018-08-31
      • 2021-12-13
      • 1970-01-01
      • 1970-01-01
      • 2017-02-15
      相关资源
      最近更新 更多