Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #645737

    Hello!

    Is there an easy way to move the date below the title in the magazine element? I would like to use this in the sidebar and it doesn’t look the way I would like with the dates above the titles.

    I am trying to get as close as possible to the same view as the Enfold Child Latest News widget. I will be submitting a feature request to either have that view added to the options for the blog posts element, or to add an option to that Latest News widget to allow for filtering by tag instead of category.

    Thanks in advance for your help!

    #645771

    Hi Julie!

    can you please show us what you are building, so we can get an idea and maybe been something really easy for us to provide some CSS?
    Let us know please!

    Cheers!
    Basilis

    #645787

    Hey Basilis,

    Thanks for your quick reply. I want to show blog posts by tag, and that option is unfortunately not available in the Recent Posts widget, Latest News widget or any of the other options except the blog posts widget– I just don’t think the available display options for that look as good.

    The magazine element gets close, but the dates are above the titles.

    Links to the pages in question and screenshots are below.

    Thank you for your help!

    #647738

    Hi,

    Thank you for the info. Please remove the css modification then add this in the functions.php file:

    // custom script
    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script>
    (function($){
    	function h() {
       		$('.av-magazine-entry').each(function() {
       			var date = $(this).find('.av-magazine-time'),
       				title = $(this).find('.av-magazine-title');
    
       			date.insertAfter(title);
       		});
       	}
    
       	h();
    })(jQuery);
    </script>
    <?php
    }

    This will move the date below the title.

    Best regards,
    Ismael

    #647821

    Dear sir,

    It is possible to disable ‘ALL’ in AV-MAGAZINE module? If yes how?

    ( I’d like to display only each post categories content individually in tabs, and not showing all tab with its content.)

    Like here: http://www.arlingtoncemetery.mil

    Ty in advance!

    Regards, Daniiel

    #649195

    Hi,


    @dwebprojects
    We have already replied to your thread here – https://kriesi.at/support/topic/to-disable-all-in-av-magazine/
    Let us stick to that thread and not hijack others :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Move date below title in magazine element’ is closed to new replies.