Title: transmitstudio's Replies | WordPress.org

---

# transmitstudio

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[ACF Merge Group Tabs] Doesn't work with latest version of ACF](https://wordpress.org/support/topic/doesnt-work-with-latest-version-of-acf/)
 *  [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/doesnt-work-with-latest-version-of-acf/#post-8021036)
 * It’s a fairly simple fix. You have to make a small modification to line 29 in
   the ACF Merge Group Tabs plugin.
    Change:
 * > `var $boxes = jQuery("#postbox-container-2 .postbox .field_type-tab").parent(".
   > inside");`
 * to:
 * > `var $boxes = jQuery("#postbox-container-2 .postbox .acf-field-tab").parent(".
   > inside");`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize WordPress Emails and Alerts - Better Notifications for WP] Problems with 1.3](https://wordpress.org/support/topic/problems-with-13-14/)
 *  [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/problems-with-13-14/#post-6292850)
 * Same problem here: cannot save new (first) notification. Spinner spins.
 * Edit: did a little troubleshooting. Reverted back to 2015 theme and disabled 
   all (ok most) plugins except for BWPN. That solved it. I then reverted back to
   my theme and started re-activating plugins one by one and then making small changes
   to the notification I’d set up and saving. It kept working until I re-activated
   Advanced Custom Fields plugin. That’s when it broke.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Radio Buttons for Taxonomies] Feature request: Make a selection mandantory](https://wordpress.org/support/topic/feature-request-make-a-selection-mandantory/)
 *  [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/feature-request-make-a-selection-mandantory/#post-5807649)
 * This solution worked for me [via stackoverflow](http://stackoverflow.com/questions/29049543/set-default-taxonomy-term-for-custom-post-type):
 *     ```
       function xmit_set_default_status_term( $post_id ) {
           $current_post = get_post( $post_id );
   
           // This makes sure the taxonomy is only set when a new post is created
           if ( $current_post->post_date == $current_post->post_modified ) {
               wp_set_object_terms( $post_id, 'unfinished', 'projects', true );
           }
       }
       add_action( 'save_post_projects', 'xmit_set_default_status_term' );
       ```
   
 * You will of course want to have your CPT and custom taxonomy **and term** set
   up before using this function.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns] Sort option for attachment (media) custom taxonomies](https://wordpress.org/support/topic/sort-option-for-attachment-media-custom-taxonomies/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/sort-option-for-attachment-media-custom-taxonomies/#post-4374228)
 * Hi smujacic. If I understand your question, you want to sort by custom field.
   This feature is available only if you [purchase the Pro version](http://www.codepresshq.com/wordpress-plugins/admin-columns/pro-add-on/)
   of the plugin (well worth it imho).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Columns] Sort option for attachment (media) custom taxonomies](https://wordpress.org/support/topic/sort-option-for-attachment-media-custom-taxonomies/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/sort-option-for-attachment-media-custom-taxonomies/#post-4374046)
 * Are you sure? That’s where I started but that page does say, “For all support
   questions please use the WordPress forums”. I’ll try the contact form there and
   see if I get a reply.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Click to Edit] What are the calls we have to use?](https://wordpress.org/support/topic/what-are-the-calls-we-have-to-use/)
 *  [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/what-are-the-calls-we-have-to-use/#post-3745854)
 * I wonder if this plugin uses the contenteditable=”true” attribute from the HTML5
   spec. I did try that and of course it works (on an HTML5 site) but it did not
   save to the db, which as I type this leads me to believe that it’s not as simple
   as that (would require Ajax)…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Posts 2 Posts] Breaks with update to WP 3.5](https://wordpress.org/support/topic/breaks-with-update-to-wp-35/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/breaks-with-update-to-wp-35/#post-3317065)
 * On [this dev version of the site](http://tandemsolution.transmitstudio.net/calendar/working-effectively-in-geographically-distributed-agile-project-teams-2/),
   where you see the link ‘View Class Outline’ which linked to the [class overview CPT](http://tandemsolution.transmitstudio.net/class/soft-wegdapt/),
   you can see that it now just links to the current page (itself). If I roll back
   to 3.4 it works again.
 * I’m happy to provide you ftp/wp access if you want to take a closer look.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Posts 2 Posts] Breaks with update to WP 3.5](https://wordpress.org/support/topic/breaks-with-update-to-wp-35/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/breaks-with-update-to-wp-35/#post-3316987)
 * [Here you go](https://gist.github.com/4419975)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Posts 2 Posts] Breaks with update to WP 3.5](https://wordpress.org/support/topic/breaks-with-update-to-wp-35/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/breaks-with-update-to-wp-35/#post-3316970)
 * [p2p-outline-classes_to_events.php](https://gist.github.com/4419203)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Content Shortcodes] Posts do not update in multisite](https://wordpress.org/support/topic/posts-do-not-update-in-multisite/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/posts-do-not-update-in-multisite/#post-3131136)
 * I just downloaded the plugin from the repository today. It says version 0.3.2
   so I’m sure it’s the latest version. The content was just cached so that may 
   be the issue.
 * Clearly I have a lot to learn about caching 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Content Shortcodes] Posts do not update in multisite](https://wordpress.org/support/topic/posts-do-not-update-in-multisite/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/posts-do-not-update-in-multisite/#post-3131132)
 * Thanks for your quick response Curtiss.
 * The code is not working but it’s possible I’m using it in the wrong place. This
   is on a WP Multisite installation and I pasted your code in the functions.php
   file of the main theme first (no effect) and then added it also to theme for 
   the blog I’m using the shortcode in (again no effect).
 * Is there somewhere else I should be pasting your code?
 * Thanks again for your assistance.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Content Shortcodes] Posts do not update in multisite](https://wordpress.org/support/topic/posts-do-not-update-in-multisite/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/posts-do-not-update-in-multisite/#post-3131130)
 * Curtiss would you mind providing an example of how to hook into that filter?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Content Shortcodes] Posts do not update in multisite](https://wordpress.org/support/topic/posts-do-not-update-in-multisite/)
 *  Thread Starter [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/posts-do-not-update-in-multisite/#post-3131128)
 * Ah, so it does. Just checked the post and it has updated. Thank you for clarifying
   and thank you for an excellent plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Genesis Custom Post Types Archives] [Plugin: Genesis Custom Post Types Archives] Mult Sidebars with new version on non archive pages](https://wordpress.org/support/topic/plugin-genesis-custom-post-types-archives-mult-sidebars-with-new-version-on-non-archive-pages/)
 *  [transmitstudio](https://wordpress.org/support/users/transmitstudio/)
 * (@transmitstudio)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-genesis-custom-post-types-archives-mult-sidebars-with-new-version-on-non-archive-pages/#post-2960916)
 * Not exactly stress tested but disable the `replace_ss_support` function by commenting
   out the `add_action` on line 148 in functions.php which is in the lib folder 
   of the plugin. That at least stopped the double sidebar…

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