Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #182209

    Missy S
    Participant

    Hi,

    I am using ethos and I am trying to use this popular plug in but whenever I activate it, the post slider blog on my homepage disappears.

    This is the plugin – https://wordpress.org/plugins/q2w3-fixed-widget/

    Another ethos client used the plugin successfully here: https://wordpress.org/plugins/q2w3-fixed-widget/

    Please help. Thank you.

    #182210

    Missy S
    Participant
    This reply has been marked as private.
    #182592

    Rubin
    Keymaster

    Thanks for writing in! It sounds like you might be having an issue with a third party plugin or script. Regretfully, we cannot provide support for third party plugins or scripts as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.

    Thank you for your understanding.

    #183089

    Missy S
    Participant

    Is there another way I can make the sidebar stick? via css, perhaps?

    #183459

    Paul R
    Moderator

    Hi Missy,

    Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a link to a similar example site would be very helpful, or perhaps some screenshots), we’ll be happy to provide you with a response once we have a better understanding of the situation.

    #184069

    Missy S
    Participant

    Ok,

    Here is the link with a sticky sidebar using your template. is there css I can use to make the sidebar fixed as it is here?:

    http://homeli.co.uk/

    #184732

    John Ezra
    Member

    Hi Missy,

    Thanks for updating us. You would need both CSS and JavaScript.

    You can add this under Custom > CSS in the Customizer.

    @media screen and (min-width:979px){
    .fixedsidebar {
        position: fixed;
        top: 2.5%;
        right: 17.89%;
        width: 18%;
    }
    }

    add this under Custom > JavaScript also in theCustomizer just below the Custom CSS.

    jQuery( function($){ 
    
    $(window).on('scroll', function(){
        var sidebar = $('aside.x-sidebar.right');
        if ( $( this ).scrollTop() >= $(sidebar).offset().top
     - 20 ) {
    console.log('fixed attached');
          $( sidebar ).addClass('fixedsidebar');
        } else {
          $( sidebar ).removeClass('fixedsidebar');
        }
    console.log('scrolled');
    });
    
    $(window).trigger('scroll');
    
    });

    Hope this helps!