"; if(!empty($appointment_bg_v)){ $appointment_bg_v = '.appointment .custom-appointment-form { background: url("'.esc_url($appointment_bg_v).'") no-repeat scroll right bottom rgba(0, 0, 0, 0); }'; echo $appointment_bg_v; echo "\n"; } if(($header_bg_v)){ $header_bg_v = '.site-header { background: url("'.esc_url($header_bg_v).'") no-repeat scroll left top rgba(0, 0, 0, 0); position: relative; z-index: 1;background-size: cover; }'; echo $header_bg_v; echo "\n"; echo '.site-header .ed-container-home:before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.7); z-index: -1; }'; } echo "\n"; } add_action('wp_head','eightmedi_lite_header_scripts'); function eightmedi_lite_web_layout($classes){ $web_layout = get_theme_mod('eightmedi_lite_webpage_layout','fullwidth'); if($web_layout == 'boxed'){ $classes[]= 'boxed-layout'; } elseif($web_layout == 'fullwidth'){ $classes[]='fullwidth'; } return $classes; } add_filter( 'body_class', 'eightmedi_lite_web_layout' ); add_action('eightmedi_lite_homepage_slider_config','eightmedi_lite_homepage_slider_config'); //homepage slider configuration settings function eightmedi_lite_homepage_slider_config(){ $display_slider = (get_theme_mod('eightmedi_lite_display_slider'))?get_theme_mod('eightmedi_lite_display_slider'):"1"; $display_pager = absint( get_theme_mod('eightmedi_lite_display_pager','0') ); ($display_pager=='1')?$display_pager='true':$display_pager='false'; $display_controls = absint ( get_theme_mod('eightmedi_lite_display_controls','0')); ($display_controls=='1')?$display_controls='true':$display_controls='false'; $auto_transition = absint ( get_theme_mod('eightmedi_lite_auto_transition','0')); ($auto_transition=='1')?$auto_transition='true':$auto_transition='false'; $transition_type = absint ( get_theme_mod('eightmedi_lite_transition_type','0')); ($transition_type=='1')?$transition_type='horizontal':$transition_type='fade'; $transition_speed = absint( get_theme_mod( 'eightmedi_lite_transition_speed', 5000 ) ); $transition_pause = absint( get_theme_mod( 'eightmedi_lite_transition_pause', 1000 ) ); // Send data to client wp_localize_script('eightmedi-lite-custom-scripts', 'SliderData', array( 'mode' => $transition_type, 'controls' => $display_controls, 'speed' => $transition_speed, 'pause' => $transition_pause, 'pager' => $display_pager, 'auto' => $auto_transition )); /* if( $display_slider != "0") : ?>
$slider_category, 'posts_per_page' => -1 ) ); ?>
have_posts()) { while($loop->have_posts()) { $loop->the_post(); $image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full', false ); ?>
<?php the_title(); ?>
/', '', $eightmedi_lite_text)) <= $eightmedi_lite_length) { return $eightmedi_lite_text; } // splits all html-tags to scanable lines preg_match_all('/(<.+?>)?([^<>]*)/s', $eightmedi_lite_text, $eightmedi_lite_lines, PREG_SET_ORDER); $eightmedi_lite_total_length = strlen($eightmedi_lite_ending); $eightmedi_lite_open_tags = array(); $eightmedi_lite_truncate = ''; foreach ($eightmedi_lite_lines as $eightmedi_lite_line_matchings) { // if there is any html-tag in this line, handle it and add it (uncounted) to the output if (!empty($eightmedi_lite_line_matchings[1])) { // if it’s an “empty element” with or without xhtml-conform closing slash (f.e.) if (preg_match('/^<(\s*.+?\/\s*|\s*(img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param)(\s.+?)?)>$/is', $eightmedi_lite_line_matchings[1])) { // do nothing // if tag is a closing tag (f.e.) } else if (preg_match('/^<\s*\/([^\s]+?)\s*>$/s', $eightmedi_lite_line_matchings[1], $eightmedi_lite_tag_matchings)) { // delete tag from $open_tags list $eightmedi_lite_pos = array_search($eightmedi_lite_tag_matchings[1], $eightmedi_lite_open_tags); if ($eightmedi_lite_pos !== false) { unset($eightmedi_lite_open_tags[$eightmedi_lite_pos]); } // if tag is an opening tag (f.e. ) } else if (preg_match('/^<\s*([^\s>!]+).*?>$/s', $eightmedi_lite_line_matchings[1], $eightmedi_lite_tag_matchings)) { // add tag to the beginning of $open_tags list array_unshift($eightmedi_lite_open_tags, strtolower($eightmedi_lite_tag_matchings[1])); } // add html-tag to $truncate’d text $eightmedi_lite_truncate .= $eightmedi_lite_line_matchings[1]; } // calculate the length of the plain text part of the line; handle entities as one character $eightmedi_lite_content_length = strlen(preg_replace('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i', ' ', $eightmedi_lite_line_matchings[2])); if ($eightmedi_lite_total_length+$eightmedi_lite_content_length > $eightmedi_lite_length) { // the number of characters which are left $eightmedi_lite_left = $eightmedi_lite_length - $eightmedi_lite_total_length; $eightmedi_lite_entities_length = 0; // search for html entities if (preg_match_all('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i', $eightmedi_lite_line_matchings[2], $eightmedi_lite_entities, PREG_OFFSET_CAPTURE)) { // calculate the real length of all entities in the legal range foreach ($eightmedi_lite_entities[0] as $eightmedi_lite_entity) { if ($eightmedi_lite_entity[1]+1-$eightmedi_lite_entities_length <= $eightmedi_lite_left) { $eightmedi_lite_left--; $eightmedi_lite_entities_length += strlen($eightmedi_lite_entity[0]); } else { // no more characters left break; } } } $eightmedi_lite_truncate .= substr($eightmedi_lite_line_matchings[2], 0, $eightmedi_lite_left+$eightmedi_lite_entities_length); // maximum lenght is reached, so get off the loop break; } else { $eightmedi_lite_truncate .= $eightmedi_lite_line_matchings[2]; $eightmedi_lite_total_length += $eightmedi_lite_content_length; } // if the maximum length is reached, get off the loop if($eightmedi_lite_total_length >= $eightmedi_lite_length) { break; } } } else { if (strlen($eightmedi_lite_text) <= $eightmedi_lite_length) { return $eightmedi_lite_text; } else { $eightmedi_lite_truncate = substr($eightmedi_lite_text, 0, $eightmedi_lite_length - strlen($eightmedi_lite_ending)); } } // if the words shouldn't be cut in the middle... if (!$eightmedi_lite_exact) { // ...search the last occurance of a space... $eightmedi_lite_spacepos = strrpos($eightmedi_lite_truncate, ' '); if (isset($eightmedi_lite_spacepos)) { // ...and cut the text in this position $eightmedi_lite_truncate = substr($eightmedi_lite_truncate, 0, $eightmedi_lite_spacepos); } } // add the defined ending to the text $eightmedi_lite_truncate .= $eightmedi_lite_ending; if($eightmedi_lite_considerHtml) { // close all unclosed html-tags foreach ($eightmedi_lite_open_tags as $eightmedi_lite_tag) { $eightmedi_lite_truncate .= ''; } } return $eightmedi_lite_truncate; } remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); function eightmedi_lite_wrapper_start() { echo '
'; do_action( 'woocommerce_sidebar' ); echo '
'; } add_action('woocommerce_after_main_content','eightmedi_lite_wrapper_end',9); add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 8;' ), 20 ); if ( is_admin() ) : // Load only if we are viewing an admin page function eightmedi_lite_admin_scripts() { wp_enqueue_media(); wp_enqueue_script( 'eightmedi-lite-custom', get_template_directory_uri().'/inc/admin-panel/admin.js', array( 'jquery' ),'',true ); wp_enqueue_style( 'eightmedi-lite-admin-style',get_template_directory_uri().'/inc/admin-panel/admin.css', '1.0', 'screen' ); } add_action('admin_enqueue_scripts', 'eightmedi_lite_admin_scripts'); endif;