• First, love the plugin and I would pay for this one! That said, I am having an issue with the order that your features are displayed. In the link, you’ll see that the Social Share, Author Box, and Next/Previous Features are displaying above the Product Review Plugin when these should always be at the very end of the posts.
    I see this as being a huge issue with many different plugins that add and contribute to the content of the post or page. Any way to get this changed?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author faycalboutam

    (@faycalboutam)

    Hey!

    Hmm.. I hear you but this is a double-edged sword, I’m sure there are other plugins that may have content which should be put at the end of the post.. I don’t want to force the priority order in this case.

    I can help you with a JS code though, put this in the integration tab of theme options (head or body area):

    <script>
    	(function($) {
    		$(document).ready(function() {
                if ( $('body').hasClass('single') ) {
                    var wppr = $('.wppr-review-container'),
                        ed_tags = $('.expand-divi-below-tags');
                    if ( wppr.length && ed_tags.length ) {
                        wppr.insertBefore(ed_tags);
                    }
                }
    		});
    	})(jQuery);
    </script>

    This code looks for the review box, and add it before the tags in single posts.

    Thread Starter csgaraglino

    (@csgaraglino)

    Awesome, that worked perfectly!
    This would be a good add as a switch ??

    Thanks again!!

    Plugin Author faycalboutam

    (@faycalboutam)

    Oh yeah! I’ll consider adding it as an option in the future : )

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Layout Order problem’ is closed to new replies.