[Support request] [Page_hero_gravatar] Error

Home Forums Support [Support request] [Page_hero_gravatar] Error

Home Forums Support [Page_hero_gravatar] Error

  • This topic has 3 replies, 2 voices, and was last updated 2 years ago by David.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2181214
    Ermal

    Hi, i recently updated my generatepress theme and on my posts im getting this error:
    https://prnt.sc/BTcIccfoLetg

    Any way to fix it?

    Thanks

    #2181218
    David
    Staff
    Customer Support

    Hi there,

    how did you add the PHP Snippet for the shortcode to your site ?

    #2181225
    Ermal

    I dont’ remember, i did it 3 years ago

    #2181247
    David
    Staff
    Customer Support

    OK, use the Code Snippets plugin to add this snippet to your site:

    function lh_page_hero_gravatar() {
        ob_start();
        global $post;
        $author_id = $post->post_author;
        ?>
        <div class="page-hero-gravatar">
            <?php echo get_avatar( $author_id ); ?>
        </div>
        <?php
        return ob_get_clean();
    }
    add_shortcode( 'page_hero_gravatar', 'lh_page_hero_gravatar' );

    OR Alternatively rebuild your Header Elenments using the Block Element:

    https://docs.generatepress.com/article/block-element-page-hero/

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