Arreane
Forum Replies Created
-
MetaSlider is responsive-ready. So, it will still look good on a mobile device.
However, if you still wish to display a different slider for desktop, and another one for mobile view. You can create 2 slideshows and use CSS to hide/show the slideshow via depending on the screen’s viewport.
Below is an example on how you can do it via CSS.
/* for desktop slider */ @media screen and (max-width: 768px) { #metaslider-id-3333 { display: none; } } /* for mobile slider */ @media screen and (min-width: 767px) { #metaslider-id-9999 { display: none; } }Forum: Plugins
In reply to: [Quick Event Manager] Category shortcode is not workingIt would also help if you could provide the WordPress and PHP version you’re currently on.
If you see any error messages, please also paste it here.
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.
It also looks good on my end – https://share.getcloudapp.com/2NumWq1j
Can you share us a screenshot on how it looks like on your end and how you expect it to display?
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.
That’s good news! Glad we are able to help.
I will mark this as resolved. Feel free to open a new issue in case you need anything else.
- This reply was modified 3 years, 10 months ago by Arreane.
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.
There are only two registered post types in MetaSlider (ml-slider and ml-slide)
So, you’d have to use the following routes.
/wp-json/wp/v2/ml-slide
/wp-json/wp/v2/ml-sliderBut, before you can access the following routes, you’d have to modify the show_in_rest value to true. You can do this by adding the following code below to your functions.php.
add_filter( 'register_post_type_args', 'customize_metaslider_post_type', 10, 2 ); function customize_metaslider_post_type( $args, $post_type ) { if ( in_array($post_type, ['ml-slide', 'ml-slider'] ) ) { $args['show_in_rest'] = true; } return $args; }Hi,
I have informed by our team that there were no changes made in regards to our API.
It’s most-likely that there are other factors that might’ve cause the issue since you mentioned that the same version of WordPress and MetaSlider has been running fine on your other server.
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.
Hi,
You can hide the Unsplash tab by adding the following CSS code to the admin side of your WordPress site.
#unsplash-tab { display: none; }- This reply was modified 3 years, 10 months ago by Arreane.
Hi,
May I know what versions of WordPress and MetaSlider you have on your old site compared to what version you are currently using now.
Hi,
I might need to check your site directly for me to investigate further. But this is against WordPress guidelines. So, can you reach out to us directly on http://metaslider.com/ instead by clicking the beacon at the bottom right corner of the site.
Hi,
There are instances where users accidentally clicked the duplicate button not realizing that they are looking on a different slideshow and then wonders why the changes does not take effect.
Can you confirm if you’re using the correct slideshow? Currently, you have 2 slideshows running on your homepage. They have slideshow IDs of 182507, and 182531
You can check if you are looking at the correct slideshow by looking at the sample shortcode on the right side of your screen – https://share.getcloudapp.com/E0uyKXEv
Hi Daniel,
Thank you for the suggestion. The issue has been escalated to our development team.
I’ll let you know as soon as I hear back from the team.
Kind regards,
Arreane