wpkmi
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Blocks] Plugin causing PHP Fatal Error on specific pagesError is theme specific.
Forum: Plugins
In reply to: [Contact Form 7] Safari reloads on submit causing DOM events to failOr what would be really helpful, at least in my case, would be to bring back the optional use of on_sent_ok.
Forum: Plugins
In reply to: [WooCommerce Shipping & Tax] Adding credit card for shipping labelsI fixed my issue after disabling and re-enabling the Jetpack connection in the “Site connection” section of Jetpack settings.
Forum: Plugins
In reply to: [WooCommerce Shipping & Tax] Adding credit card for shipping labelsI have this problem too. I have all related plugins up-to-date. I have added a credit card with the account associated with Jetpack on my site.
After disconnecting and reconnecting the issue persists. I cannot see a payment method and am not able to add one via the wordpress backend.
Forum: Plugins
In reply to: [Easy Modal] Plug in suddenly was causing the site to load slowSame problem here. Took quite a while to track down this cause of slowness.
Thanks for the info @stevenschopp
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] PHP 5.6 breaking change without noticeI also downgraded the plugin version after this undocumented breaking change. FYI Ubuntu 14.04LTS is still supported until 2019 – they maintain PHP 5.5.9 – https://packages.ubuntu.com/trusty/php/ – I’d rather not deviate from Ubuntu package source.
- This reply was modified 7 years, 7 months ago by wpkmi.
Forum: Plugins
In reply to: [Ban Hammer] Still got users with the domain i blockedThanks for looking again! Ok, I’ll give that change a go later today. I appreciate your time and effort looking into this issue.
Hopefully tocadisco comes back and tries this fix as well.
Forum: Plugins
In reply to: [Ban Hammer] Still got users with the domain i blockedThanks for the quick reply Ipstenu!
When I use Ban Hammer plugin and block @mail.ru addresses, then attempt to register for a new account using @mail.ru I receive my custom block message and it appears to be working correctly. But then I still have that new user waiting to be approved in my “Approve new users” list.
Can you please verify that you do not have a test user pending approval?
Thanks again.
Forum: Plugins
In reply to: [Ban Hammer] Still got users with the domain i blockedI am having the same issue using the same additional plugin as tocadisco:
I also use the new user approve plugin as well.
“New User Approve” is most likely conflicting with Ban Hammer.
Riskoff,
Did you add the necessary code to your theme’s function.php file?
add_filter( 'wpcf7_form_elements', 'mycustom_wpcf7_form_elements' ); function mycustom_wpcf7_form_elements( $form ) { $form = do_shortcode( $form ); return $form; }
To add the hidden fields, got to contact forms -> edit your desired form -> on the “form” tab where you configure your fields such as [text name], [email email], etc add the following code to the bottom of the form:
[utm_campaign_i]<input type="hidden" name="utm_campaign" value="%s" />[/utm_campaign_i] [utm_source_i]<input type="hidden" name="utm_source" value="%s" />[/utm_source_i] [utm_term_i]<input type="hidden" name="utm_term" value="%s" />[/utm_term_i] [utm_content_i]<input type="hidden" name="utm_content" value="%s" />[/utm_content_i] [gclid_i]<input type="hidden" name="gclid" value="%s" />[/gclid_i]
Hi Riskoff,
Is the data not being collected when a form is submitted? Have you verified that the cookie data is there in your browser session?
This is great, everything is working great now! Thanks so much!
For anyone interested is using this plugin with contact form 7, simply add the following code to your themes function.php file:
add_filter( 'wpcf7_form_elements', 'mycustom_wpcf7_form_elements' ); function mycustom_wpcf7_form_elements( $form ) { $form = do_shortcode( $form ); return $form; }
Then to your form add:
[utm_campaign_i]<input type="hidden" name="utm_campaign" value="%s" />[/utm_campaign_i] [utm_source_i]<input type="hidden" name="utm_source" value="%s" />[/utm_source_i] [utm_term_i]<input type="hidden" name="utm_term" value="%s" />[/utm_term_i] [utm_content_i]<input type="hidden" name="utm_content" value="%s" />[/utm_content_i] [gclid_i]<input type="hidden" name="gclid" value="%s" />[/gclid_i]
And to collect the data, on the mail tab add this to your email message:
Campaign Name: [utm_campaign] Campaign Source: [utm_source] Campaign Term: [utm_term] Campaign Content: [utm_content] Campaign GclickID: [gclid]
Looks like it is not handling spaces (%20) in the UTM data properly.
I turned on debugging, here are the PHP errors when form submission doesn’t work:
[08-Jan-2016 16:52:49 UTC] PHP Parse error: syntax error, unexpected 'LMS' (T_STRING) in /var/www/wordpress/wp-content/plugins/handl-utm-grabber/handl-utm-grabber.php(28) : runtime-created function on line 1 [08-Jan-2016 16:52:49 UTC] PHP Parse error: syntax error, unexpected 'Ad' (T_STRING) in /var/www/wordpress/wp-content/plugins/handl-utm-grabber/handl-utm-grabber.php(28) : runtime-created function on line 1 [08-Jan-2016 16:52:49 UTC] PHP Parse error: syntax error, unexpected 'LMS' (T_STRING) in /var/www/wordpress/wp-content/plugins/handl-utm-grabber/handl-utm-grabber.php(28) : runtime-created function on line 1