John Huebner
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Error Field type does not existSo, I tracked down the problem. I have another plugin has an action on
acf/init. This action is used to check for the existence of other types of fields and if they don’t exist then parts of the plugin are disabled.I believe it’s running on this hook because, well it does not run if acf is not installed. The parts of the plugin that are disabled are disabled by default and only enabled if the field types are found. Changing the other plugin to
initinstead ofacf/initdoes correct the problem.I’m guessing that this has something to do with the order that the ‘init’ actions are fired. If your init was before acf’s init then more than likely the problems would not exist.
I’m going to change the other plugin, because I can and then check for the existence of the acf function instead of depending on acf’s hook.
My problem is resolved for now. I’m sure that I only did it this way because I found other plugins doing it this way, so other people may run into the same thing if they also use this plugin.
I would suggest that you either set a priority less than ACF’s (which is 5) or change the hook to your filter to
acf/init. I tried both of these options and they both worked, but I’m not sure if there’s anything in the library that you’re using that would cause other issues by doing this.Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Error Field type does not existI think I might be looking at a conflict with another plugin. I’m digging into it now and will get back to you
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Error Field type does not existIn your main plugin file you need to change this
add_action( 'init', 'register_fields_font_awesome' );to this
add_action('acf/include_field_types', 'register_fields_font_awesome'); add_action('acf/register_fields', 'register_fields_font_awesome');this is in the latest update. I also added a “delay initialization” setting to help with performance when a lot of medium editors are added to a page.
Forum: Plugins
In reply to: [ACF Medium Editor Field] Error when no options is selectedThis should be corrected in the latest update
Forum: Plugins
In reply to: [ACF Post-2-Post] Post linked to itself and duplicated postPosts being related to themselves is something in the ACF relationship field and doesn’t have anything to do with this plugin. https://www.advancedcustomfields.com/resources/acf-fields-relationship-query/
Yes, I didn’t like that either. Unfortunately I don’t have much control over Medium Editor. This has actually been brought up in the issues over there. Your CSS work-around looks like the next best solution and I’ll put it into the next update.
Forum: Plugins
In reply to: [ACF Medium Editor Field] Error when no options is selectedPerfect solution, this will be in the next update.
Forum: Plugins
In reply to: [ACF Medium Editor Field] CSS WP UI designThese changes have been implemented on the update I’m pushing now.
Forum: Plugins
In reply to: [ACF Post-2-Post] Doesn’t ACF 5 now support bi-directional natively?No, not that I know of, unless you know something that I don’t. To get this in ACF you need to code it as explained here https://www.advancedcustomfields.com/resources/bidirectional-relationships/.
The difference is that this plugin
- does it automatically
- works with relationship field and post object fields, including mixing them
- automatically adheres to maximum values allows in all fields
- this plugin sets specific guidelines on what fields it will operate on, see the other info link for more information
Basically, this plugin uses the information in the tutorial I linked to but takes it a couple of steps further.
If you know of more recent information on this being implemented in ACF core, please point me to it.
Forum: Plugins
In reply to: [Dynamic Recipient for Contact Form 7] Sending mail in BCCMy plugin will not alter the BCC of the email being sent, and I don’t know how to do this.
A quick search turned up several answers to this question. Although, CF7 changes the way you need to do things so often that most of them are probably out of date.
Forum: Reviews
In reply to: [ACF User Role Field Setting] Great time saverThank you
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Error: after Contact form 7 updateThat doesn’t mean that one of them does not need to be updated. One of the CF7 add ons may be using the old hook. I did a quick search of this plugin and did not any instances of wpcf7_aa_shortcode. Look in your list of plugins, see what CF7 add ons you have, disable them to see if it goes away. Report the problem to that plugin’s author.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Compatibility with PHP 7false positive in compatibility checker, the break is used correctly.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Error: after Contact form 7 updateI just happened across this while doing a search for something similar. Do you have CF7 addons? If you to then more than likely one of these add on plugins needs to be updated.