Description
Hi there,
I'm new to this plugin. First of all, I would like to thank you for this wonderful plugin. I'm using it for the past few weeks. On the plugin description I see that we can delete the row of the table using the delete button next to the row but in my case, I'm not seeing the delete button there. Please help me on how to get it.
FYI, I have added these codes in my functions.php file
function dbTableEditorScripts(){
wp_register_script('employee-table-extensions-js',
get_stylesheet_directory_uri().'/employee-table.js',
array('db-table-editor-js'));
}
add_action('db-table-editor_enqueue_scripts', 'dbTableEditorScripts');
function pa_admin_area_favicon() {
$favicon_url = get_option('ws_favicon');
echo '';
}
add_action('admin_head', 'pa_admin_area_favicon'); if(function_exists('add_db_table_editor')){ add_db_table_editor(array( 'title'=>'[page title]', 'table'=>'[table-name]', 'sql'=>'SELECT * FROM [table-name] ORDER BY sub_id DESC' ));}
Please let me know if I have missed anything.
Thanks in advance.
-Kantha