Archive

Posts Tagged ‘field’

How to Add user_registered Column in Authors & Users Page on wp-admin of WordPress

January 13th, 2010 Masino Sinaga 2 comments

Once upon a time, I needed to monitor when did my users registered their account in one of my WordPress website. It meant that I needed to get the value from user_registered field in the users table, and then displaying it in Authors & Users page on wp-admin of WordPress. I have searched for the plugin regarding this, but I found nothing. Actually, I wanted to create the plugin to implement it. Unfortunately, I still have no idea how to do this, since I am not expert to create the plugin (probably someday I can do it). So I decided to edit the core file of WordPress. First of all, I opened the users.php file that located in wp-admin sub directory. After investigating this file for a few minutes, then I found the code regarding how to display the users list in template.php based on the code or function call user_row and get_column_headers. This template.php file located in /wp-admin/includes/ sub directory. So, here is the modification I made. Read more…

  • Share/Bookmark

How to Know The Duplicate Records Based on The Same Value in a Field in MySQL Database

November 28th, 2009 Masino Sinaga No comments

Have you ever wanted to know which record has duplicate content based on the same content in a field in MySQL database? This information will be get after you select the records and display them which one have the same content by groupping them by that field. Well, here is the script how you can do that. Read more…

  • Share/Bookmark

How to Make The New Field Searchable in the Ticket List Page of osTicket v1.6 RC5

November 25th, 2009 Masino Sinaga No comments

This following modification will make the new field that you have added to the osTicket System become searchable in the ticket list page at the staff-side. Assuming the new field name is applications. You can read my modification regarding how to add new or extra fields by reading this article: How to Add Extra Fields on the Open Ticket Form of Client Side in osTicket v1.6 RC5. Read more…

  • Share/Bookmark

Important Things to Edit New Fields in osTicket v1.6 RC5

November 21st, 2009 Masino Sinaga 3 comments

For those of you who have successfully added the new or extra fields in the open new ticket form, please do not forget to customize also the ticket edit feature on the staff-side. From several questions in osTicket Discussion Forum, I read that many people forgot about this. Read more…

  • Share/Bookmark
Categories: osTicket Tags: , , , ,

How to Add Extra Fields on the Open Ticket Form of Client Side in osTicket v1.6 RC5

November 15th, 2009 Masino Sinaga 2 comments

There are lots of question that asking about how to add extra or new fields into the open ticket form and display them onto the viewticket page in osTicket System. One of the questions that you can see is by clicking on this link. This following modification was being made by myself to answer such question. In this example, we will add set of checkboxes that contains of 5 checkboxes, plus one textbox, and groupped them into two additional fields (applications and productkey), onto the form on the client-side. We will make it also for the staff-side in the separate article, later. Read more…

  • Share/Bookmark

How to Add New Tab Next to Post Reply Tab in Staff Panel of osTicket v1.6 RC5

November 7th, 2009 Masino Sinaga No comments

Have you ever wanted to add a new tab next to Post Reply tab in Staff Panel of your osTicket System? Well, here is the solution. There are two possibilities of this purpose. First, you want to display something which is read-only, such as static information. Or, the second, you want to add the form inside that new tab. We will discuss for those both possibilities. This modification applied for staff-side only. Read more…

  • Share/Bookmark