把阿里巴巴客户信息保存到客户管理

自建WooCommerce里产品属性的短代码

自己定义Woocommerce的产品属性(attributes)的短代码, 灵活应用到有需要的地方.Appearance>>Theme File Editor>>functions.phpif ( ! function_exists( 'display_product_additional_information' ) ) { function display_product_additional_information($atts) { // Shortcode attribute (or...

read more

自建WooCommerce里产品详情的短代码

自己定义Woocommerce的产品详描述的短代码, 并应用到需要的地方.Appearance>>Theme File Editor>>functions.phpfunction custom_product_description($atts){ global $product; try { if( is_a($product, 'WC_Product') ) { return wc_format_content( $product->get_description("shortcode") );...

read more

和客户谈判, 谨记一句话

如果你无法做到转身离开,你就无法与人谈判。一直听到很多人抱怨, 阿里巴巴的客户越来越小; 报价之后客户就不再理我了. 随着信息越来越透明, 的确, 很多小微采购也在阿里上面活跃起来. 甚至, 这批人有很强的谈判技巧, 但是对初级业务员最有用的一招就是"走开".  你不赶紧报价给我 ---- 我就走开, 去你同行那里 你不发价格表给我 ---- 我的采购量是根据价格定的 你的价格太高了 ---- 把你晾到一边去先 什么, 你要问我公司名称? 先把价格列表发过来, 报价过来, MOQ发过来.  我们从来不敢深入问问题, 生怕客户不理,...

read more