Is it possible to add a fee based on the product type at the cart or checkout using this plugin?
For example, add a fee for each bookable product in the cart.
Thanks.
]]>I’m find how to make it with standard products, but I can’t find how to make it with bookable products.
Can you help me?
Thanks in advance
Joan
I have to say, I love the idea of the plugin, how it works and looks.
I run into trouble since I have a different type of product displayed in my woocommerce shop, namely from a other plugin ‘PluginHive woocommerce bookings and appointments’ and my products are bookable. It has taken me days to figure out that this is the reason that my products were not visible in the linking process. I think it would be good to include such info in your troubleshooting FAQ.
So I found this out by creating a dummy simple product with relevant categories and tags, and this particular product was shown instantly. Great!
But what can I do for my bookable products? Because that is my product and aren’t linked now.
Do ou have any recommendations or workarounds in this sense?
Thank you so much,
Jori
]]>The actual issue is that the ‘Inventory’ tab is removed by the Bookable Product core implementation, and with it the SKU field it contains.
However, a ‘Booking SKU’ tab is missing on the Bookable Product. Maybe because a WooCommerce Accommodation Product is used, that is based off the Bookable Product?
There may be also other products that extend the Bookable Product class, so this plugin should also show the ‘Booking SKU’ tab for these.
(its just an issue, the rest of the theme its awesome! really appreciate your craft)
]]>The mentioned products seem not to pass the test for VALID PRODUCTS placed in the class.yith-wcwl.php file. It’s a strange behavior because this test simply checks if the products stored in the whishlist’s cookie are published (right?)..
I have out commented the line which filters the products for validity and it works fine – but this way there is a possibility that a product which is not published any more (its status has been changed) stays in the whishlist..
Is there any other way to fix this then the mentioned solution?
I’m using the free version of the plugin.
includes/class.yith-wcwl.php :: line 575:
$valid_products = wc_get_products( array(
‘status’ => ‘publish’,
‘include’ => $items,
‘limit’ => -1,
‘return’ => ‘ids’
) );
if( empty( $valid_products ) ){
//return array();
}
foreach( $wishlist as $key => $cookie ){
if( in_array( $cookie[‘prod_id’], $hidden_products ) ){
unset( $wishlist[ $key ] );
continue;
}
if( ! in_array( $cookie[‘prod_id’], $valid_products ) ){
//unset( $wishlist[ $key ] );
continue;
}
I’d like to be able to create a bookable product which is, for example, 4 sessions over 4 weeks (i.e. one a week), but can’t work out whether this is possible or how to do it. Can anyone please tell me how I could go about that?
Thanks!
Neil
Is any way to make it work both plugins?
Thank you
]]>