๐
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
| <a href="<?php the_permalink(); ?>" class="company_logo-holder" style="display:block; width:100%; height:153px; background-image:url(<?php echo get_the_company_logo( null, 'portfolio-n' ); ?>); background-size:cover; background-position:50% 50%; background-repeat:no-repeat;"></a> |
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
| function handyman_load_vegas_slider() { | |
| global $post; | |
| if ( ! is_404() ) { | |
| if ( get_post_meta( $post->ID, 'handyman_slider_type', true ) == 'vegaslider' ) { | |
| wp_enqueue_style( 'vegas' ); | |
| wp_enqueue_script( 'vegas' ); | |
| } | |
| } | |
| } | |
| handyman_load_vegas_slider(); |
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
| /** | |
| * Remove the preview step for Job | |
| * @param array $steps | |
| * @return array | |
| */ | |
| if ( !function_exists( 'handyman_custom_submit_job_steps' ) ) { | |
| function handyman_custom_submit_job_steps( $steps ) { | |
| unset( $steps['preview'] ); | |
| return $steps; | |
| } |
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 | |
| /** | |
| * Event Blocks | |
| * | |
| * @author Dan Fisher | |
| * @package Alchemists | |
| * @version 1.0 | |
| */ | |
| if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
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 | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.com | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php | |
| */ | |
| $args = 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
| /** | |
| * Add custom SimpleLine icons | |
| * | |
| * @param $icons - taken from filter - vc_map param field settings['source'] | |
| * provided icons (default empty array). If array categorized it will | |
| * auto-enable category dropdown | |
| * | |
| * @since 1.0 | |
| * @return array - of icons for iconpicker, can be categorized, or not. | |
| */ |
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
| function mytheme_import_files() { | |
| return array( | |
| array( | |
| 'import_file_name' => 'default', | |
| 'categories' => array( 'Default' ), | |
| 'local_import_file' => trailingslashit( get_template_directory() . '/inc/demo/content.xml' ), | |
| 'local_import_widget_file' => trailingslashit( get_template_directory() . '/inc/demo/widgets.json' ), | |
| 'import_preview_image_url' => get_template_directory_uri() . '/screenshot.png', | |
| ), | |
| ); |
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 | |
| /** | |
| * Player Percentas Statistics for Single Player | |
| * | |
| * @author Dan Fisher | |
| * @package Alchemists | |
| * @version 2.0.0 | |
| */ | |
| // Skip if there are no rows in the table | |
| if ( empty( $data ) ) |
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
| [vc_row el_id="section-about" css=".vc_custom_1462913366165{padding-bottom: 100px !important;}"][vc_column][rocket_heading_section subtitle=""]About Company[/rocket_heading_section][vc_row_inner][vc_column_inner width="5/12"][vc_images_carousel images="2272,2274,2273" img_size="full" onclick="link_no" mode="vertical" hide_prev_next_buttons="yes" wrap="yes"][/vc_column_inner][vc_column_inner width="7/12"][rocket_heading_icon]Creative Start-Up idea[/rocket_heading_icon][rocket_testimonial name="Christian Womero" img_src="3275"]Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi. Morbi mollis tellus ac sapien. Phasellus volutpat, metus eget egestas mollis, lacus lacus blandit dui, id egestas quam mauris ut lacus. Fusce vel dui.[/rocket_testimonial][vc_separator style="dashed"][vc_column_text]Phasellus dolor. Maecenas vestibulum mollis diam. Pellentesque ut neque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. In dui m |
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
| $player_metrics = (array)get_post_meta( $player_id, 'sp_metrics', true ); |