Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1085561

    In the Blog-Post Overview element and the Magazin element the definition of ACF (advanced custom fields) show up (see …/news-test).
    In both elements I selected to show just the category “Neues” for blog posts. Therefore advanced custom fields should not show up.

    As a workaround I tried to exclude the ACF definition in CSS, but on News page (…/news) unfortunately the last column is empty and not filled with the following blog post.

    /* Hide ACF Fields as blog */
    .page-id-927 .post-entry-18737 { display: none; }

    Do you have a better workaround or solution?

    many thanks in advance
    tashi

    #1085973

    Hey tashi-11,

    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
      ( do 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

    #1086012

    Hey Nikko,

    Please find the Login Link in private content

    best regards
    Tashi

    #1086826

    Hi tashi-11,

    Thanks I have added this php code at the bottom of your functions.php:

    add_filter('avia_post_slide_query','avia_post_slide_query_mod', 10, 2);
    function avia_post_slide_query_mod($query, $params)
    {
        if( is_page( 'News' )  ) {
            $query['post_type'] = 'post';
        }
        return $query;
    }

    This only affects the News page and not News Test page since that’s what I have specified :)

    Best regards,
    Nikko

    #1087213

    Hey Nikko,

    thanks a lot! Great Support!

    best regards,
    Tashi

    #1087287

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Blog Posts include ACF field definition’ is closed to new replies.