More Karvonen
Forum Replies Created
-
Forum: Plugins
In reply to: [MojoPlug Slide Panel] PHP 8Hi Robert!
Unfortunately I have not tested the plugin with PHP 8. Though, since the essential part of the code is Javascript running on browser, I would bet there are no issues with PHP 8.Forum: Plugins
In reply to: [MojoPlug Slide Panel] IS it still working and image buttonThe plugin still works. Images as buttons -feature is not currently supported. I hope I find some time in the upcoming months to spend some time with this.
Forum: Plugins
In reply to: [MojoPlug Slide Panel] Using for Woocommerce filtersHi ehmarketing,
I’m not sure if I got your problem, but you could try to use “.tax-product_cat” as a “Target Element”. However I’m not a WooCommerce specialist, so this may go wrong.BR; More
Forum: Plugins
In reply to: [MojoPlug Slide Panel] Click anywhere to closeHi,
Unfortunately, not at the moment. I can’t give you any promises, but I’ll take this to my backlog list.Cheers, More
Forum: Plugins
In reply to: [MojoPlug Slide Panel] DIV-Panel does not appear (hover works and clickable)Hi knutbecker,
Sorry for the late response, but good that you got your problem fixed. Thanks for sharing the resolution.-More
Forum: Plugins
In reply to: [MojoPlug Slide Panel] hide on mobileIf the panel disappears, something is going over it. So sounds like the theme you are using have some elements which jump on the way. (It may be the z-index CSS property).
Forum: Plugins
In reply to: [MojoPlug Slide Panel] Questions on pluginHi!
Using Font Awesome will most probably not be possible without some code modifications, unfortunately.Same with adding more than one tab on left or right side of the screen. It’s not possible withouth new version.
I’ll take your reuquirements to the backlog. Let’s hope I will find some time in the future to implement these…..
Forum: Plugins
In reply to: [MojoPlug Slide Panel] hide on mobileThat warning indicates a real problem…. or not. I should actually write some code to take the notification away, when needed.
Meanwhile, if you want and can, you can modify the mojo-sp-public.js file yourself. It’s in the public/js folder. Remove the lines 69, 70, 80 and 81. In other words, you should take away the “if” line and the following “alert” lines:
if (!element.isVisible())
alert(‘MojoPlug warning: This page contains element(s) blocking visibility of left Slide Panel. To fix the problem, find and remove overflow:hidden directive(s) from parent HTML element(s).’)Save the file. Refresh your browser. You may need to refresh the Javascript file as well (the browser may still read the file from the cache): Right click browser page -> View Page Source -> find the JS file -> open it -> refresh the file with browser refresh button.
Sorry I have nothing better at this time. I hope this resolves your problem.
Forum: Plugins
In reply to: [MojoPlug Slide Panel] Deactivate the button hover effect?Yes, you would need to remove some code. If you have already tried it, but it didn’t work, it may be due that you need to refresh your browser with the new JS file. Here’s one way:
Save changes to the Javascript file. Open your site. Right click the page and select “View page source”. Find the Javascript file from the source page. Open it. Click the browser refresh button to read new content. Check the file to ensure your changes are there.
Forum: Plugins
In reply to: [MojoPlug Slide Panel] How to add as Menu itemI guess there is no way to easily (via WP admin functions) to add this to WP menu. You would need to add MojoPlug toggle link with MojoPlug’s own html class as a menu item. That requires some coding.
I can take this idea to the backlog and if I have time in the future, I can take a closer look at this.
Forum: Plugins
In reply to: [MojoPlug Slide Panel] A second scroll bar appears on the right..Hi
I took a look at your site:I can’t figure out how to get vertical scroll bar out with MojoPlug controls. I also doubt it’s Mojo problem. Your site <body> element contains style=”position: relative; overflow-x:hidden;”. If you remove the “overflow-x:hidden;” portion, the scrollbar goes away. I don’t know if it affect any other features on your page, but maybe worth of trying?
You also mentioned emoticons that are behind the Mojo layer. You can try to add these lines in any of your CSS files to fix it:
#mojo-sp-right-wrap {
z-index: 9999 !important;
}cheers, More
Forum: Plugins
In reply to: [MojoPlug Slide Panel] A second scroll bar appears on the right..Hi,
I haven’t seen that before. Can you send a link to your website, I can give it a quick look? You can send the link privately to more.karvonen[ät]qumos.com if you don’t want to share it here.Thanks,
MoreForum: Plugins
In reply to: [MojoPlug Slide Panel] Move entire text field horizontallyHi,
I’m not sure what you mean by “custom design customizer” but the only settings there are for plugin are in the plugin settings sections.If you need anything on top of that, you can customize layout, in some extend, with CSS stylesheets. There are some examples in this forum and also in mojoplug.com site.
-More
Forum: Plugins
In reply to: [MojoPlug Slide Panel] Can Side Tabs Not Be Displayed?Sorry there’s no setting to control the error message you receive. However, you’ll find a workaround here (if you don’t mind removing couple of lines in the plugin code):
https://ww.wp.xz.cn/support/topic/remove-overflowhidden-popup/
What comes to page shifting down when panel is sliding out, I have absolutely no idea, and I haven’t heard similar problem earlier. I did some testing, repositioning the panel etc, but none worked. Probably some conflicting functionality on the page theme, but it would require much thorough investigation.
Forum: Plugins
In reply to: [MojoPlug Slide Panel] Can Side Tabs Not Be Displayed?You can try something like this in your CSS:
#mojo-sp-left { height: 500px; }I can’t guarantee it works in every case, but it should do the trick in most cases.