Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #713127

    Hi Kriesi
    I have three issues:
    I am using the Aviva layout builder to make blog posts with the Content Element Blog posts. Here you can enter the posts you would like to bring into the page. I need this layout on the page so I can include a Lightbox Gallery and Testimonials below the main text.

    1. The first problem is I can’t control the meta that is displayed either on the page I am importing the posts into or the on the single posts. My default theme settings has only the date and author ticked (I have category unchecked). However on a particular category I don’t want any meta at all – no category, no date, no author. I can’t seem to control this. But it is showing all of these both on the page and on the single posts. See posts marked Retreats.

    2. Because I have used the Aviva Layout builder it does not display my blog post excerpt on the page. If I revert to the post layout without using Aviva layout builder the excerpt is reinstated.

    3. How to change the symbol after read more (from arrow to »)

    Many thanks Kriesi
    Helen

    #714237

    Hi helban!

    Thank you for using Enfold.

    1.) You can remove it by using the following css code.

    .page-id-79 .slide-meta {
        display: none;
    }

    2.) Edit the blog posts element then adjust the “Blog Content length” settings.

    3.) Please use this in the functions.php file.

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('.more-link-arrow').text(function(i, text) {
    		  return text.replace('→', '>>');
    		});
    	}
    	
    	a();
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    #729121

    With regard to the above no. 1. this doesn’t work. I have entered it in the Quick CSS on the General styling page and in my child theme stylesheet.

    Please advise why it doesn’t work.

    Thank you
    Helen

    PS new password below

    #729136

    Hi!

    Try the following

    .page-id-79 .blog-categories { display: none; }

    let us know if that works,

    Thank u

    Cheers!
    Basilis

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.