The 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.
I tried with ‘[raw][smoothcategory catg_slug=”destacado”][/raw]’ and the ‘[raw]’ code now is shown in the slider. Look here: http://i.imgur.com/4CfMKQE.jpg
Anyway, I made some changes and now the slider look almost like I want: http://i.imgur.com/gtUnpyk.jpg. If I can’t solve the problem, I think I can live with that. 🙂
I 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):
http://ww.wp.xz.cn/support/view/plugin-reviews/smooth-slider#postform
Thanks for your time.