Title: funkwarrior's Replies | WordPress.org

---

# funkwarrior

  [  ](https://wordpress.org/support/users/funkwarrior/)

 *   [Profile](https://wordpress.org/support/users/funkwarrior/)
 *   [Topics Started](https://wordpress.org/support/users/funkwarrior/topics/)
 *   [Replies Created](https://wordpress.org/support/users/funkwarrior/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/funkwarrior/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/funkwarrior/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/funkwarrior/engagements/)
 *   [Favorites](https://wordpress.org/support/users/funkwarrior/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio] Portfolio archive](https://wordpress.org/support/topic/portfolio-archive/)
 *  Thread Starter [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/portfolio-archive/#post-18872430)
 * What a fast reply Yann, thank you!
 * In this way I can manage more easily the layout of the query loop block, right?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Google for WooCommerce] Custom product type compatible?](https://wordpress.org/support/topic/custom-product-type-compatible/)
 *  Thread Starter [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/custom-product-type-compatible/#post-18727172)
 * That’s sad 😢
 * Thank you for your quick reply!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin and Site Enhancements (ASE)] Php Warning Undefined variable $anchor](https://wordpress.org/support/topic/php-warning-undefined-variable-anchor/)
 *  Thread Starter [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/php-warning-undefined-variable-anchor/#post-18070849)
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Opening and closing form tag](https://wordpress.org/support/topic/opening-and-closing-form-tag/)
 *  Thread Starter [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/opening-and-closing-form-tag/#post-17075761)
 * Thanks 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MC4WP: Mailchimp for WordPress] Javascript event listener on CF7 integration](https://wordpress.org/support/topic/javascript-event-listener-on-cf7-integration/)
 *  Thread Starter [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/javascript-event-listener-on-cf7-integration/#post-17069303)
 * Thank you for your reply!
 * Using your suggestion I changed my code like this:
 *     ```wp-block-code
       <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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Maintenance] [Plugin: Maintenance] lost dashboard menu](https://wordpress.org/support/topic/plugin-maintenance-lost-dashboard-menu/)
 *  [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-maintenance-lost-dashboard-menu/#post-2958658)
 * Fruitful Code,
    are you kidding?
 * You want to sell as a premium feature a default wordpress utility?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Header Image Slider] [Plugin: Header Image Slider] Dynamic and floating page widths not supported.](https://wordpress.org/support/topic/plugin-header-image-slider-dynamic-and-floating-page-widths-not-supported/)
 *  [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-header-image-slider-dynamic-and-floating-page-widths-not-supported/page/2/#post-2305396)
 * Thanks Jono!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Socialite] Publishes only edited posts](https://wordpress.org/support/topic/plugin-socialite-publishes-only-edited-posts/)
 *  [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-socialite-publishes-only-edited-posts/#post-1365001)
 * Right, 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Socialite] Double postings to FaceBook](https://wordpress.org/support/topic/plugin-socialite-double-postings-to-facebook/)
 *  [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-socialite-double-postings-to-facebook/#post-1286952)
 * just 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Socialite] Publishes only edited posts](https://wordpress.org/support/topic/plugin-socialite-publishes-only-edited-posts/)
 *  [funkwarrior](https://wordpress.org/support/users/funkwarrior/)
 * (@funkwarrior)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-socialite-publishes-only-edited-posts/#post-1365000)
 * same problem here… continue to investigate.

Viewing 10 replies - 1 through 10 (of 10 total)