polarracing
Forum Replies Created
-
Thanks for the reply. I realy appreciate the effort you put in this project.
I understand the task and I have the same issue with thinks I develop. For me the docs are fine – but for somebody just starting they are not enough. (And of course I used the hidden docs already – And I’m already member of your Discord).
And you are absolutelly right – the pace in AI is realy a challenge. 🙂Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] Issue with display of select fieldsHas this been fixed with 3.19.17?
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] Issue with display of select fieldsI was able to fix it – need to check if everywhere – by adding following css
.acf-related-terms-field .acf-checkbox-list.acf-bl { border: #ccd0d4 solid 1px; border-radius: 3px; max-height: 200px; overflow: auto }as the tag
<div class="categorychecklist-holder">seems to been removed.
This is related to https://ww.wp.xz.cn/support/topic/tags-box-issue-in-3-18-15/
- This reply was modified 2 years, 2 months ago by polarracing.
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] WYSIWYG TinyMCE not showing upAs it is solved somehow – even not in the best possible way – I mark this topic as solved
- This reply was modified 2 years, 10 months ago by polarracing.
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] WYSIWYG TinyMCE not showing upUPDATE 3:
Found the issue:
TinyMCE is not shown if WP Media Library is dissabled for the form.
This should be fixed as it is realy confusing that this has effect on TinyMCE – as in my form is no “Media or Upload” field at all – so no reason to allow Media Library.I can understand whats happening. When I turn Media Library off – you are blocking/unloading/not loading some scripts – apparently also the one for TinyMCE.
- This reply was modified 2 years, 10 months ago by polarracing.
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] WYSIWYG TinyMCE not showing upUPDATE 2:
Does not seem to be a generall issue of the plugin.
The same form is opening with TinyMCE on one content type and without on another content type.
Any idea where to look for. Already tried:- Remove field from form, save and re-add to form -> No luck
- Remove field and add to another form on the same content type -> No luck
- Changed user roles to check permission issue -> No luck as admin or user
- Added new to a form for user on a content it was not working for admins -> No luck
Any idea where to look further?
If I remove my code – I get the two error messages from the beginning on top.
With my code – only the one from Real Cookie Banner
Version: 3.7.2
With all plugins turned of (except RCB and polylang) = same result
- This reply was modified 2 years, 11 months ago by polarracing.
Sorry – took a while to answer, but yes.
I switched the whole site to twentytwentythree and the issue persists.Without Real Cookie banner I had that issue as well – but was able to solve it with following code in functions.php.
remove_action( 'shutdown', 'wp_ob_end_flush_all', 1 ); add_action( 'shutdown', function() { while ( @ob_end_flush() ); } );That removes my other ob_end_flush error messages, but does not work for your plugin.
Without that code, I get my old error messages back and the ones from real cookie banner comes on top.
- This reply was modified 3 years ago by polarracing.
Your code is not correct – use
a.xoo-el-lostpw-tgr:hover { background-color: pink; }Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Issue with latest versionNo issue any more – solved it. Thanks
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Issue with latest versionOk, got it. I was just to lazy to figure out how to increase the memory limit for one hoster. 🙂
Solved.My new code on line 74
if ($url_query_args) { wp_parse_str( $url_query['query'], $url_query_args ); // ORIGINAL LINE 74 }- This reply was modified 3 years, 6 months ago by polarracing.
Forum: Plugins
In reply to: [Real Cookie Banner: GDPR & ePrivacy Cookie Consent] Update to 3.4.0And sorry again – one should only do one thing at the time.
No, the issue was not gone with 3.4.0 – just forgot that I de-activated the plugin for development.
Now, with the version in this post it seems to be fine – with activated plugin 🙂
Forum: Plugins
In reply to: [Real Cookie Banner: GDPR & ePrivacy Cookie Consent] Update to 3.4.0Sorry, for the late reply – I was some days away.
The issue was an caching issue. After clearing all cache it works properly with 3.4.0.