Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1349901

    My portfolio Item, under Featured Image only got 2 option “Show on single entry” or “hide on single entry”.

    No option to browser and select featured image.

    #1349941

    Hey kimhoegcit,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1349958

    I found that I can see the featured image in Classic Editor, I will install the plugin once my event is over next week. Thanks!

    #1350007

    Hi kimhoegcit,

    I see, I’m glad to hear that.
    Just let us know if you need further assistance.

    Best regards,
    Nikko

    #1350010

    maybe you can read this: https://kriesi.at/support/topic/beitragsbild-eines-blogbeitrags-automatisch-anzeigen/#post-1198720

    and in particular : https://kriesi.at/support/topic/beitragsbild-eines-blogbeitrags-automatisch-anzeigen/#post-1202606

    I edited that snippet a bit to more look like the posts not generated with alb:

    function avf_template_builder_content_postimage_mod($content = ""){
      if(  is_singular('post') || is_singular('portfolio') && ( '1' != get_post_meta( get_the_ID(), '_avia_hide_featured_image', true ) ) )  {
            $featuredImage = get_the_post_thumbnail( $the_id, 'entry_with_sidebar' );
            $content = '<header class="entry-content-header"><div class="page-thumb">' .$featuredImage. '</div></header>' . $content ;
          }
      return $content;
    }
    add_filter('avf_template_builder_content', 'avf_template_builder_content_postimage_mod', 10, 1);

    but remember – it is only shown if you set the metabox to insert on single post – and try to avoid using full-width elements on those posts. – because otherwise the sidebar (if present) will go under this content.
    _______________________

    btw.: is that new on the metabox – to have a choice for svg’s ?

    • This reply was modified 2 years, 4 months ago by Guenni007.
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.