troelsfeodor
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Form submissions not coming throughI got support from my webhost who suggested simply turning on ESI which should fix the “nonce”.
It seems to work so far… Will need a couple of days to verify everthing comes throughWhat is the time frame for the new release that fixes this issue? It’s currently a deal breaker for us.
Forum: Plugins
In reply to: [Contact Form 7] Issue with getting post_titleI got my developer to fix this. Closing down
Forum: Plugins
In reply to: [Contact Form 7] Issue with getting post_titleThanks I tried
[hidden mc4wp-BYG "_post_title"]
but that doesn’t work either.Sorry for my ignorance, but how would I use
[_post_title]correctly inside a shortcode like this?Forum: Plugins
In reply to: [Contact Form 7] Issue with getting post_titleNo I am expecting to get the actual title not the words post_title
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Use mc4wp_checkbox to add to groupAnd in this example I took the interest Id from the generated html in the plugin. I just want to make sure it is correct to use the id in the [brackets] rather than the one in value=”” ?
<input name=”mc4wp-INTERESTS[9b95388b0f]” type=”checkbox” value=”d1bf3f253d”>
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Use mc4wp_checkbox to add to groupThanks Lap.
So, if I understand correctly I add this to my functions.php?
<?php
add_filter( ‘mc4wp_integration_contact-form-7_subscriber_data’, function( MC4WP_MailChimp_Subscriber $subscriber ) {
$subscriber->interests[ “9b95388b0f” ] = true;
return $subscriber;
});Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Contact Form 7 keeps spinning after submitHi Danny,
Thanks for the quick response.
I am running the latest CF7 version, yes.
I checked the debug log and it has warnings like this:
[2016-02-02 08:19:44] WARNING: Contact Form 7 > No MailChimp lists were selectedThat led me to the MC4WP integration setting where I checked the CF7 integration – and sure enough no list was selected. No sure how that was turned off, maybe after a plugin upgrade.
This means the email now is synced to Mailchimp!
However, the spinning still happens and the user doesn’t get a confirmation message as expected. Any ideas that can point me in the right direction?Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce – excelling eCommerce] DKK currency symbolFigured it out!
Added this to my functions.php
add_filter(‘woocommerce_currency_symbol’, ‘add_custom_danish_currency_symbol’, 10, 2);
function add_custom_danish_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case ‘DKK’: $currency_symbol = ‘DKK’; break;
}
return $currency_symbol;
}