Sticky Post position on blog

Hello,

I want to make a sticky post and place it on a fixed 3rd position in my blog. How can I do this?

Any suggestions?

Hi Dennis,

Thank you for reaching out to us. This can be done with custom scripting. try adding the following code in the Theme Options > JS:

jQuery(document).ready(function($){
	$('.blog .big.featured').parents('article').insertAfter('.x-main article:nth-child(2)');
});

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Don’t forget to clear all caches including your browser’s cache after adding the code. Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.