-
AuthorPosts
-
January 13, 2015 at 12:47 pm #182209
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.
January 13, 2015 at 12:48 pm #182210This reply has been marked as private.January 14, 2015 at 4:17 am #182592Thanks 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.
January 14, 2015 at 2:22 pm #183089Is there another way I can make the sidebar stick? via css, perhaps?
January 15, 2015 at 2:23 am #183459Hi 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.
January 15, 2015 at 6:30 pm #184069Ok,
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?:
January 16, 2015 at 4:09 pm #184732Hi 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!
-
AuthorPosts