This file contains 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', |
This file contains 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 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 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 | |
/** | |
* This code create a shortcode [buddy-overall-rating]. | |
* It can be used on archive item template. | |
*/ | |
add_shortcode( 'buddy-overall-rating', function($args){ | |
$plugin_public = new GeoDir_Review_Rating_Manager_Public(); | |
return $plugin_public->show_overall_multiratings(); | |
}); |
This file contains 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
// < ES5 | |
function x( n1, n2 ){ | |
return n1 + n2; | |
} | |
console.log(x(9,2)); | |
// ES5 | |
var y = function(n1, n2){ | |
return n1 + n2; | |
} |
This file contains 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 | |
// non class stuff | |
add_action( 'wp_footer', 'wpdev_170663_remove_parent_theme_stuff', 0 ); | |
function wpdev_170663_remove_parent_theme_stuff() { | |
remove_action('wp_footer','geodir_location_autocomplete_script'); | |
} | |
| |
add_action( 'wp_footer', 'geodir_location_autocomplete_script' ); | |
function geodir_location_autocomplete_script() { | |
global $geodirectory, $gd_post; |
This file contains 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( 'geodir_search_terms_where', 'geodir_search_terms_where_custom_callback'); | |
function geodir_search_terms_where_custom_callback( $terms_where ){ | |
if ( geodir_is_page( 'search' ) ) { | |
global $wpdb, $geodir_post_type, $plugin_prefix, $dist, $snear, $s, $s_A, $s_SA, $search_term, $geodirectory; | |
$searc_term_names = explode( ' ', $s ); | |
$table = geodir_db_cpt_table( $geodir_post_type ); | |
$s = trim( $s ); | |
$s = wp_specialchars_decode( $s, ENT_QUOTES ); | |
$s_A = wp_specialchars_decode( $s_A, ENT_QUOTES ); |
This file contains 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( 'kadence_post_layout', 'buddy_check_condition' ); | |
function buddy_check_condition() { | |
$boxed = 'boxed'; | |
$layout = 'normal'; | |
$feature = 'hide'; | |
$f_position = 'above'; | |
$comments = 'hide'; |
This file contains 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( 'geodir_pagination_args', 'geodir_pagination_args_custom_callback', 10, 1 ); | |
function geodir_pagination_args_custom_callback( $args ){ | |
global $wp_query; | |
$args = array( | |
'base' => esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ), | |
'format' => '', | |
'add_args' => false, | |
'current' => max( 1, get_query_var( 'paged' ) ), | |
'total' => $wp_query->max_num_pages, |
This file contains 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_shortcode( 'gd_access_denied', 'restrict_user_access_for_other_profile' ); | |
function restrict_user_access_for_other_profile( $atts ) { | |
if( !is_uwp_current_user_profile_page() && !current_user_can('administrator') ){ // if its users profile. | |
wp_redirect( home_url() ); exit; | |
} | |
} |
NewerOlder