Arreane
Forum Replies Created
-
Event if you separate them into 2 slideshows. The page load time count will still be the same. Unless you create a custom ajax code to render your slideshows separate from the initial page request.
Having 140 images on a single page would likely slow down your site.
You can try to reduce it down until you will no longer see the error from your Google Page Insights.
Even if you break it down into different slideshows, but if you’re still loading them into the same page at the same time, the results will still be the same.
That’s good news! Feel free to reach out to us again in case you need anything else. We’ll be happy to assist you.
Have a great day!
Hi,
You should contact W3Speedster on how to exclude specific directories with their JS minification feature. In this case, the MetaSlider directory which would most-likely be on /wp-content/plugins/ml-slider
Please also try disabling the lazy loading feature as it would sometimes cause issues with MetaSlider.
Thank you for pointing this out. This has been escalated to the development team. We’ll try to get this removed on the next release.
Hi,
Can you try setting your width to 1920px and check the “100% width” option from the advance settings.
Let us know how it goes.
Hi,
May I know which button is not working for you?
Most of the time when a button doesn’t work is that there is more-likely a javascript error that would prevent any MetaSlider functionality from running.
You can check and see if there are errors in your dev tools.
- Open the DevTools
Press Command+Option+J (Mac) or Control+Shift+J (Windows, Linux, Chrome OS) to jump straight into the Console panel of Chrome DevTools.
Or, navigate to More Tools > Developer Tools from Chrome menu, and click Console tab.
- Identify the Error
The error console will open. If you don’t see any errors try reloading the page. The error may be generated when the page loads.
The console will provide you with the error type, the location of the error and the line number
Upon further investigation, I’ve found out that the Dokan plugin is not using the WordPress native 404 redirection whenever a vendor doesn’t exist. It uses their own ajax response to manipulate the 404 page display.
As much as we want to help you, this is beyond our ability to make changes as this is a custom functionality made by the Donkan plugin. I would suggest reaching out to their support team and see if there is something they could do about the issue.
Hi,
Please add the following code below to your functions.php to hide the Add Slideshow button from the classic editor.
add_action( 'init', 'remove_filters' ); function remove_filters(){ global $wp_filter; foreach($wp_filter['media_buttons']->callbacks[10] as $filter_callback => $value) { if(strpos($filter_callback, 'insert_metaslider_button') !== false) { unset($wp_filter['media_buttons']->callbacks[10][$filter_callback]); } } }Hi,
I’m afraid that’s not possible. There is no way for MetaSlider to retrieve the comment image automatically.
The only way to do this with MetaSlider is to setup the slideshow by manually adding the images from the comments to your slideshow.
We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
I’m afraid you’d have to create the sliders separately for each sub sites.
Thank you for providing the link. Please use the following CSS code.
#metaslider-id-53985.metaslider a.flex-prev, #metaslider-id-53985.metaslider a.flex-next { width: 20px !important; height: 48px !important; background: none !important } #metaslider-id-53985.metaslider a.flex-prev:before, #metaslider-id-53985.metaslider a.flex-next:after { font-family: 'Font Awesome 5 Free'; font-weight: 900; display: block; font-size: 30px; text-indent: 0; color: #fff; } #metaslider-id-53985.metaslider a.flex-prev:before { content: '\f053'; } #metaslider-id-53985.metaslider a.flex-next:after { content: '\f054'; }Can you provide me a link on your site where MetaSlider is embedded and I’ll try to provide you with the custom CSS code.
- Open the DevTools