Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1325147

    To whom it may concern,

    How can I set the posted date exactly after the title in the blogs archive page for each article ?

    Regards

    #1325155

    Hi,

    Could you please a link to your page and a screenshot showing the changes you would like to make so we can make sure we understand clearly? :)

    Regards,
    Yigit

    #1325364

    Hi,

    I would like to have the blog posted date visible underneat the the category title in the blogs archive page as attached.

    View post on imgur.com

    Can you guide me through please?

    #1325425

    Hi,

    Please create a new file on your child theme inside /shortcodes/ folder using this code – https://pastebin.com/P9EHiaMD and name it postslider.php. Then add following code to functions.php file of your child theme

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    Best regards,
    Yigit

    • This reply was modified 3 years ago by Yigit. Reason: typo
    #1325426

    Wheer can I find the shortcodes folder in the child theme please? I dont seem to have it

    #1325429

    Hi,

    Sorry for the confusion, I realized I made a typo. Please create a folder and name it “shortcodes” :)

    Regards,
    Yigit

    #1325432

    no worries :)

    It worked :)

    Now how can I style it? I want to move the date further down. What is the class name of the date?

    View post on imgur.com

    #1325438

    Hey,

    Great :) Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    .html_elegant-blog #top .avia-content-slider .blog-categories {
        margin-bottom: 30px;
    }

    You can use following selector to target it

    #top .slide-meta-time.updated { 
    
    }

    Cheers!
    Yigit

    #1325442

    perfect thank you so very much.

    This can be closed :D

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Blogs Archive Page Date’ is closed to new replies.