Dave
Forum Replies Created
-
Great temporary fix!
Also experiencing the “No posts found” – only on the pages tree view. Post and CPT’s work as expected.
Forum: Plugins
In reply to: [WC Fields Factory] Change The Fields Location on Product PageSo following up…The filter works and places it where I need it on product page but it throws off validation. It’s not recognizing any of the values I fill in. This is a variable product and I just want the single variation I have to be after these custom product fields.
Any thoughts?
Forum: Plugins
In reply to: [WC Fields Factory] Change The Fields Location on Product PageSaravana,
This is great! The filter works perfect. Thanks for the quick response and solution.
Looking forward to this option in an upcoming release
Forum: Plugins
In reply to: [WC Fields Factory] Select or Radio Options not showingOkay, I’m dumb. I was expecting a similar action to Advance Custom Field where a select field’s label defaults to the value if one isn’t entered.
I only had 4 when in should have been 4|4
Any luck with this? I’ve been digging into it for sometime. I was able to populate a custom field with this snippet but then my merge tags on the custom field can not be dynamically populated.
https://www.ads-software.com/support/topic/reorder-a-drop-down-populated-with-a-custom-post-type
Forum: Plugins
In reply to: [WooCommerce Simply Order Export] CSV is BlankHAH, I had to save settings before exporting…
Thank you!
Forum: Plugins
In reply to: [Special Recent Posts] Not Working After The UpdateI had a similar problem with the posts spanning across the page…
Adding
display: inline-block;
to the class .srp-container-single-column seemed to fix for me.I believe the lack of browser support for
flex-flow: column nowrap
on .srp-container-single-column was causing this layout issue.Any luck with figuring any of this out? Still experiencing exact same problem as Absque
Forum: Plugins
In reply to: [WP Stripe] [Plugin: WP Stripe] Send Email To UserHas anyone had success implementing the confirmation email? Been trying to figure this out..
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Problem with array_key_exists() warningsAjax can be set to true or false in the shortcode. Go to the page where the form is on. When you use the add form button, the ajax setting can be checked/unchecked there.
Same applies if it’s used in a widget.
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Problem with array_key_exists() warningsInteresting. I set form to ajax=”true” and the warnings disappear.
Forum: Plugins
In reply to: [Gravity Forms + Stripe] Problem with array_key_exists() warningsHmmm I’m experiencing this issue too.
The above solution does not solve it. I have text selected and ajax is false.
Here is whats in line 2356
if ( 'creditcard' == $input_type ) { if ( ! array_key_exists( $field['inputs'][0]['id'], $lead ) ) { $input_name = "input_" . str_replace('.', '_', $field['inputs'][0]['id']); $original_value_changed = $original_value = rgpost( $input_name ); $original_value_changed = str_replace( ' ', '', $original_value_changed ); $card_number_length = strlen( $original_value_changed ); $original_value_changed = substr( $original_value_changed, -4, 4 ); $original_value_changed = str_pad( $original_value_changed, $card_number_length, "X", STR_PAD_LEFT ); if( $original_value_changed == $value ) { $value = $original_value; } } }
Any suggestions?
Linda,
Is there an error message? Can you give us a little more background detail?
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Listing Only Results Without SearchThat would be great! Will definitely utilize it.
My temporarily solution was this:
Add a class to the content container of page where I need the hidden search form.
<div class="page-content <?php if (is_page('online-retailers')) { ?>formHide<?php } ?>" >
Hide the form with CSS
.formHide #sl_div #searchForm {display: none;}