michlcamp
Forum Replies Created
-
same for me – deactivated Yoast duplicate post plugin and problem went away
FROM @zenstars
https://github.com/elementor/elementor/issues/10578FIX:
EDIT /wp-content/plugins/elementor/includes/base/controls-stack.phpThis Problem is due to merge of array and non array variables in php 7.3 and above as per my experience.
Kindly change at Line 1183.
if ( ! empty( $control[‘dynamic’] ) {
to
if ( ! empty( $control[‘dynamic’] ) && is_array($dynamic_settings)) {
Solves the issue…
Forum: Themes and Templates
In reply to: [Customizr] Slider no longer fadesThank you! Excellent support.
Forum: Themes and Templates
In reply to: [Customizr] css customizations not working in child themeEasiest way to determine that you’re applying the css classes to the right element is to use Firebug or similar to identify the proper item to modify.
Also recommend using WP Custom CSS plugin
try this:
h3.widget-title { font-size: 1em; margin-bottom: 2px; margin-left: 12px; margin-top: 30px; }Forum: Plugins
In reply to: [Advanced Image Styles] Works after update no longer on WordPress 4.0I just installed it an it’s working fine
Forum: Plugins
In reply to: [Black Studio TinyMCE Widget] Issue with Zedity plugin?Just to be clear :
Perhaps there’s a conflict with a different plugin.. I’m still testing.
Using the GeneratePress Theme – all plugins.
The only time I get an error messages is when both plugins are activated and I try to add a new BSTW widget to the sidebar. The editor comes up, but there are no tool icons and any content I create in the editor is not saved…
This is the error:
TypeError: ed.plugins.contextmenu.onContextMenu is undefinedNo problems when I use Zedity in a new post or page. It works fine.
The error displays when I try to use the BSTW widget while Zedity is active. When I de-activate it, BSTW works fine.I’m fine with all of this, but thought I should let you know.
Thanks, and best of luck.
mcForum: Plugins
In reply to: [Black Studio TinyMCE Widget] Issue with Zedity plugin?Thanks for the responses.
Even without looking into the code for each of these plugins it does make sense that there could be some conflict –
Zedity appears to be “an editor(Zedity) inside an editor(TinyMCE)” so perhaps when BSTW starts and calls TinyMCE, the two plugins are trying to use the same required resources at the same time?
Both plugins work well, just not at the same time…
I don’t mind activating/de-activating Zedity as needed – because that does seem to work ok.
I thought it worthwhile to mention that I’d encountered the conflict.
Thanks, again.
mc