function nectar_slider_processing($atts, $content = null)
{
    extract(shortcode_atts(array("arrow_navigation" => 'false', "autorotate" => '', "button_sizing" => 'regular', "slider_button_styling" => 'btn_with_count', "overall_style" => 'classic', "slider_transition" => 'swipe', "flexible_slider_height" => '', "min_slider_height" => '', "loop" => 'false', 'fullscreen' => 'false', "bullet_navigation" => 'false', "parallax" => 'false', "full_width" => '', "slider_height" => '650', "desktop_swipe" => 'false', "location" => ''), $atts));
    if ($overall_style == 'directional') {
        $desktop_swipe = 'false';
    }
    $slider_config = array('slider_height' => $slider_height, 'full_width' => $full_width, 'flexible_slider_height' => $flexible_slider_height, 'min_slider_height' => $min_slider_height, 'autorotate' => $autorotate, 'arrow_navigation' => $arrow_navigation, 'bullet_navigation' => $bullet_navigation, 'desktop_swipe' => $desktop_swipe, 'parallax' => $parallax, 'slider_transition' => $slider_transition, 'overall_style' => $overall_style, 'slider_button_styling' => $slider_button_styling, 'loop' => $loop, 'fullscreen' => $fullscreen, 'button_sizing' => $button_sizing, 'location' => $location);
    return do_shortcode(nectar_slider_display($slider_config));
}
function nectar_slider_processing($atts, $content = null)
{
    extract(shortcode_atts(array("arrow_navigation" => 'false', "autorotate" => '', "loop" => 'false', 'fullscreen' => 'false', "bullet_navigation" => 'false', "parallax" => 'false', "full_width" => '', "slider_height" => '650', "desktop_swipe" => 'false', "location" => ''), $atts));
    $slider_config = array('slider_height' => $slider_height, 'full_width' => $full_width, 'autorotate' => $autorotate, 'arrow_navigation' => $arrow_navigation, 'bullet_navigation' => $bullet_navigation, 'desktop_swipe' => $desktop_swipe, 'parallax' => $parallax, 'loop' => $loop, 'fullscreen' => $fullscreen, 'location' => $location);
    return do_shortcode(nectar_slider_display($slider_config));
}