How can we help?

If you are looking for support for our PokaTheme, this is the place!

Home Forums PokaTheme support Yoast SEO dont see the Full width sections

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2665
    Hugo
    Participant

    Hi,

    I’m buidling my website with the Pokatheme v2. When i’m putting text in the full width sextions the pluggin Yoast SEO dont recognized it. Only when i put content in the ” normal sextion” Yoast SEO recognized it.

    What can i do?

    #2673
    admin
    Keymaster

    Hi Hugo!

    I hope this article will answer your questions : https://yoast.com/yoast-seo-supports-advanced-custom-fields-acf/
    The article is referring to this plugin that gives support to Yoast SEO for ACF custom fields.

    ACF Content Analysis for Yoast SEO

    #2754
    Hugo
    Participant

    Thanks! works great.

    I have another question.
    If i want to put a review table on a page, and only put the casino’s that i want to select, you have to put the reviews IDs separated by comma.

    Where do i find the IDs of the reviews? I tried everything but it wont work.

    #2764
    admin
    Keymaster

    Hi Hugo,

    When you are in the Dashboard and you hover the link of the review you can see it’s ID from the URL.
    It is the number in this part : post=238 (the ID is 238)

    Also there are plugins if this is complicated for you.

    Catch IDs

    #2765
    ellis2611
    Participant

    Hugo, I use a code in the childtheme functions.php which adds a Post ID column in Posts and reviews table.

    /**
    * Just adds a column without content
    *
    * @param array $columns Array of all the current columns IDs and titles
    */
    function misha_add_column( $columns ){
    $columns[‘misha_post_id_clmn’] = ‘ID’; // $columns[‘Column ID’] = ‘Column Title’;
    return $columns;
    }
    add_filter(‘manage_posts_columns’, ‘misha_add_column’, 5);
    //add_filter(‘manage_pages_columns’, ‘misha_add_column’, 5); // for Pages

    /**
    * Fills the column content
    *
    * @param string $column ID of the column
    * @param integer $id Post ID
    */
    function misha_column_content( $column, $id ){
    if( $column === ‘misha_post_id_clmn’)
    echo $id;
    }
    add_action(‘manage_posts_custom_column’, ‘misha_column_content’, 5, 2);
    //add_action(‘manage_pages_custom_column’, ‘misha_column_content’, 5, 2); // for Pages

    • This reply was modified 5 years, 4 months ago by ellis2611.
    #2798
    Hugo
    Participant

    Thanks, you guys are verry helpfull!!! 🙂

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