NooTheme Premium WordPress Theme › Forums › JobMonster › An Idea for the user-admin / Problem with design.
- This topic has 7 replies, 2 voices, and was last updated 4 years ago by dangdv.
-
AuthorPosts
-
4 years, 2 months ago #1207991
Hi Noo-Theme-Team,
no problem, but an idea for the user Administration. Could it be possible to add the date of registration in the Admin Area of the users.
The reason: I have no chance to get an overview over the latest user registrations. Now the latest users are listed somewhere within the whole table. So it's a problem to discover suspiscous registrations or the latest entries.
A further information of interest would be about the last access of the user. If I had this information I could contact users who didn't access the site for a long time or delete them.
****
An other idea to improve usability - it concerns the design,- when an employer uploads his logo, no one scales it down to the size of 160x160. The theme automatically displays the center of the Logo - in most situations it doesn't look like well.
*****
A question - somewhere in the system is an image defined that's allways used, as a header, when I didn't change it before in the customizer or in particular job/company - see the attachment.
I've checked the whole customizer, so far I did not find, where I could change it.
****
A question - How many jobs can the system operate properly. Is there any limitation, so that you say don't store more than 1000, 10.000, 100.000 jobs at the same time to avoid a system crash or slow down of the search?
Some ideas for an theme update in future and some problems and some questions. Thanks for help in advance. Your service is a great help.
kind regards
giszech
Attachments:
You must be logged in to view attached files.4 years, 1 month ago #1208018Dear.
1. The WordPress not support save date of user register to database if you want order new user, you can order by ID, Please install and switch your site to use Jobmonster Child Theme, then add custom code in file functions.php of Jobmonster Child Theme to add column ID in admin users list table.add_filter('manage_users_columns', function($columns){ unset($columns['cb']); return array( 'cb'=> '<input type="checkbox" />', 'user_id' => 'ID' ) + $columns; }); add_action('manage_users_custom_column', function($value, $column_name, $user_id){ $user = get_userdata( $user_id ); if ( 'user_id' == $column_name ){ return $user_id; } return $value; }, 10, 3); add_filter( 'manage_users_sortable_columns', function($columns){ $columns['user_id'] = 'ID'; return $columns; });
Also, Please read this article to display user last login.
2. Because it concerns the design, so we're add notice 'Recommend size: 160x160px' in Company logo field, the Employer require add logo with size 160x160, if remove it will break design.
3. The Jobmonster not support change default image heading in Customizer but you can change it via use custom code, please add custom code in file functions.php of your theme and change 'default_image_url' in custom code to your image url.
add_filter('get_page_heading_image', function( $image, $image_id){ if(empty($image_id)){ return 'default_image_url'; } return $image; },10,2);
Best regards.
4 years ago #1209360This reply has been marked as private.4 years ago #1209369Dear, I was check your site and change custom code to hook 'noo_default_page_heading_image' now please check your site again.
4 years ago #1209419This reply has been marked as private.4 years ago #1209463This reply has been marked as private.4 years ago #1209487This reply has been marked as private.4 years ago #1209538This reply has been marked as private. -
AuthorPosts
You must be logged in and have valid license to reply to this topic.