WebWise - David Woodthorpe
Forum Replies Created
-
You can add a flexbox css rule to make all of the posts on a row the same height – this can also be useful if you want to always align one element to the bottom of a block (action button etc) which can be done by making one element within the flexbox enabled container grow to take all remaining space.
Forum: Plugins
In reply to: [Atomic Blocks - Gutenberg Blocks Collection] Remove Font AwesomeYou can remove this by using the following snippet in functions.php
add_action( 'wp_enqueue_scripts', 'webwise_remove_atomic_block_css', 100 ); function webwise_remove_atomic_block_css(){ wp_dequeue_style( 'atomic-blocks-fontawesome' ); }
I had a similar issue trying to get Beaver Builder to work for a client – my fix is available on GitHub – https://github.com/WebWiseWales/atfo-bb-compatibility – I hope this helps.
Forum: Hacks
In reply to: Displaying WooCommerce Orders via AJAX request from MySQL Database as LIVE FeedHave you checked out the new woocommerce REST api system?
I’m fairly sure you can use the same meta functions as wordpress using the order id (which is the same as the post id)
Forum: Plugins
In reply to: [WooCommerce Custom Statuses] Woo Dashboard > Monthly Sales (bug)Hello ankulbarar – on a related issue – do you know if it is possible to allow payment of an order with a custom status from the “my account” page? – I have worked out how to show the “pay” link but payment does not actually work. Is there a way to set the status back to “pending” when the pay button is pressed to allow payment?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce add-to-cart button disappears? [humbleshop]Every variation has to have a price set or the add to cart button will disappear when a variation is selected.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Can't get it to work anymoreHello Jeremy – the problem would seem to be one or more of my custom woocommerce plugins – do you have a developer changelog available?
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Can't get it to work anymoreCare to share Mitch?
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Can't get it to work anymoreHello – I have run the compatibility plugin on my site and the http and https tests completed without errors – Jetpack was working perfectly until I upgraded to 2.2 yesterday.
I have the same issue following upgrade to 2.2 with my site using my own vps for hosting.
Also in need of help with this.
Forum: Plugins
In reply to: WooCommerceForum: Plugins
In reply to: WooCommerceAfter checking the code I can see that the cart update function converts the quantity value into a positive integer using absint
Change
// Clean the quantity input $quantity = absint( $cart_totals[$cart_item_key]['qty'] );
to
// DON'T Clean the quantity input $quantity = $cart_totals[$cart_item_key]['qty'] ;
Should sort out the update issue.