Arreane
Forum Replies Created
-
Alright, have fun coding! 🙂
Hi,
I’m afraid you will be needing basic knowledge for Javascript in order for you to achieve your customization.
After re-reading your ticket, You can actually embed your JS directly on your theme without using MetaSlider filters.
Below is the snippet on how to trigger a .click event.
jQuery(function($) { $('.your-selector').on('click', function() { // do your stuff here }); });I went ahead and checked your site. Your slideshow seems to be displaying the caption on mobile. I could also see the padding: 5px 20px;
Here’s a screenshot of my experience.
https://share.getcloudapp.com/OAu6wYWkHi,
The latest version of MetaSlider is v3.27.2. It has been tested with the latest version of WordPress.
May I know what version of MetaSlider you have updated?
Hi,
Alright, just put in the links whenever the you get your site to live so we can try and assess the issue.
Have a great day!
Hi,
Is it possible for you to share a screenshot so we could better understand how it looks on your end.
Hi,
MetaSlider doesn’t have an Elementor widget. As an alternative, you can use Elementor’s shortcode widget instead and paste the MetaSlider shortcode.
Forum: Plugins
In reply to: [Redux Framework] Meta boxesHi, here’s a link for the Metaboxes documentation.
https://devs.redux.io/core-extensions/metaboxes.htmlThat’s good news! Glad we are able to help. I’ll update the status as resolve now.
Have a great day!
You are actually using one slider twice which is causing the JS conflict.
One is added inside .ast-above-header container. This is used for the desktop view.
https://share.getcloudapp.com/9ZumvzgmAnd the second one is added inside .ast-below-header. This is used for the mobile view.
https://share.getcloudapp.com/qGu7PZrmHere’s another screenshot to make it more clear where the sliders reside https://share.getcloudapp.com/KouAxnE7
I would suggest duplicating the slider and use the duplicated one for the mobile. This way, both sliders will run without a problem since you will now be using different slider IDs.
Hi Nereaj,
Looks like you’re trying to embed the same slider twice. MetaSlider doesn’t allow same metaslider id from getting embedded into the same page as it would cause a scripting issue.
In order for both the slider to work, you need to duplicate the slider and use the duplicated slider id for your mobile display.
Hi Dennis,
This is not possible at the moment. Currently, MetaGallery only has the option to edit the alt attribute of the image.
MetaSlider is still on its beta phase. Adding a link on the images will be included in the future updates.
The images you doesn’t exist on the exist on the link you provided.
Can you point me to the exact link from your site where I can investigate the issue.
Hi,
I went ahead and checked your site, it seems to be showing the arrows and the dots. https://share.getcloudapp.com/E0uoxQBw
Forum: Plugins
In reply to: [Quick Event Manager] Page not foundHi Chris,
You can use the following CSS code below to hide the sidebar:
body.single-event .widget-area.sidebar-primary { display: none; } body.single-event #primary { float: none; margin: 0 auto; }You can create an event template by creating a single-event.php.
- This reply was modified 4 years, 2 months ago by Arreane.