slidervilla
Forum Replies Created
-
Forum: Plugins
In reply to: [Smooth Slider] Blank space between textsI am glad to know that the slider slider is looking as per your expectation. The [raw] is appearing directly as the theme is not having the following function. If you see auto-formatting happening like auto insertion of p tag, and want to remove, add the following function in the theme’s functions.php and then enclose shortcode inside raw tag,
function my_formatter($content) { $new_content = ''; $pattern_full = '{(\[raw\].*?\[/raw\])}is'; $pattern_contents = '{\[raw\](.*?)\[/raw\]}is'; $pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE); foreach ($pieces as $piece) { if (preg_match($pattern_contents, $piece, $matches)) { $new_content .= $matches[1]; } else { $new_content .= wptexturize(wpautop($piece)); } } return $new_content; } remove_filter('the_content', 'wpautop'); remove_filter('the_content', 'wptexturize'); add_filter('the_content', 'my_formatter', 99);
If you have a moment, I would very much appreciate if you could quickly rate the plugin on WordPress, just to help us spread the word (don’t forget to click the Post button to submit the rating):
https://www.ads-software.com/support/view/plugin-reviews/smooth-slider#postform
Thanks for your time.
Forum: Plugins
In reply to: [Smooth Slider] Blank space between textsThe blank space between the title and content is too much. I think the theme is inserting extra p tag. I would suggest to put the Smooth Slider shortcode between the [raw] tag. e.g.
[raw][smoothslider][/raw]
Let me know if it helps.
Forum: Plugins
In reply to: [Smooth Slider] post wont deleteWe are going to release an update for Smooth Slider in next week and that will have better event handling.
Kindly wait for 4 – 5 days. Thanks for your patience.
Forum: Plugins
In reply to: [Smooth Slider] Problem with middle SliderIt appears that there is some issue with the implementation of Smooth Slider. Probably one of the slide of Smooth Slider is also having another Smooth Slider embedded inside the same. If you can send us a temporary admin access via our contact form – https://slidervilla.com/contact-us/ or directly send to our email address which is support1 [at] slidervilla [dot] com, we can fix the issue in no time.
Forum: Plugins
In reply to: [Related Posts Slider] Only for logged usersHi
You need to uncheck the automatic insertion of Related Posts Slider from the RPS settings page. And then add the below template tag in theme file wherever you want to show the slider. For example, if you want to show below the post content, add the code in single.php file of your theme folder.
<?php if(function_exists('get_related_posts_slider') and is_user_logged_in()) {get_related_posts_slider();} ?>
Let me know if it helps.
Forum: Plugins
In reply to: [Smooth Slider] Smooth Slider not compatible with Hyper CacheDear Stephen
I just tested the recent version of Smooth Slider with the latest copy of the Hyper Cache plugin and didn’t find such compatibility issue. The slider is running perfectly fine as you can see on our lab site – https://lab.webfanzine.com/smooth-slider-demo/
I would request you to kindly take a look and see if any other plugin causing issue or the theme itself. If you can share your webpage URL where the issue is appearing, we may investigate from our end too.
Waiting for your response.
Forum: Plugins
In reply to: [Smooth Slider] Why wouldn't this slider support custom thumbnail sizes?Hello Joel,
Okay, this option would definitely be useful :), if the images are already generated, then it would not be overhead caused due to the slider.
Thanks for the suggestion, will incorporate it in the upcoming version.
Thanks again for your time.
Best Regards,
Tejaswini,
SliderVillaForum: Plugins
In reply to: [Smooth Slider] Hide Past Events with WP Event ManagerForum: Plugins
In reply to: [Related Posts Slider] Will you ever release a 'Related Contents Slider'?Hello Pier,
Many thanks for the note of appreciation.
Yes, we are planning to release an update to Related Posts Slider, but as it displays related posts, it was basically meant to be displayed on posts only. Please let us know if you have any further suggestions for the update.
If you want to have a look similar to Related Posts Slider, but all other options like select posts, pages, media images, exclude categories (taxonomy) etc, social content, you can have a look into Roster Slider ( https://slidervilla.com/roster/ )
Thanks again for writing.
Best regards,
TejaswiniForum: Plugins
In reply to: [Smooth Slider] Not display in IE8 only.Hi
It appears that our support team resolved the issue via email support. Thanks and please confirm.
Forum: Plugins
In reply to: [Dbox 3D Slider Lite] Smooth Slider and Dbox SliderDbox Slider update is expected to come in first week of march 2015. Thanks for your patience.
It appears as a bug in current version. We will release a fix in next 2 days. Thanks
Forum: Plugins
In reply to: [Testimonial Slider] Auto height for SliderDear Mandy
Thanks for sharing the trick. We are working on making better documentation for our products and hopefully we will release new documentation structure in next couple of weeks.
I am glad that you liked the plugin.
Forum: Plugins
In reply to: [Smooth Slider] Display privates posts in sliderHello,
To add pages in Smooth Slider please go to edit page and from smooth slider post metabox check the chckbox “Add this post/page to” and then update the page.
To diaply pages published with a private status in smooth slider you need to do some code changes. Edit the following file:
wp-content/plugins/smooth-slider/slider_versions/smooth_1.php
You need to modify the query at line no. 86 to following:$posts = $wpdb->get_results("SELECT b.* FROM $table_name a LEFT OUTER JOIN $post_table b ON a.post_id = b.ID WHERE (b.post_status = 'publish' OR b.post_status = 'private' OR (b.post_type='attachment' AND b.post_status = 'inherit')) AND a.slider_id = '$slider_id' ORDER BY ".$orderby." LIMIT $offset, $max_posts", OBJECT);
After saving the file, private pages will start appearing in the slider.
Thanks for your patience.
Forum: Plugins
In reply to: [Smooth Slider] Undefined index sldr-verify ErrorHello,
Thanks for writing. This is a notice and it only appears if your WordPress WP_DEBUG is enabled in wp_config file. Very soon we are going to release next update of Smooth Slider, in which we will fix these debug errors.
Thanks for your patience