• I could see my “screen options” but it was not working on my site which is hosted on BlueHost so after

    1) Turning Off Plug-ins
    2) Deleting All Plug-ins
    3) Removing my Theme & Installing 2016
    4) Completely Deleting my Word Press Installation
    5) Doing a Fresh Word Press Installation

    I can still see my “Screen Options” tab in the top right of the screen but nothing happens when I click on it.

    What Now?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter SparksinTexas

    (@sparksintexas)

    Never Mind. It was Chrome. I installed Internet Explorer and the screen options worked fine.

    One of my chrome extensions was blocking the feature.

    By the way — Do NOT trust the wordpress export. When I re-imported my website only a few of the 85 pictures came back. All my featured images are gone.

    i did all of this
    1) Turning Off Plug-ins
    2) Deleting All Plug-ins
    3) Removing my Theme & Installing 2016
    4) Completely Deleting my Word Press Installation
    5) Doing a Fresh Word Press Installation
    and finally found that problem – my child theme.
    I was doing it according to the instructions of worpress team.
    the subtheme is simple, it connects several scripts, CSS, header.php and a few fucnctions with disabling URL in comments form.

    file functions.php creates the problem

    <?php

    wp_enqueue_script( ‘bootstrap’, get_stylesheet_directory_uri() . ‘/js/bootstrap.min.js’, array( ‘jquery’ ),”, false );
    wp_enqueue_script( ‘custom’, get_stylesheet_directory_uri() . ‘/js/custom.js’, array( ‘jquery’ ),”, false );
    wp_enqueue_style( ‘bootstrap’, get_stylesheet_directory_uri().’/css/bootstrap.min.css’ );
    wp_enqueue_style( ‘font-awesome’, get_stylesheet_directory_uri().’/css/font-awesome.min.css’ );

    //Rearrange Fields to the Comment Form
    function typecore_move_comment_form_below( $fields ) {
    $comment_field = $fields[‘comment’];
    unset( $fields[‘comment’] );
    $fields[‘comment’] = $comment_field;
    return $fields;
    }
    add_filter( ‘comment_form_fields’, ‘typecore_move_comment_form_below’ );

    //Remove comments url field
    function remove_comment_form_url_field( $field ){
    return false;
    }
    add_filter( ‘comment_form_field_url’, ‘remove_comment_form_url_field’ );

    what’s wrong with it?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘New Install – "Screen Options" Not Working’ is closed to new replies.