htmgarcia
Forum Replies Created
-
We have created a package with a fix. Please download, update into your site and confirm the issue is solved.
Regards
Hi @kirrink @-q–1
reinstalling MetaSlider won’t delete your slideshows.
would you mind to send us an email to help[at]metaslider.com – Include the URL of this forum post in the message as reference. Then reply here to know the email has been sent.
Regards
Hi @-q–1
which PHP and WordPress version are you using?
I recommend to re-install WordPress core in case there is a file corruption through the update section at /wp-admin/update-core.php and click “Re-install version 6.6.2”.
Then reinstall MetaSlider. You can download the last version and upload through Plugins section.
Regards
Actually you shouldn’t add custom CSS to control the display of arrows and dots navigation. Just remove the custom CSS I mentioned in my previous reply.
This is how the slideshow looks in my end: https://ibb.co/hmSZ3vf
If you get a different result, share the browser name and a screenshot of the slideshow to compare.
For reference, we were able to reproduce the issue. A fix is on the way.
Hi @markolympic
the style.css file from your WordPress theme includes some CSS that is hiding the arrows: https://isoh.org/wp-content/themes/biosphere/style.css
.flex-direction-nav {
display: none;
}The dots navigation is visible in my end, at least in desktop. Please verify if other CSS coming from your theme could be hiding other slideshow elements.
Regards
The only field to add text is the caption.
In that case this should do the job:
.metaslider-flex.ms-theme-clarity .ms-image > .metaslider_image_link,
.metaslider-flex.ms-theme-clarity .ms-image > img {
order: 2;
}May I have a link to preview your slideshow?
Please ignore previous suggestion and try this one instead:
.metaslider .caption-wrap {
top: 0;
bottom: unset !important;
}Hi @mica123
to move the caption above, please try adding this custom CSS:
.metaslider .nivo-caption {
top: 0px;
}- Which WordPress version are you using?
- MetaSlider version
- Are you using Gutenberg plugin?
If you can share a screenshot of the screen where you see the error, that may help too. You can use https://imgbb.com/
Regards
Hi @roadlink
May you elaborate on the update details? Additionally, are you using Gutenberg plugin?
Regards
Hi @wordpresssites,
you can use this filter to add custom content to slide captions:
add_filter('metaslider_image_caption', 'custom_metaslider_image_caption', 10, 1);
function custom_metaslider_image_caption($caption) {
$caption = '[custom content or html] ' . $caption;
return $caption;
}For a more advanced insertion of custom content/code, please take a look to
metaslider_image_flex_slider_markup
filter on inc/slide/metaslide.image.class.php line 814 to see the available args. Since this filter allows contains the whole slide<li>
tag, please be careful to not break the slideshow.Regards