barryanders
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Sticky Form] Compatibility with Gravity Forms v1.9 betaAny word on this? Looks like they just updated to version 1.9 official release a few days ago. It’s out of beta. I’m going to test it.
Forum: Plugins
In reply to: [Gravity Forms Sticky Form] Compatibility with Gravity Forms v1.9 betaI can confirm that it doesn’t appear to work with Gravity Forms 1.9 beta 5 either. I hope it’s just something small.
Forum: Plugins
In reply to: [WooCommerce] How to Skip Checkout Page?To put it simple, here’s the default Woocommerce progression:
Shop Loop -> Cart -> Checkout -> Order Confirmation -> Account Page
Here’s what I currently have:
Shop Loop -> Checkout -> Account Page
I would prefer this:
Shop Loop -> Account Page
But am willing to accept this if I can find a way to automatically submit the checkout form when that page loads so the user doesn’t have to click anything:
Shop Loop -> Checkout -> Account Page
Forum: Plugins
In reply to: [Game Schedules] Question about Schedule IDThe more I look, the more I think that it has nothing to do with the ID being letters. It doesn’t always delete the data either. Sometimes, it stays, but other times it all clears. Still working on this.
Forum: Plugins
In reply to: [WooCommerce] Help With Gravity Forms Input FieldsI’ve made significant progress, but I still need a little help.
My code as it stands is like so:
$form_id = RGFormsModel::get_form_id('Domains'); $form = GFFormsModel::get_form_meta($form_id); $field = GFFormsModel::get_field($form, 1); $leads = RGFormsModel::get_leads($form['id']); foreach($leads as $lead) { foreach($field as $field_id) { $value = rgar($lead, (string) $field_id); echo $value; } }
This returns all entries for the field I want, however, I only want to return the entry that was submitted with that particular product. Help?