wordpress - how to add shipping cost with product actual price? -


i using woocommerce plugin v2.2.8 ecommerce site. using weight based shipping method. there possibility add shipping cost products actual price displaying in product page?

for eg.. product1 = rs 800/- & shipping cost of product rs 50/- product1 price in shop page should displayed rs 850/- (actual price + shipping cost) note: shipping cost calculated weight based shipping method. possible?

any idea regarding this???

shipping needs destination address, when showing product in shop page no address available there. but, can have flat rate shipping setting every zone can retrieve value own , add price product. if need product based shipping price, define shipping classes, assign desired shipping class product , configure prices each shipping class.

now while showing price product in front end can use following woocommerce hook , put logic modify price.

function return_custom_price($price, $product) {     //apply logic , modify price     return $price; } add_filter('woocommerce_get_price', 'return_custom_price', 10, 2); 

Comments

Popular posts from this blog

ruby on rails - RuntimeError: Circular dependency detected while autoloading constant - ActiveAdmin.register Role -

c++ - OpenMP unpredictable overhead -

javascript - Wordpress slider, not displayed 100% width -