8889841c 'elementor_library', 'posts_per_page' => -1, ]; $templates = get_posts( $args ); $options = array(); if ( !empty( $templates ) && !is_wp_error( $templates ) ) { $options['0'] = esc_html__('Set a Template','machic-core'); foreach ( $templates as $post ) { $options[ $post->ID ] = $post->post_title; } } else { $options = array( '' => esc_html__( 'No template exist.', 'machic-core' ) ); } return $options; } } } /*---------------------------- Single Share ----------------------------*/ add_action( 'woocommerce_single_product_summary', 'machic_social_share', 70); add_action( 'klb_social_share', 'machic_social_share'); function machic_social_share(){ $socialshare = get_theme_mod( 'machic_shop_social_share', '0' ); if($socialshare == '1'){ wp_enqueue_script('jquery-socialshare'); wp_enqueue_script('klb-social-share'); $single_share_multicheck = get_theme_mod('machic_shop_single_share',array( 'facebook', 'twitter', 'pinterest', 'linkedin', 'whatsapp')); echo '
'; echo ''; echo '
'; } } /*---------------------------- Single Add To wishlist ----------------------------*/ add_action( 'klb_single_wishlist_compare', 'machic_single_add_to_wishlist', 35); function machic_single_add_to_wishlist(){ $wishlist = get_theme_mod( 'machic_wishlist_button', '0' ); $compare = get_theme_mod( 'machic_compare_button', '0' ); if($wishlist || $compare){ echo '
'; if($wishlist == '1'){ echo do_shortcode('[ti_wishlists_addtowishlist]'); } if($compare == '1'){ echo do_shortcode('[woosc type="link"]'); } echo '
'; } } /*---------------------------- Update Cart When Quantity changed on CART PAGE. ----------------------------*/ add_action( 'woocommerce_after_cart', 'machic_update_cart' ); function machic_update_cart() { echo ''; } /*---------------------------- Disable Crop Image WCMP ----------------------------*/ add_filter('wcmp_frontend_dash_upload_script_params', 'machic_crop_function'); function machic_crop_function( $image_script_params ) { $image_script_params['canSkipCrop'] = true; return $image_script_params; }