How can we help?

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

Forum Replies Created

Viewing 3 posts - 21 through 23 (of 23 total)
  • Author
    Posts
  • in reply to: Question regarding Statcounter #2940
    ellis2611
    Participant

    Hi. Flytonic casino review plugin has a build in short code generator.

    If I create a table with 5 casinos, I can make a shortcode of it and place this in my posts and pages.
    If I ever want to change the table, then I only have to edit the shortcode instead of editing tons of pages.
    Check Flytonic Review plugin. It has the same Feature. Shortcoder plugin works also, so never mind ok.

    I can place statcounter in header or footer. But with this theme, if I place it in footer I see no hits.
    So something is blocking it from proper tracking. I will check this out tonight.

    Thank you for helping me out

    in reply to: Question regarding Statcounter #2919
    ellis2611
    Participant
    This reply has been marked as private.
    in reply to: Yoast SEO dont see the Full width sections #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, 5 months ago by ellis2611.
Viewing 3 posts - 21 through 23 (of 23 total)