Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
beautique
/
skins
/
default
/
theme-specific
/
theme-hovers
/
✏️
Editing: theme-hovers.php
<?php /** * Generate custom CSS for theme hovers * * @package BEAUTIQUE * @since BEAUTIQUE 1.0 */ // Theme init priorities: // 3 - add/remove Theme Options elements if ( ! function_exists( 'beautique_hovers_theme_setup3' ) ) { add_action( 'after_setup_theme', 'beautique_hovers_theme_setup3', 3 ); function beautique_hovers_theme_setup3() { // Add 'Buttons hover' option beautique_storage_set_array_after( 'options', 'border_radius', array( 'button_hover' => array( 'title' => esc_html__( "Button hover", 'beautique' ), 'desc' => wp_kses_data( __( 'Select a hover effect for theme buttons', 'beautique' ) ), 'std' => 'default', 'options' => array( 'default' => esc_html__( 'Fade', 'beautique' ), 'slide_left' => esc_html__( 'Slide from Left', 'beautique' ), 'slide_right' => esc_html__( 'Slide from Right', 'beautique' ), 'slide_top' => esc_html__( 'Slide from Top', 'beautique' ), 'slide_bottom' => esc_html__( 'Slide from Bottom', 'beautique' ), ), 'type' => 'hidden', // old value "select" ), 'image_hover' => array( 'title' => esc_html__( "Image hover", 'beautique' ), 'desc' => wp_kses_data( __( 'Select a hover effect for theme images', 'beautique' ) ), 'std' => 'link', 'override' => array( 'mode' => 'page', 'section' => esc_html__( 'Content', 'beautique' ), ), 'options' => beautique_get_list_hovers(), 'type' => 'select', ), ) ); } } // Theme init priorities: // 9 - register other filters (for installer, etc.) if ( ! function_exists( 'beautique_hovers_theme_setup9' ) ) { add_action( 'after_setup_theme', 'beautique_hovers_theme_setup9', 9 ); function beautique_hovers_theme_setup9() { add_action( 'wp_enqueue_scripts', 'beautique_hovers_frontend_scripts', 1100 ); // Priority 1100 - after theme scripts (1000) add_action( 'wp_enqueue_scripts', 'beautique_hovers_frontend_styles', 1100 ); // Priority 1100 - after theme/skin styles (1050) add_action( 'wp_enqueue_scripts', 'beautique_hovers_responsive_styles', 2100 ); // Priority 2100 - after theme/skin responsive (2000) add_filter( 'beautique_filter_localize_script', 'beautique_hovers_localize_script' ); add_filter( 'beautique_filter_merge_scripts', 'beautique_hovers_merge_scripts' ); add_filter( 'beautique_filter_merge_styles', 'beautique_hovers_merge_styles' ); add_filter( 'beautique_filter_merge_styles_responsive', 'beautique_hovers_merge_styles_responsive' ); } } // Enqueue hover styles and scripts if ( ! function_exists( 'beautique_hovers_frontend_scripts' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'beautique_hovers_frontend_scripts', 1100 ); function beautique_hovers_frontend_scripts() { if ( beautique_is_on( beautique_get_theme_option( 'debug_mode' ) ) ) { $beautique_url = beautique_get_file_url( 'theme-specific/theme-hovers/theme-hovers.js' ); if ( '' != $beautique_url ) { wp_enqueue_script( 'beautique-hovers', $beautique_url, array( 'jquery' ), null, true ); } } } } // Enqueue styles for frontend if ( ! function_exists( 'beautique_hovers_frontend_styles' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'beautique_hovers_frontend_styles', 1100 ); function beautique_hovers_frontend_styles() { if ( beautique_is_on( beautique_get_theme_option( 'debug_mode' ) ) ) { $beautique_url = beautique_get_file_url( 'theme-specific/theme-hovers/theme-hovers.css' ); if ( '' != $beautique_url ) { wp_enqueue_style( 'beautique-hovers', $beautique_url, array(), null ); } } } } // Enqueue responsive styles for frontend if ( ! function_exists( 'beautique_hovers_responsive_styles' ) ) { //Handler of the add_action( 'wp_enqueue_scripts', 'beautique_hovers_responsive_styles', 2100 ); function beautique_hovers_responsive_styles() { if ( beautique_is_on( beautique_get_theme_option( 'debug_mode' ) ) ) { $beautique_url = beautique_get_file_url( 'theme-specific/theme-hovers/theme-hovers-responsive.css' ); if ( '' != $beautique_url ) { wp_enqueue_style( 'beautique-hovers-responsive', $beautique_url, array(), null ); } } } } // Merge hover effects into single css if ( ! function_exists( 'beautique_hovers_merge_styles' ) ) { //Handler of the add_filter( 'beautique_filter_merge_styles', 'beautique_hovers_merge_styles' ); function beautique_hovers_merge_styles( $list ) { $list[] = 'theme-specific/theme-hovers/theme-hovers.css'; return $list; } } // Merge hover effects to the single css (responsive) if ( ! function_exists( 'beautique_hovers_merge_styles_responsive' ) ) { //Handler of the add_filter( 'beautique_filter_merge_styles_responsive', 'beautique_hovers_merge_styles_responsive' ); function beautique_hovers_merge_styles_responsive( $list ) { $list[] = 'theme-specific/theme-hovers/theme-hovers-responsive.css'; return $list; } } // Add hover effect's vars to the localize array if ( ! function_exists( 'beautique_hovers_localize_script' ) ) { //Handler of the add_filter( 'beautique_filter_localize_script','beautique_hovers_localize_script' ); function beautique_hovers_localize_script( $arr ) { $arr['button_hover'] = beautique_get_theme_option( 'button_hover' ); return $arr; } } // Merge hover effects to the single js if ( ! function_exists( 'beautique_hovers_merge_scripts' ) ) { //Handler of the add_filter( 'beautique_filter_merge_scripts', 'beautique_hovers_merge_scripts' ); function beautique_hovers_merge_scripts( $list ) { $list[] = 'theme-specific/theme-hovers/theme-hovers.js'; return $list; } } // Add hover icons on the featured image if ( ! function_exists( 'beautique_hovers_add_icons' ) ) { function beautique_hovers_add_icons( $hover, $args = array() ) { // Additional parameters $args = array_merge( array( 'cat' => '', 'image' => null, 'no_links' => false, 'link' => '', 'post_info' => '', 'meta_parts' => '' ), $args ); $post_link = empty( $args['no_links'] ) ? ( ! empty( $args['link'] ) ? $args['link'] : apply_filters( 'beautique_filter_get_post_link', get_permalink() ) ) : ''; $no_link = 'javascript:void(0)'; $target = ! empty( $post_link ) && false === strpos( $post_link, get_site_url() ) ? ' target="_blank" rel="nofollow"' : ''; if ( in_array( $hover, array( 'icons', 'zoom' ) ) ) { // Hover style 'Icons and 'Zoom' if ( $args['image'] ) { $large_image = $args['image']; } else { $attachment = wp_get_attachment_image_src( get_post_thumbnail_id(), 'masonry-big' ); if ( ! empty( $attachment[0] ) ) { $large_image = $attachment[0]; } } if ( ! empty( $args['post_info'] ) ) { beautique_show_layout( $args['post_info'] ); } ?> <div class="icons"> <a href="<?php echo esc_attr(! empty( $post_link ) ? esc_url( $post_link ) : $no_link); ?>" <?php beautique_show_layout($target); ?> aria-hidden="true" class="icon-link <?php if ( empty( $large_image ) ) { echo ' single_icon'; } ?> "></a> <?php if ( ! empty( $large_image ) ) { ?> <a href="<?php echo esc_url( $large_image ); ?>" aria-hidden="true" class="icon-search" title="<?php the_title_attribute( '' ); ?>"></a> <?php } ?> </div> <?php } elseif ( 'shop' == $hover ) { // Hover style 'Shop' global $product; if ( ! empty( $args['post_info'] ) ) { beautique_show_layout( $args['post_info'] ); } $tpl = beautique_storage_get('extended_products_tpl'); if ( !empty($tpl) && 'creative' == $tpl && ! is_object( $args['cat'] ) ) { ?> <div class="top-info"> <?php if ( beautique_exists_wishlist() ) { beautique_show_layout(do_shortcode("[ti_wishlists_addtowishlist loop=yes]")); } ?> </div> <div class="bottom-info"> <?php if ( beautique_exists_quick_view() ) { ?> <div class="woosq_wrap"> <?php beautique_show_layout(do_shortcode("[woosq id='{$product->get_id()}' type='link']")); ?> </div> <?php } ?> <div class="add_to_cart_wrap"> <?php beautique_show_layout( '<a rel="nofollow" href="' . esc_url($product->add_to_cart_url()) . '" aria-hidden="true" data-quantity="1" data-product_id="' . esc_attr($product->is_type('variation') ? $product->get_parent_id() : $product->get_id()) . '" data-product_sku="' . esc_attr($product->get_sku()) . '" class="shop_cart icon-shopping-cart button add_to_cart_button' . ' product_type_' . $product->get_type() . ' product_' . ($product->is_purchasable() && $product->is_in_stock() ? 'in' : 'out') . '_stock' . ($product->supports('ajax_add_to_cart') ? ' ajax_add_to_cart' : '') . '">' . ( $product->is_type('variable') ? esc_html__('Select Options', 'beautique') : ( $product->is_in_stock() ? esc_html__('Add to Cart', 'beautique') : esc_html__('Read More', 'beautique') ) ) . '</a>' ); ?> </div> </div> <?php } else if (!empty($tpl) && 'plain' == $tpl && ! is_object( $args['cat'] )) { ?> <div class="top-info"> <?php if ( beautique_exists_wishlist() ) { beautique_show_layout(do_shortcode("[ti_wishlists_addtowishlist loop=yes]")); } ?> </div> <?php } else if (!empty($tpl) && 'pure' == $tpl && ! is_object( $args['cat'] )) { ?> <div class="top-info"> <?php if ( beautique_exists_wishlist() ) { beautique_show_layout(do_shortcode("[ti_wishlists_addtowishlist loop=yes]")); } ?> </div> <?php if ( beautique_exists_quick_view() ) { ?> <div class="bottom-info"> <div class="woosq_wrap"> <?php beautique_show_layout(do_shortcode("[woosq id='{$product->get_id()}' type='link']")); ?> </div> </div> <?php } } else { ?> <div class="icons"> <?php if ( !empty($tpl) && 'hovered' == $tpl ) { ?> <div class="item-hovered-info"> <?php do_action( 'woocommerce_loop_item_hovered' ); ?> </div> <?php } if ( ! is_object( $args['cat'] ) ) { if ( function_exists('beautique_exists_wishlist') && beautique_exists_wishlist() ) { beautique_show_layout(do_shortcode("[ti_wishlists_addtowishlist loop=yes]")); } if ( !empty($tpl) && 'simple' == $tpl ) { } else { beautique_show_layout( '<a rel="nofollow" href="' . esc_url($product->add_to_cart_url()) . '" aria-hidden="true" data-quantity="1" data-product_id="' . esc_attr($product->is_type('variation') ? $product->get_parent_id() : $product->get_id()) . '" data-product_sku="' . esc_attr($product->get_sku()) . '" class="shop_cart icon-shopping-cart button add_to_cart_button' . ' product_type_' . $product->get_type() . ' product_' . ($product->is_purchasable() && $product->is_in_stock() ? 'in' : 'out') . '_stock' . ($product->supports('ajax_add_to_cart') ? ' ajax_add_to_cart' : '') . '"><span class="icon-anim"></span>' . '</a>' ); } } ?> <a href="<?php echo esc_url( is_object( $args['cat'] ) ? get_term_link( $args['cat']->slug, 'product_cat' ) : get_permalink() ); ?>" aria-hidden="true" class="shop_link"> <span class="icon-anim"></span> </a> </div> <?php } } elseif ( 'icon' == $hover ) { // Hover style 'Icon' if ( ! empty( $args['post_info'] ) ) { beautique_show_layout( $args['post_info'] ); } ?> <div class="icons"><a href="<?php echo ! empty( $post_link ) ? esc_url( $post_link ) : $no_link; ?>" <?php beautique_show_layout($target); ?> aria-hidden="true" class="icon-search-alt"></a></div> <?php } elseif ( 'dots' == $hover ) { // Hover style 'Dots' if ( ! empty( $args['post_info'] ) ) { beautique_show_layout( $args['post_info'] ); } ?> <a href="<?php echo ! empty( $post_link ) ? esc_url( $post_link ) : $no_link; ?>" <?php beautique_show_layout($target); ?> aria-hidden="true" class="icons"><span></span><span></span><span></span></a> <?php } elseif ( 'link' == $hover ) { // Hover style 'Link' if ( ! empty( $args['post_info'] ) ) { beautique_show_layout( $args['post_info'] ); } ?> <a href="<?php echo ! empty( $post_link ) ? esc_url( $post_link ) : $no_link; ?>" <?php beautique_show_layout($target); ?> aria-hidden="true" class="link"></a> <?php } elseif ( 'info' == $hover ) { // Hover style 'Info' if ( ! empty( $args['post_info'] ) ) { beautique_show_layout( $args['post_info'] ); } else { $beautique_components = empty( $args['meta_parts'] ) ? beautique_array_get_keys_by_value( beautique_get_theme_option( 'meta_parts' ) ) : ( is_array( $args['meta_parts'] ) ? $args['meta_parts'] : explode( ',', $args['meta_parts'] ) ); ?> <div class="post_info"> <div class="post_descr"> <?php if ( ! empty( $beautique_components ) && count( $beautique_components ) > 0 ) { if ( apply_filters( 'beautique_filter_show_blog_meta', true, $beautique_components ) ) { beautique_show_post_meta( apply_filters( 'beautique_filter_post_meta_args', array( 'components' => join( ',', $beautique_components ), 'seo' => false, 'echo' => true, ), 'hover_' . $hover, 1 ) ); } } ?> </div> <?php if ( apply_filters( 'beautique_filter_show_blog_title', true ) ) { ?> <h4 class="post_title"> <?php if ( ! empty( $post_link ) ) { ?> <a href="<?php echo esc_url( $post_link ); ?>" <?php beautique_show_layout($target); ?>> <?php } the_title(); if ( ! empty( $post_link ) ) { ?> </a> <span class="hover-arrow"></span> <?php } ?> </h4> <?php } if ( ! empty( $post_link ) ) { ?> <a class="post_link" href="<?php echo esc_url( $post_link ); ?>" <?php beautique_show_layout($target); ?>></a> <?php } ?> </div> <?php } } elseif ( in_array( $hover, array( 'fade', 'pull', 'slide', 'border', 'excerpt' ) ) ) { // Hover style 'Fade', 'Slide', 'Pull', 'Border', 'Excerpt' if ( ! empty( $args['post_info'] ) ) { beautique_show_layout( $args['post_info'] ); } else { ?> <div class="post_info"> <div class="post_info_back"> <?php if ( apply_filters( 'beautique_filter_show_blog_title', true ) ) { ?> <h4 class="post_title"> <?php if ( ! empty( $post_link ) ) { ?> <a href="<?php echo esc_url( $post_link ); ?>" <?php beautique_show_layout($target); ?>> <?php } the_title(); if ( ! empty( $post_link ) ) { ?> </a> <?php } ?> </h4> <?php } ?> <div class="post_descr"> <?php if ( 'excerpt' != $hover ) { $beautique_components = empty( $args['meta_parts'] ) ? beautique_array_get_keys_by_value( beautique_get_theme_option( 'meta_parts' ) ) : ( is_array( $args['meta_parts'] ) ? $args['meta_parts'] : explode( ',', $args['meta_parts'] ) ); if ( ! empty( $beautique_components ) ) { if ( apply_filters( 'beautique_filter_show_blog_meta', true, $beautique_components ) ) { beautique_show_post_meta( apply_filters( 'beautique_filter_post_meta_args', array( 'components' => join( ',', $beautique_components ), 'seo' => false, 'echo' => true, ), 'hover_' . $hover, 1 ) ); } } } // Remove the condition below if you want display excerpt if ( 'excerpt' == $hover ) { if ( apply_filters( 'beautique_filter_show_blog_excerpt', true ) ) { ?> <div class="post_excerpt"><?php beautique_show_layout( get_the_excerpt() ); ?></div> <?php } } ?> </div> <?php if ( ! empty( $post_link ) ) { ?> <a class="post_link" href="<?php echo esc_url( $post_link ); ?>" <?php beautique_show_layout($target); ?>></a> <?php } ?> </div> <?php if ( ! empty( $post_link ) ) { ?> <a class="post_link" href="<?php echo esc_url( $post_link ); ?>" <?php beautique_show_layout($target); ?>></a> <?php } ?> </div> <?php } } else { do_action( 'beautique_action_custom_hover_icons', $args, $hover ); if ( ! empty( $args['post_info'] ) ) { beautique_show_layout( $args['post_info'] ); } if ( ! empty( $post_link ) ) { ?> <a href="<?php echo esc_url( $post_link ); ?>" <?php beautique_show_layout($target); ?> aria-hidden="true" class="icons"></a> <?php } } } }
💾 Save
❌ Cancel