• Resolved ferda2

    (@ferda2)


    Hello!

    Pure WordPress without plugins – tested on several servers.

    Customizing -> Blog / Archive -> Disable Feature Image -> Save -> Enable Feature Image -> Feature Image NOT show on Single Post :-(((

    How do I regenerate CSS (Astra free)?

    Thank you for your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter ferda2

    (@ferda2)

    Solved by editing the file content-single.php (child theme).

    I’m facing the same issue. I think this is a bug of the theme.

    The setting which controls display of single post feature image is named ast-dynamic-single-post-structure.

    If I import a website then everything works great. If I start anew, I can’t find anyway to update this value. It is just empty. Then fallback to the default value of get_option() which only contains post title and post meta, no post image.

    Anyway, I fixed it by adding the code below to my theme’s function.php.

    add_filter( 'astra_get_option_ast-dynamic-single-post-structure', function( $value ){
    	array_unshift( $value, 'ast-dynamic-single-post-image');
    	return $value;
    });
    Thread Starter ferda2

    (@ferda2)

    solagirl: Thanks, your solution is better.

    Hi guys, sorry for the delay.

    Actually, we don’t have any known issues like what you guys are facing, unless we miss it.

    We have released another update since the initial query was posted. Without the workaround mentioned above, are you guys still experiencing the same? If you are, could you please share the exact steps to replicate this?

    Kind regards,
    Herman ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Single Post – Feature Image NOT show’ is closed to new replies.