funkwarrior
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Php Warning Undefined variable $anchorThank you!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Opening and closing form tagThanks for the quick reply,
I already added a class but sadly it’s not enough. I really need to enclose to form in a tag to correctly match the theme. Is there another solution?
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Javascript event listener on CF7 integrationThank you for your reply!
Using your suggestion I changed my code like this:
<script> document.addEventListener( 'wpcf7mailsent', function( event ) { var newsletter = document.getElementsByName('_mc4wp_subscribe_contact-form-7')[1].checked || false; window.dataLayer.push({ "event" : "cf7submission", "formId" : event.detail.contactFormId, "response" : event.detail.inputs, "newsletter": newsletter }); }); </script>
Forum: Plugins
In reply to: [Maintenance] [Plugin: Maintenance] lost dashboard menuFruitful Code,
are you kidding?You want to sell as a premium feature a default wordpress utility?
Thanks Jono!
Forum: Plugins
In reply to: [Plugin: Socialite] Publishes only edited postsRight, I finally resolve this issue:
the facebook.inc.php, twitter.inc.php and myspace.inc.php have a condition based on the PUBLISH button value of the backend and, in my case, the conditional code not matching with my localized version of wordpress.facebook.inc.php line 61 //if($publish_opts['publish'] == 'Publish' || $publish_opts['publish_future'] === true) ... //changed to: if($publish_opts['publish'] == 'Pubblica' || $publish_opts['publish_future'] === true)
just search $publish_opts[‘publish’] within the includes (facebook.inc.php, twitter.inc.php and myspace.inc.php) and change the right operator with your localized string of ‘Publish’.
and now every things works fine…Hope can be useful for someone.
Forum: Plugins
In reply to: [Plugin: Socialite] Double postings to FaceBookjust check the settings: If you check both Add Status Update to the Wall and Add Links to the Wall you have double posts..
Forum: Plugins
In reply to: [Plugin: Socialite] Publishes only edited postssame problem here… continue to investigate.