Forum Replies Created

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

    (@anja12345)

    Sure….I changed the css of my header but I think that is not the best option for users…

    header.header {
    z-index: 99999;

    Thread Starter anja12345

    (@anja12345)

    We changed it on this way. It works ??

    \wp-admin\includes\class-wp-list-table.php Zeile 1240

    public function single_row( $item ) {

    –>

    public function single_row( $item, $level = 0, $data = array(), $index = 0 ) {

    ———————————-

    \wp-content\themes\kleo\kleo-framework\lib\class-tgm-plugin-activation.php Zeile 2536

    public function single_row( $item ) {

    –>

    public function single_row( $item, $level = 0, $data = array(), $index = 0 ) {

    ———————————-

    \wp-admin\includes\class-wp-posts-list-table.php Zeile 1161

    public function single_row( $post, $level = 0 ) {

    –>

    public function single_row( $post, $level = 0, $data = array(), $index = 0 ) {

    ———————————–

    \wp-content\plugins\wowslider\list-table.php Zeile 174, 169

    function display_rows(){
    $index = 1;
    foreach ($this -> items as $data){
    $this -> single_row($data[‘id’], $data, $index);
    $index++;
    }
    }

    function single_row($id, $data, $index){

    –>

    function display_rows(){
    $index = 1;
    foreach ($this -> items as $data){
    $this -> single_row($data[‘id’], 0, $data, $index);
    $index++;
    }
    }

    function single_row($id, $level = 0, $data = array(), $index = 0){

Viewing 2 replies - 1 through 2 (of 2 total)