rochdesigns
Forum Replies Created
-
Hi @wildguitars the errors are connected with the initial issue on RTL and Touch Swipe functions and already added on our to-do.
Hi @joerg123 there’s no MetaSlider slideshow on your page. Can you please send the link with the slideshow? Thanks!
Glad it worked, thanks!
Hi @amiller4 you can try the Clarity Theme as it displays the caption below the images.
You can use the WordPress function
get_posts
to query the slides:$slides = get_posts(array(
'post_type' => array('ml-slide'),
'tax_query' => array(
array(
'taxonomy' => 'ml-slider',
'field' => 'slug',
'terms' => [ENTER SLIDESHOW ID HERE]
)
)
));Here’s more information on how MetaSlider save the slides on the database: https://www.metaslider.com/docs/metaslider-database-information/
Hi @hirahira please make sure that your on the latest version of MetaSlider. Can you please provide a link so we can troubleshoot further? Thanks!
Hi @heshamg please try adding this to your functions.php:
function metaslider_flex_params($options, $slider_id, $settings) {
if ($slider_id == 123) { // check for slider ID (optional)
$options['move'] = 3;
}
return $options;
}
add_filter('metaslider_flex_slider_parameters', 'metaslider_flex_params', 10, 3);You can add this CSS to make it one line:
#metaslider_2608 .caption-wrap .caption {
padding: 20px;
}Can we have a link to the page so we can check further? Thanks!
Hi @wordpresssites if the buttons have a shortcode. You can use the manual caption field:
Are you sure you changed the width to 277px? It’s not the correct width on your test site.
Yes, please keep the function. You can change the width on your Edit Slideshow Screen under Main Options:
Can you please try changing the width to 277px? Thanks!
Hi @mica123 instead of a CSS solution, can you please try adding this code to your theme’s functions.php: https://gist.github.com/rochdesigns/7a927a5f5821e86795394fbb9e3da443 you’ll need to change the slideshow ID to yours. I added a comment on where you should change it.
Please let us know how it goes. Thanks!- This reply was modified 2 months, 3 weeks ago by rochdesigns.
Hi @maxfomitchev the gap is also not there anymore on mobile:
Can you please check on a different browser or clear your cache? Thanks!