• I am using your development, I find it super, but I have found these observations, for example I cannot hide the duplicator plugin from the menu

    I also found the following error in the browser log when I entered to configure adminimize

    Uncaught TypeError: $(...).select2 is not a function

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

    (@jeanlarrota32)

    problems when recovering a backup, where I am going to import the file with its configurations and it throws me an error

    plugins\adminimize\inc-options\admin_bar_frontend.php

    "Attempt to read property "title" on array"

    if ( ! $value->title ) {

    Thread Starter jeanlarrota32

    (@jeanlarrota32)

    I was able to import my settings by modifying the plugin

    the files:

    plugins\adminimize\inc-options\admin_bar_frontend.php

    and

    plugins\adminimize\inc-options\admin_bar.php

    I modified them

    where if ( ! $value->title ) { becomes the following

    $has_title = ! empty( $value->title );
    if ( $has_title ) { $has_title = '<b><i>' . esc_attr__( 'No Title!', 'adminimize' ) . '</i></b>'; }

    where I replace this ($value->title) with ($has_title)

    this was a temporary solution to get out of trouble,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘The plugin is good but with minor problems’ is closed to new replies.