Studio Pence
Forum Replies Created
-
Forum: Plugins
In reply to: [ACF Enhanced Message Field] Cannot Modify Header InformationHey there Dreb Bits, any thoughts to this?
My apologies for not responding sooner on this – your update fixed this issue! Thank you!
I too was getting this error then dug into the get_current_screen(); function. See the Usage Restrictions of the Codex:
Usage Restrictions
This function is defined on most admin pages, but not all. Thus there are cases where is_admin() will return true, but attempting to call get_current_screen() will result in a fatal error because it is not defined. One known example is wp-admin/customize.php.It appears as if the plugin is attempting to run on the front-end of the site when in fact a proper check of is_admin(); should be run. Wrapping the code found in acf-enhanced-message-v5.php with:
if ( is_admin() ) {}
Seems to fix this issue. @drebbitsweb should confirm.
Thanks for the confirmation. You might want to update your FAQ tab then!
Tatvic – thanks. Your CSS updates obviously fixed the issue so thanks for that fix. However, it still really doesn’t fix the problem in that when your plugin is activated, it literally pulls the anchor with class “show_details_button” tag outside of the div. Why does your plugin have to make it do that?
Hi Tatvic – thank you for your response. I filled out your form.
Brandon
Forum: Plugins
In reply to: [WP Glossary] Term Link – 'No Link' Option Doesn't Seem to WorkYep that did it! Thank you!
arcynet,
I was actually having this EXACT issue with a secured wp-admin directory. Turns out someone else was also having the same issue so they posted on the pro forums. Check it out here:
https://tri.be/support/forums/topic/calendar-prompts-for-authentication/#post-46107
You basically have to allow: ‘wpspin_light.gif’ in addition to ‘admin-ajax.php’ Something like this:
<Files admin-ajax.php> Order allow,deny Allow from all Satisfy any </Files> <Files wpspin_light.gif> Order allow,deny Allow from all Satisfy any </Files>
Hope this helps. Solved it for me!
Forum: Plugins
In reply to: [WP Glossary] Term Link – 'No Link' Option Doesn't Seem to WorkOk thanks for letting me know. I just removed the href link attribute from line #44 of the wpg-shortcode-glossary-atoz.class.php file. That will work for now.
Forum: Plugins
In reply to: [WP Glossary] Term Link – 'No Link' Option Doesn't Seem to WorkHi TCBarrett,
Unfortunately with the Term Link set to ‘No Link’ I’m still getting the ‘href’ link attribute as an output. My current options are:
Tooltip: Off
Archive: Alphabetical
Tooltio(qTip): Off
Term Link: No Link
Term usage: OnA link to the glossary is here:
https://fish.bpence.com/resources/
(click on the ‘Glossary of Insurance Terms’ accordion to see the alpha list).