![]() Server : Apache System : Linux pod-100823:apache2_74:v0.6.0 5.4.0-1138-gcp #147~18.04.1-Ubuntu SMP Mon Oct 7 21:46:26 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33.10 Disable Function : apache_child_terminate,apache_get_modules,apache_get_version,apache_getenv,apache_note,apache_setenv,disk_free_space,disk_total_space,diskfreespace,dl,exec,fastcgi_finish_request,link,opcache_compile_file,opcache_get_configuration,opcache_invalidate,opcache_is_script_cached,opcache_reset,passthru,pclose,pcntl_exec,popen,posix_getpid,posix_getppid,posix_getpwuid,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,realpath_cache_get,shell_exec,show_source,symlink,system Directory : /nas/content/live/attorneyexperi/wp-content/themes/directory2/ |
<?php /* * AIT WordPress Theme * * Copyright (c) 2013, Affinity Information Technology, s.r.o. (http://ait-themes.com) */ // === Usefull debugging constants =================================== // if(!defined('AIT_DISABLE_CACHE')) define('AIT_DISABLE_CACHE', true); // if(!defined('AIT_ENABLE_NDEBUGGER')) define('AIT_ENABLE_NDEBUGGER', true); define('AIT_THEME_TYPE', 'directory'); // === Loads AIT WordPress Framework ================================ require_once get_template_directory() . '/ait-theme/@framework/load.php'; // === Mandatory WordPress Standard functionality =================== if(!isset($content_width)) $content_width = 1200; // === Custom filters, actions for framework overrides ============== require_once aitPath('includes', '/ait-custom-search.php'); require_once aitPath('includes', '/ait-custom-functions.php'); require_once aitPath('includes', '/ait-toolkit-override.php'); if (defined('AIT_EVENTS_PRO_ENABLED')) { require_once aitPath('includes', '/ait-events-pro-functions.php'); } /* THEME UPGRADE FUNCTIONS */ require_once aitPath('includes', '/ait-theme-upgrades.php'); /* THEME UPGRADE FUNCTIONS */ // === Run the theme =============================================== $themeConfiguration = include aitPath('config', '/@theme-configuration.php'); AitTheme::run($themeConfiguration); // === Custom settings ============================================== add_filter('loop_shop_columns', create_function('', 'return 3;')); // Display 6 products per page add_filter('loop_shop_per_page', create_function( '$cols', 'return 6;' ), 20); if ( aitIsPluginActive( "woocommerce" ) ) { add_action('ait-theme-activation', 'woocommerce_image_sizes', 1); function woocommerce_image_sizes(){ update_option( 'shop_catalog_image_size', array('width' => '300', 'height' => '300', 'crop' => 1) ); update_option( 'shop_single_image_size', array('width' => '600', 'height' => '600', 'crop' => 1) ); update_option( 'shop_thumbnail_image_size', array('width' => '180', 'height' => '180', 'crop' => 1) ); } } // Change number of related products on product page // Set your own value for 'posts_per_page' add_filter( 'woocommerce_output_related_products_args', 'ait_related_products_args' ); function ait_related_products_args( $args ) { $args['posts_per_page'] = 3; // 3 related products $args['columns'] = 3; // arranged in 2 columns return $args; } // Disable woocommerce default styles if ( aitIsPluginActive( "woocommerce" ) ) { if ( version_compare( WOOCOMMERCE_VERSION, "2.1" ) >= 0 ) { add_filter( 'woocommerce_enqueue_styles', '__return_false' ); } else { define( 'WOOCOMMERCE_USE_CSS', false ); } } function updatePageBuilderOptions(){ global $wpdb; $query = $wpdb->get_results("SELECT option_id, option_value FROM `".$wpdb->prefix."options` WHERE `option_name` LIKE '%_ait_cityguide_elements_opts_%'"); if(!empty($query)){ foreach($query as $key => $value){ $id = $value->option_id; $val = unserialize($value->option_value); foreach($val as $k => $v){ if(!empty($v['header-map'])){ if(!is_array($v['header-map']['address'])){ $old = $v['header-map']['address']; $val[$k]['header-map']['address'] = array( "address" => $old, "latitude" => 1, "longitude" => 1, "streetview" => false, "swheading" => 90, "swpitch" => 5, "swzoom" => 1 ); } } } $newVal = serialize($val); $sql = "UPDATE ".$wpdb->prefix."options SET option_value = '".$newVal."' WHERE option_id = ".$id; $wpdb->query($sql); } } } add_action( 'ait-after-import', 'updatePageBuilderOptions', 10, 0 ); add_action( 'ait-theme-upgrade', 'updatePageBuilderOptions', 10, 0 ); function updatePackageSlugs($whatToImport, $sendResults){ if($whatToImport == "demo-content"){ $theme = sanitize_key( get_stylesheet() ); $themeOptionKey = '_ait_'.$theme.'_theme_opts'; // better way to do this wp_cache_delete('alloptions', 'options'); // will force to load new options from DB in next get_option call $themeOptions = get_option($themeOptionKey, array()); if(isset($themeOptions['packages']['packageTypes'])){ foreach($themeOptions['packages']['packageTypes'] as $index => $package){ $themeOptions['packages']['packageTypes'][$index]['slug'] = str_replace(".", "", uniqid("", true)); } update_option($themeOptionKey, $themeOptions); } } } add_action( 'ait-after-import', 'updatePackageSlugs', 10, 2 ); // === Portal settings ============================================= define('AIT_CUSTOM_FIELDS', false); require_once aitPath('theme', '/portal/functions/portal.php'); require_once aitPath('theme', '/portal/functions/packages.php'); require_once aitPath('theme', '/portal/functions/accounts.php'); require_once aitPath('theme', '/portal/functions/payments.php'); // Lost Password Login Form add_action('login_form_middle', 'add_lost_password_link'); function add_lost_password_link() { $anchor = '<a href="'.wp_lostpassword_url(get_permalink()).'" class="lost-password" title="'.__('Lost Password?', 'ait').'">'.__('Lost Password?', 'ait').'</a>'; return $anchor; } function getDefaultSocialIconColor($id){ $defaultIconColors = array( 'fa-twitter-square' => '#00aced', 'fa-facebook-square' => '#3b5998', 'fa-linkedin-square' => '#007bb6', 'fa-github-square' => '#4183c4', 'fa-twitter' => '#00aced', 'fa-facebook' => '#3b5998', 'fa-github' => '#4183c4', 'fa-pinterest' => '#cb2027', 'fa-linkedin' => '#007bb6', 'fa-pinterest-square' => '#cb2027', 'fa-google-plus-square' => '#dd4b39', 'fa-google-plus' => '#dd4b39', 'fa-github-alt' => '#4183c4', 'fa-youtube-square' => '#bb0000', 'fa-youtube' => '#bb0000', 'fa-youtube-play' => '#bb0000', 'fa-dropbox' => '#007ee5', 'fa-stack-overflow' => '#fe7a15', 'fa-instagram' => '#517fa4', 'fa-flickr' => '#ff0084', 'fa-bitbucket' => '#205081', 'fa-bitbucket-square' => '#205081', 'fa-tumblr' => '#32506d', 'fa-tumblr-square' => '#32506d', 'fa-dribbble' => '#ea4c89', 'fa-skype' => '#00aff0', 'fa-foursquare' => '#0072b1', 'fa-vk' => '#45668e', 'fa-vimeo-square' => '#aad450', 'fa-wordpress' => '#21759b', 'fa-reddit' => '#ff4500', 'fa-reddit-square' => '#ff4500', 'fa-stumbleupon-circle' => '#eb4823', 'fa-stumbleupon' => '#eb4823', 'fa-delicious' => '#3399ff', 'fa-digg' => '#000000', 'fa-behance' => '#1769ff', 'fa-behance-square' => '#1769ff', 'fa-deviantart' => '#05cc47', 'fa-soundcloud' => '#ff3a00', 'fa-vine' => '#00bf8f', 'fa-slack' => '#3db890', 'fa-lastfm' => '#d51007', 'fa-lastfm-square' => '#d51007', ); return isset($defaultIconColors[$id]) ? $defaultIconColors[$id] : '#000000'; } // fixed: woocommerce prevented non-admin user to access easyadmin add_filter('woocommerce_prevent_admin_access', '__return_false'); add_filter('wplatte-breadcrumbs-terms-list', 'modifyBreadcrumbCategories', 10, 4); function modifyBreadcrumbCategories($terms, $post_type, $post_id, $args){ $themeOptions = (object)aitOptions()->getOptionsByType('theme'); $terms_array = get_the_terms($post_id, $args["singular_{$post_type}_taxonomy"]); $terms_string = array(); $result = $terms; $terms_array = aitOrderTermsByHierarchy($terms_array); $terms_array = aitFilterTerms($terms_array, $themeOptions->items['maxDisplayedCategories']); foreach ($terms_array as $term) { $link = get_term_link( $term ); $terms_string[] = '<a href="' . esc_url( $link ) . '" rel="tag" class="breadcrumb-tag">' . $term->name . '</a>'; } $result = join( ', ', $terms_string ); return $result; } add_filter( 'comment_form_defaults', 'aitModifyCommentFormDefaults', 10, 1 ); function aitModifyCommentFormDefaults($defaults){ $req = get_option( 'require_name_email' ); $required_text = sprintf( ' ' . __('Required fields are marked %s'), '<span class="required"><i class="fa fa-star"></i></span>' ); $defaults['comment_notes_before'] = '<p class="comment-notes"><span id="email-notes">' . __( 'Your email address will not be published.' ) . '</span>'. ( $req ? $required_text : '' ) . '</p>'; if(!empty($defaults['comment_notes_after'])){ $defaults['comment_notes_after'] = '<div class="comment-form-bottom-wrap"><p class="form-allowed-tags" id="form-allowed-tags">' . sprintf( __( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: %s' ), ' <code>' . allowed_tags() . '</code>' ) . '</p>'; $defaults['submit_field'] = '<p class="form-submit">%1$s %2$s</p></div>'; } return $defaults; } add_filter( 'comment_form_default_fields', 'aitModifyCommentFormDefaultFields', 10, 1 ); function aitModifyCommentFormDefaultFields($fields){ $commenter = wp_get_current_commenter(); $req = get_option( 'require_name_email' ); $aria_req = ( $req ? " aria-required='true'" : '' ); $html_req = ( $req ? " required='required'" : '' ); $format = current_theme_supports( 'html5', 'comment-form' ) ? 'html5' : 'xhtml'; $html5 = 'html5' === $format; $fields['author'] = '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required"><i class="fa fa-star"></i></span>' : '' ) . '</label> ' . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . $html_req . ' /></p>'; $fields['email'] = '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required"><i class="fa fa-star"></i></span>' : '' ) . '</label> ' . '<input id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" aria-describedby="email-notes"' . $aria_req . $html_req . ' /></p>'; return $fields; } add_filter( 'woocommerce_product_review_comment_form_args', 'aitModifyWooCommentFormDefaults', 20 ); function aitModifyWooCommentFormDefaults($content){ foreach ($content['fields'] as $key => $value) { $content['fields'][$key] = str_replace('*', '<i class="fa fa-star"></i>', $value); } return $content; } add_filter( 'wp_title', 'aitRemoveTagsFromTitle', 11, 3 ); function aitRemoveTagsFromTitle($title, $sep, $seplocation){ $htmlTitle = str_replace("<", "<", $title); $htmlTitle = str_replace(">", ">", $htmlTitle); $title = wp_strip_all_tags($htmlTitle); return $title; } function my_custom_sidebar() { register_sidebar( array ( 'name' => __( 'Custom', 'your-theme-domain' ), 'id' => 'custom-side-bar', 'description' => __( 'Custom Sidebar', 'your-theme-domain' ), 'before_widget' => '<div class="widget-content">', 'after_widget' => "</div>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'my_custom_sidebar' ); add_filter('add_to_cart_redirect', 'cw_redirect_add_to_cart'); function cw_redirect_add_to_cart() { global $woocommerce; $cw_redirect_url_checkout = $woocommerce->cart->get_checkout_url(); return $cw_redirect_url_checkout; } add_filter( 'woocommerce_product_single_add_to_cart_text', 'cw_btntext_cart' ); add_filter( 'woocommerce_product_add_to_cart_text', 'cw_btntext_cart' ); function cw_btntext_cart() { return __( 'Buy Now', 'woocommerce' ); } add_filter( 'woocommerce_add_to_cart_validation', 'bbloomer_only_one_in_cart', 99, 2 ); function bbloomer_only_one_in_cart( $passed, $added_product_id ) { wc_empty_cart(); return $passed; }