Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author wp-maverick

    (@wp-maverick)

    Hi match858,
    the #daslider CSS style define a relative positionning for the slider container so I guess you must have misplaced the shortcode in your page or maybe your theme use absolute positionning?

    Plugin Author wp-maverick

    (@wp-maverick)

    Hi match858,
    Someone have told me that there was a wordpress support thread about that problem :
    http://wordpress.org/support/topic/shortcode-output-always-appearing-at-top-of-page-content

    Is this your problem?

    Thread Starter match858

    (@match858)

    I’m not sure I understand.

    Do you mean is this me? The answer is no.
    Do you mean do I have the same issue? The answer is no, other shortcodes position as perfectly. This lead me to believe that the issue was with your plugin.

    I have told you of the workaround I a using on your web site http://jltweb.info/realisations/wp-parallax-content-plugin/ under the username Matthew

    Plugin Author wp-maverick

    (@wp-maverick)

    Ok,
    I didn’t know that you were the same person 😉
    I’ll try to find out why my plugin has a problem with shortcodes but I don’t have a lot of time right now 🙁
    Thanks again for using this plugin!

    Djurisko

    (@djurisko)

    Here is the solution:
    Find function parallaxcontentslider_shortcode_call
    and then instead of this line:
    get_wp_parallax_content_slider2( $categ );
    insert this bunch of code:
    ob_start();
    get_wp_parallax_content_slider2( $categ );
    $output_string=ob_get_contents();
    ob_end_clean();
    return $output_string;

    Cheers

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Slider position with shortcode’ is closed to new replies.