This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter( 'uwp_form_fields_predefined', 'uwp_form_fields_predefined_custom_callback', 10, 2 ); | |
| function uwp_form_fields_predefined_custom_callback( $custom_fields, $type ){ | |
| $custom_fields['quora'] = array( | |
| 'field_type' => 'url', | |
| 'class' => 'uwp-quora', | |
| 'field_icon' => 'fab fa-quora', | |
| 'site_title' => __( 'quora', 'userswp' ), | |
| 'help_text' => __( 'Let users enter their quora url.', 'userswp' ), | |
| 'defaults' => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter( 'show_admin_bar' , 'bd_disable_admin_bar'); | |
| function bd_disable_admin_bar($show_admin_bar) { | |
| return ( current_user_can( 'administrator' ) ) ? $show_admin_bar : false; | |
| } | |
| add_action('init','redirect_to_login_page'); | |
| function redirect_to_login_page(){ | |
| global $pagenow; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Define the custom function to modify Trello card stages. | |
| function bd_custom_job_stages( $stages ) { | |
| // Modify the stages name in the array as needed. | |
| $stages = array( | |
| 'Job Started', | |
| 'Survey', | |
| 'Approval', | |
| 'Manufacturing', | |
| 'Book Job', |
OlderNewer