I remove the procede to ckeckout button because I just want to use the custom_quote button , but I prefer to move the button to the right colum just below the totals summary , see image as example fromThis toThis.
I tested the code in-browser and I believe it is working:
Something I noticed is that the column 'TOTALES DEL CARRITO' is sticky and can overlap the quote area. To remove this sticky behaviour, you can add this CSS to the site:
I remove the procede to ckeckout button because I just want to use the custom_quote button , but I prefer to move the button to the right colum just below the totals summary , see image as example fromThis toThis.
Attached files: FromThis.png
ToTHis.png
Hello Eduardo,
I believe this can be achieved with a PHP code snippet.
I wrote the following code:
This snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/
I tested the code in-browser and I believe it is working:
Something I noticed is that the column 'TOTALES DEL CARRITO' is sticky and can overlap the quote area. To remove this sticky behaviour, you can add this CSS to the site:
.woocommerce-cart .is-sticky-column {
position: initial !important;
}
Kind regards,
Stefan
It works , but if I update product Quantitys on CarUpdate Button get Duplicate see image atached.
Attached files: NeedFix.png
Hmmm, this complicates the issue. In that case, a different approach may be needed, by changing the insertion hook of that button.
This is a bit dependent on each theme so it's hard to say what the best way to do it would be.
Is it possible to share a backend login to the site, or a staging site, so we can check it directly?
Thank you for the access details,
I have made a change to that snippet and set it to the following:
That seems to be working now. Let me know if you see any further issues.
Yes is working now thanks a lot :)