transmitstudio
Forum Replies Created
-
Forum: Reviews
In reply to: [ACF Merge Group Tabs] Doesn't work with latest version of ACFIt’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");
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
In reply to: [Radio Buttons for Taxonomies] Feature request: Make a selection mandantoryThis solution worked for me via stackoverflow:
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
In reply to: [Admin Columns] Sort option for attachment (media) custom taxonomiesHi smujacic. If I understand your question, you want to sort by custom field. This feature is available only if you purchase the Pro version of the plugin (well worth it imho).
Forum: Plugins
In reply to: [Admin Columns] Sort option for attachment (media) custom taxonomiesAre 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
In reply to: [Click to Edit] What are the calls we have to use?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
In reply to: [Posts 2 Posts] Breaks with update to WP 3.5On this dev version of the site, where you see the link ‘View Class Outline’ which linked to the class overview CPT, 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
In reply to: [Posts 2 Posts] Breaks with update to WP 3.5Forum: Plugins
In reply to: [Posts 2 Posts] Breaks with update to WP 3.5Forum: Plugins
In reply to: [Post Content Shortcodes] Posts do not update in multisiteI 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
In reply to: [Post Content Shortcodes] Posts do not update in multisiteThanks 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
In reply to: [Post Content Shortcodes] Posts do not update in multisiteCurtiss would you mind providing an example of how to hook into that filter?
Forum: Plugins
In reply to: [Post Content Shortcodes] Posts do not update in multisiteAh, so it does. Just checked the post and it has updated. Thank you for clarifying and thank you for an excellent plugin.
Not exactly stress tested but disable the
replace_ss_support
function by commenting out theadd_action
on line 148 in functions.php which is in the lib folder of the plugin. That at least stopped the double sidebar…