John Huebner
Forum Replies Created
-
Forum: Plugins
In reply to: [ACF Post-2-Post] Show “from” and “to” links separatellyMy initial reaction was going to be that this is not possible, but after sleeping on it I do have some ideas. Can’t promise anything, but I’ll see what I can do about an indicator for making relationships as created in the current post of from the related post. Could take me a bit to get to it though until I get a couple of minutes I can rub together.
Tried all the steps, still nothing. This needs attention because I really don’t want to have to alter everyone’s password every time they forget what it is on the 100+ websites that I manage. I’m currently considering our attempt at using this plugin as a fail.
I updated the version here to the version you’re using. For now I’ve given up on the static container for all browsers/platforms since there seems to be too many compatibility issues with Medium Editor right now to use it.
Forum: Plugins
In reply to: [ACF Options Page Admin] Update button not translatedthanks again, just updated
Yes. I will update the version just before I push it to here.
There appears to be an incompatibility between with Medium Editor on Macs, which I originally thought was a problem just Safari. It has to do with using a “Relative Container” for the toolbar. If you’ll notice, in the version you tested the toolbar is not neatly contained above the field and instead floats above the selected text. I wanted to use the relative container to make it look more like the standard WP editor.
I will be uploading a new version to here. Right now the change I made effects all browsers and OSs, I’m going to try to make the change for just Macs and see how that goes. I dislike needing do different things for different operating systems, but hoping it is a temporary solution and that medium editor will get the cross browser/platform issues corrected at some point.
Is it possible for you to try the version I just pushed to github? https://github.com/Hube2/acf-medium-editor
2 is what I see when I test in Safari on Windows. Are you on windows or mac?
It appears that it’s either Genesis Title Toggle or Genesis Visual Hook or quite possibly the Genesis theme. There’s going to be very little that I can do since I can’t test, and even if I could I’m not sure I could fix it. If someone can track down where the conflict is I could bring the issue to the attention of Medium Editor. It must be a conflict with one of the scripts being loaded on the site.
I’m not seeing any problem in firefox with either the italic or the bold buttons, or any of the buttons. What other plugins are you using?
Let me guess, you’re using Safari?
Medium editor does appear to have some problems in Safari. I’ve already put one work-a-round in place for some of them. I’ll see what I can do with this.
As a temporary measure you either need to use a different browser or you can create a custom italic button, which does not seem to create this issue. Uncheck the standard italic button for medium editor add a custom button with these settings:
name = italic label = <b title="italic"><i class="dashicons dashicons-editor-italic"></i></b> html tag = iForum: Plugins
In reply to: [ACF Options Page Admin] Russian Translate for pluginThank you, it has been added to the latest update.
I can’t tell what you doing here, this does not appear to be code that would be used to create a dynamic select field using this plugin.
If you’re not a coder I would suggest looking for a plugin that does not require coding. This is a good one https://wpforms.com/
Not sure if there is a rule about posting jobs here, but if you’re looking for someone to hire you should probably look at one of the popular freelancing sites.
Here is a quick example using my example code
function cf7_dynamic_select_published_posts($choices, $args=array()) { $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => -1, ); $query = new WP_Query($args); $choices = array(); if ($query->have_posts()) { global $post; while ($query->have_posts()) { $query->the_post(); $choices[get_the_title()] = get_the_title(); } wp_reset_postdata(); } return $choices; } // end function cf7_dynamic_select_do_example1 add_filter('wpcf7_dynamic_published_post_select', 'cf7_dynamic_select_published_posts', 10, 2);Forum: Plugins
In reply to: [Dynamic Recipient for Contact Form 7] Dynamic Recipient and drop down list1) If you know what that previous post was or you can somehow get that value, then you should be able to get the custom field from it and return that in the filter for this plugin.
2) I cannot help you with. You are talking about dynamically displaying fields based on some conditions, I don’t know if CF7 can do that. But yes, you can set the recipient based on the value selected in another field. See the FAQ https://wordpress.org/plugins/contact-form-7-dynamic-mail-to/faq/