John Huebner
Forum Replies Created
-
Forum: Plugins
In reply to: [Classic Editor] Changes you made may not be saved.Since it was not there in WP 5.6 and is there in 5.6.1, my guess it that it has something to do with a change there or in that other editor. Quick fix would be to go back to 5.6.
Forum: Plugins
In reply to: [ACF User Role Field Setting] Issue with User Form + required fieldsYes, I know exactly what changed. In older the older version the fields where removed using ACF’s ability to remove them using the acf/pepare_field filter. There was a complaint that this caused repeater data to be shuffled if a repeater sub field was removed and the order of the rows was changed. In order to solve this I changed the plugin to output hidden fields rather than remove the fields completely. The side effect is that the fields are there and acf will attempt to validate them.
What this means is that fields marked as required will not work with this plugin now. Nor will any other field that must validate to have a non empty value.
I don’t know of a fix. The more that time goes by and the more problems that come up the more I think that it will not be possible to resolve all the complexities of ACF and use this plugin. The best course of action is to write your own filters (acf/prepare_field) that only applies to the fields you need them to apply to and to remove the fields based on the current user role rather than use this plugin.
It’s really not all that difficult (if you look at the code in this plugin) to check the current user role against the roles that should have access to a field.
Forum: Plugins
In reply to: [ACF Post-2-Post] Related posts not assignedYes, the relationships can only be set on the other end when this plugin is active.
Forum: Plugins
In reply to: [ACF Post-2-Post] Related posts not assignedNot enough information. Was the plugin installed before adding the relationships?
okay, I misunderstood the setting.
Forum: Plugins
In reply to: [ACF Options Page Admin] Fatal error when activatingWhat version of ACF are you useing, Free or Pro?
If you are using the free version, do you have the ACF Options Page add on installed?
This plugin requires either ACF Pro or the ACF Options Page add on.
Forum: Plugins
In reply to: [ACF Post-2-Post] Error when saving postI just uploaded a new version that should correct this issue
Forum: Plugins
In reply to: [WP Super Cache] Multisite – Disable on specific site not workingDid some more testing, this is definitely caused by enabling the settings
Enable Dynamic Caching
Late InitForum: Plugins
In reply to: [WP Super Cache] Multisite – Disable on specific site not workingAlso, I was able to disable the caching on the site by adding the folder of the site to the list of files and folders not to cache.
Forum: Plugins
In reply to: [WP Super Cache] Multisite – Disable on specific site not workingNo I don’t.
I also checked in network => sites => site => setting and “Wp Super Cache Disabled” shows 1. Everything tells me it should be disabled but it isn’t and the pages of the site are still cached.
Can any other settings effect this? Like Enable Dynamic Caching or Late Init?
Sorry to say this, but that reply was useless.
I have already diagnosed the issue as I described.
Adding Font Awesome (FA) 5 to the admin on the WP site breaks FA display in wordfence.
The reason this happens is that Wordfence uses the handle “wordfence-font-awesome-style” to add FA 4. This causes 2 versions of FA to be loaded. Because FA4 is loaded after FA5 it causes FA icons to break.
I have solved this by dequeuing “wordfence-font-awesome-style”. However, this would not be necessary if Wordfence simply used “font-awsome” as the handle so that it would not be double enqueued in the first place.
It is Wordfence that is causing the conflict and I was just letting you know what the conflict is and how it could easily be corrected by using a standard handle when enqueuing 3rd party assets. Do with the information what you will.
Forum: Plugins
In reply to: [One Click Demo Import] error installing demo dataI no longer have an issue because I gave up and moved on to something else. To be honest, 2 weeks later I don’t even remember what I was doing when I had the issue.
Forum: Plugins
In reply to: [ACF Options Page Admin] ACF Options Page Admin and Divi Dynamic ContentACF has a shortcode, but it is only usable for the simplest of field types. https://www.advancedcustomfields.com/resources/shortcode/
More complicated fields would require custom code even to use them as a shortcode that ACF does not provide and not something that I’m going to add to this plugin.
While I’m glad to help, this question is really not about this plugin. The only thing that this plugin does is exactly what calling the function acf_add_options_page() https://www.advancedcustomfields.com/resources/acf_add_options_page/ or acf_add_options_sub_page() https://www.advancedcustomfields.com/resources/acf_add_options_sub_page/ do except that it gives you an admin page to set them up.
Forum: Plugins
In reply to: [ACF Options Page Admin] ACF Options Page Admin and Divi Dynamic ContentI don’t know the answer to that. To get values from the options page you need to supply the correct ID to get the values from. This could be “optons” or the post ID of the options page created by this plugin or some other custom values.
So the question is… How can you supply the correct post ID in divy builder to allow it to get the right ACF field value?
I cannot answer this question, I do not use themes like this or any other admin page builder when I use ACF. I use code.
Forum: Plugins
In reply to: [ACF Medium Editor Field] Schema EditorNot sure what you’re trying to do but this is a simple content editor and not made for managing schema markup. Can you give a better explanation of what you want this plugin to do?