bigshoeinc
Forum Replies Created
-
ok. will do.
I am using the paid version.
I found the solution!!
// client makes a successful payment on an invoice
// Update the woocommerce status after payment madeadd_action( ‘sliced_payment_made’, ‘sliced_woocommerce_set_order_status_2018_08_17’, 10, 3 );
function sliced_woocommerce_set_order_status_2018_08_17( $id, $gateway, $status ) {
if( $status === ‘success’ ) {
$order_id = get_post_meta( $id, ‘_sliced_invoice_woocommerce_order’, true );
if( $order_id ) {
// update woocommerce order status to ‘completed’
$order = new WC_Order($order_id);
$order->update_status(‘completed’);
} else {
return; // not tied to woocommerce order
}
}
}Forum: Plugins
In reply to: [Gravity Fieldset for Gravity Forms] Conditional Logic (GF 2.2.5)Enabling Logging … seemed to have fixed it. Which makes no sense but it is working correctly now.
Forum: Plugins
In reply to: [Gravity Fieldset for Gravity Forms] Conditional Logic (GF 2.2.5)Same… sad but glad I saw these posts as I was loosing my mind! Will submit for support from GF directly.
Thanks! The confusion on my end happened because I initially selected Tease & Include when I created my first feed and then when I switched it to just Redirect nothing changed (hence the confusion)… the teaser text was still showing. Maybe something in the database didn’t register the change. So, this morning I created a new feed and selected Redirect first and it worked without showing the teaser text which is what my client wanted. YaY… your plugin did the trick!! Thank you.
I too want to know if there is a way to add Teaser text box. What is Teaser and include supposed to do?
Did you find a solution?
Forum: Plugins
In reply to: [Gravity Forms Directory] Link a Field to Another Forms Directory Single PageHello, did you ever find a solution?
Thanks DJ for clearing that up for me. Perfect.
@ tmuka. Where exactly do I add this snippet of code? In the meantime, I will try a few things. Thanks in advance.