⚡ This is your brand? Claim your page FREE and bring it to life on AI search.

tag in the document head, and expect WordPress to
	 * provide it for us.
	 */
	add_theme_support( 'title-tag' );

	/*
	 * 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' );
	add_theme_support( 'custom-header' );
	add_theme_support( 'custom-background' );

	// This theme uses wp_nav_menu() in one location.
	register_nav_menus( array(
		'primary' => esc_html__( 'Primary Menu', 'buildpro' ),
		'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ),
	) );

	/*
	 * Switch default core markup for search form, comment form, and comments
	 * to output valid HTML5.
	 */
	add_theme_support( 'html5', array(
		'search-form',
		'comment-list',
		'comment-form',
		'gallery',
		'caption',
	) );

	/*
	 * Enable support for Post Formats.
	 * See https://developer.wordpress.org/themes/functionality/post-formats/
	 */
	add_theme_support( 'post-formats', array(
		'audio',
		'image',
		'video',
		'gallery',
	) );
	
}
endif; // buildpro_setup
add_action( 'after_setup_theme', 'buildpro_setup' );

/**
 * Set the content width in pixels, based on the theme's design and stylesheet.
 *
 * Priority 0 to make it available to lower priority callbacks.
 *
 * @global int $content_width
 */
function buildpro_content_width() {
	$GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 );
}
add_action( 'after_setup_theme', 'buildpro_content_width', 0 );

/**
 * Register widget area.
 *
 * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
 */
function buildpro_widgets_init() {
	register_sidebar( array(
		'name'          => esc_html__( 'Sidebar', 'buildpro' ),
		'id'            => 'sidebar-1',
		'description'   => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ),  
		'before_widget' => '<div id="%1$s" class="widget %2$s">',
		'after_widget'  => '</div>',
		'before_title'  => '<h4 class="widget-title">',
		'after_title'   => '</h4><div class="small-border"></div>',
	) );
	register_sidebar( array(
		'name'          => esc_html__( 'Shop Sidebar', 'buildpro' ),
		'id'            => 'shop-sidebar',
		'description'   => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ),  
		'before_widget' => '<div id="%1$s" class="widget %2$s">',
		'after_widget'  => '</div>',
		'before_title'  => '<h4 class="widget-title">',
		'after_title'   => '</h4>',
	) );
	register_sidebar( array(
		'name'          => esc_html__( 'Footer One Widget Area', 'buildpro' ),
		'id'            => 'footer-area-1',
		'description'   => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ),
		'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">',
		'after_widget'  => '</div>',
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
	) );
	
	register_sidebar( array(
		'name'          => esc_html__( 'Footer Two Widget Area', 'buildpro' ),
		'id'            => 'footer-area-2',
		'description'   => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ),
		'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">',
		'after_widget'  => '</div>',
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
	) );
	
	register_sidebar( array(
		'name'          => esc_html__( 'Footer Three Widget Area', 'buildpro' ),
		'id'            => 'footer-area-3',
		'description'   => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ),
		'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">',
		'after_widget'  => '</div>',
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
	) );
	
	register_sidebar( array(
		'name'          => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ),
		'id'            => 'footer-area-4',
		'description'   => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ),
		'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">',
		'after_widget'  => '</div>',
		'before_title'  => '<h3>',
		'after_title'   => '</h3>',
	) ); 

	
}
add_action( 'widgets_init', 'buildpro_widgets_init' );

/**
 * Enqueue Google fonts.
 */
function buildpro_fonts_url() {
    $fonts_url = '';

    /* Translators: If there are characters in your language that are not
    * supported by Lora, translate this to 'off'. Do not translate
    * into your own language.
    */
    $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' );
 
 
    if ( 'off' !== $mont ) {
        $font_families = array();

        if ( 'off' !== $mont ) {
            $font_families[] = 'Montserrat:400,200,300,500,600,700,800';
        }        
 
        $query_args = array(
            'family' => urlencode( implode( '|', $font_families ) ),
            'subset' => urlencode( 'latin,latin-ext' ),
        );
 
        $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
    }
 
    return esc_url_raw( $fonts_url );
}


/**
 * Enqueue scripts and styles.
 */
function buildpro_scripts() {

	$protocol = is_ssl() ? 'https' : 'http';

	// Add custom fonts, used in the main stylesheet.
    wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null );

    /** All frontend css files **/ 
    wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css');
    wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css');
    wp_enqueue_style( 'vc_font_awesome_5' );
    wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css');
    wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css');
    wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css');
    wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css');
	wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css');

	if( class_exists('Woocommerce') ) {
	wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css');
	}

	wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() );
	

	/** All frontend js files **/
	wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); 
	wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true);    
	wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true);
    wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true);
    wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false);
	wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true);
	wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true);
	wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true);
	wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true);
	wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true);
    wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true);

    if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { 
    wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true);
    }
}
add_action( 'wp_enqueue_scripts', 'buildpro_scripts' );


/**
 * Implement the Custom Meta Boxs.
 */
require get_template_directory() . '/framework/meta-boxes.php';

/**
 * Custom template tags for this theme.
 */
require get_template_directory() . '/framework/template-tags.php';
require get_template_directory() . '/framework/BFI_Thumb.php';
/**
 * Custom shortcode plugin visual composer.
 */
require_once get_template_directory() . '/shortcodes.php';
require_once get_template_directory() . '/vc_shortcode.php';
require_once get_template_directory() . '/framework/customizer.php';
/**
 * Customizer Menu.
 */
require get_template_directory() . '/framework/wp_bootstrap_navwalker.php';
/**
 * Enqueue Style
 */
require get_template_directory() . '/framework/color.php';
require get_template_directory() . '/framework/styling.php';
/**
 * Customizer Shop.
 */
require get_template_directory() . '/framework/woocommerce-customize.php';


//Code Visual Composer.
// Add new Param in Row
if(function_exists('vc_add_param')){
	vc_add_param('vc_row', array(
								"type" => "dropdown",
								"heading" => esc_html__('Setup Full Width', 'buildpro'),
								"param_name" => "fullwidth",
								"value" => array(   
								                esc_html__('No', 'buildpro') => 'no',  
								                esc_html__('Yes', 'buildpro') => 'yes',                                                                                
								              ),
								"description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"),      
					        )
    );
    vc_add_param('vc_row',array(
                              	"type" => "checkbox",
                              	"heading" => esc_html__('Setup Full Height', 'buildpro'),
                              	"param_name" => "fullheight",
                            ) 
    );
    vc_add_param('vc_row',array(
                              	"type" => "checkbox",
                              	"heading" => esc_html__('Background Parallax', 'buildpro'),
                              	"param_name" => "parallax_bg",     
                            ) 
    );
    vc_add_param('vc_row',array(
                              	"type" => "checkbox",
                              	"heading" => esc_html__('Light Text', 'buildpro'),
                              	"param_name" => "lighttext",
                            ) 
    );
}

if(function_exists('vc_remove_param')){
	vc_remove_param( "vc_row", "parallax" );
	vc_remove_param( "vc_row", "parallax_image" );
	vc_remove_param( "vc_row", "parallax_speed_bg" );
	vc_remove_param( "vc_row", "parallax_speed_video" );
	vc_remove_param( "vc_row", "full_width" );
	vc_remove_param( "vc_row", "full_height" );
	vc_remove_param( "vc_row", "video_bg" );
	vc_remove_param( "vc_row", "video_bg_parallax" );
	vc_remove_param( "vc_row", "video_bg_url" );
	vc_remove_param( "vc_row", "columns_placement" );
	vc_remove_param( "vc_row", "gap" );	
}	

/**
 * Require plugins install for this theme.
 *
 * @since Split Vcard 1.0
 */
require_once get_template_directory() . '/framework/plugin-requires.php';

add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html>
<html lang="es" class="">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
	<link rel="profile" href="http://gmpg.org/xfn/11">
	<link rel="pingback" href="https://cysgt.com/xmlrpc.php">

<meta name='robots' content='max-image-preview:large' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" />
<style id='wp-img-auto-sizes-contain-inline-css' type='text/css'>
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id='wp-emoji-styles-inline-css' type='text/css'>

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id='wp-block-library-inline-css' type='text/css'>
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=wp-block-library-inline-css */
</style>
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */
</style>
<link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.9.4" />
<link rel="canonical" href="https://cysgt.com/" />
<link rel='shortlink' href='https://cysgt.com/' />
    
</head>

<body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" >
    
    <div id="wrapper" class="

tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'buildpro' ), 'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-list', 'comment-form', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'audio', 'image', 'video', 'gallery', ) ); } endif; // buildpro_setup add_action( 'after_setup_theme', 'buildpro_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function buildpro_content_width() { $GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 ); } add_action( 'after_setup_theme', 'buildpro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function buildpro_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'buildpro' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4><div class="small-border"></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'buildpro' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One Widget Area', 'buildpro' ), 'id' => 'footer-area-1', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two Widget Area', 'buildpro' ), 'id' => 'footer-area-2', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three Widget Area', 'buildpro' ), 'id' => 'footer-area-3', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ), 'id' => 'footer-area-4', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'buildpro_widgets_init' ); /** * Enqueue Google fonts. */ function buildpro_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' ); if ( 'off' !== $mont ) { $font_families = array(); if ( 'off' !== $mont ) { $font_families[] = 'Montserrat:400,200,300,500,600,700,800'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function buildpro_scripts() { $protocol = is_ssl() ? 'https' : 'http'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css'); wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css'); wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css'); wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css'); wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css'); wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css'); if( class_exists('Woocommerce') ) { wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css'); } wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() ); /** All frontend js files **/ wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true); wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true); wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true); wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false); wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true); wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true); wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true); wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true); wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true); wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true); if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true); } } add_action( 'wp_enqueue_scripts', 'buildpro_scripts' ); /** * Implement the Custom Meta Boxs. */ require get_template_directory() . '/framework/meta-boxes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/framework/template-tags.php'; require get_template_directory() . '/framework/BFI_Thumb.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/shortcodes.php'; require_once get_template_directory() . '/vc_shortcode.php'; require_once get_template_directory() . '/framework/customizer.php'; /** * Customizer Menu. */ require get_template_directory() . '/framework/wp_bootstrap_navwalker.php'; /** * Enqueue Style */ require get_template_directory() . '/framework/color.php'; require get_template_directory() . '/framework/styling.php'; /** * Customizer Shop. */ require get_template_directory() . '/framework/woocommerce-customize.php'; //Code Visual Composer. // Add new Param in Row if(function_exists('vc_add_param')){ vc_add_param('vc_row', array( "type" => "dropdown", "heading" => esc_html__('Setup Full Width', 'buildpro'), "param_name" => "fullwidth", "value" => array( esc_html__('No', 'buildpro') => 'no', esc_html__('Yes', 'buildpro') => 'yes', ), "description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"), ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Setup Full Height', 'buildpro'), "param_name" => "fullheight", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Background Parallax', 'buildpro'), "param_name" => "parallax_bg", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Light Text', 'buildpro'), "param_name" => "lighttext", ) ); } if(function_exists('vc_remove_param')){ vc_remove_param( "vc_row", "parallax" ); vc_remove_param( "vc_row", "parallax_image" ); vc_remove_param( "vc_row", "parallax_speed_bg" ); vc_remove_param( "vc_row", "parallax_speed_video" ); vc_remove_param( "vc_row", "full_width" ); vc_remove_param( "vc_row", "full_height" ); vc_remove_param( "vc_row", "video_bg" ); vc_remove_param( "vc_row", "video_bg_parallax" ); vc_remove_param( "vc_row", "video_bg_url" ); vc_remove_param( "vc_row", "columns_placement" ); vc_remove_param( "vc_row", "gap" ); } /** * Require plugins install for this theme. * * @since Split Vcard 1.0 */ require_once get_template_directory() . '/framework/plugin-requires.php'; add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html> <html lang="es" class=""> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cysgt.com/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://cysgt.com/" /> <link rel='shortlink' href='https://cysgt.com/' /> </head> <body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" > <div id="wrapper" class="

Unclaimed
⚠ Identity mismatch

AEO Score: 3/10

Monitoring for AI engine activity

In the Engagemii AEO index

cysgt.com

Share

What this score means

Your AEO score measures whether AI search engines (ChatGPT, Claude, Perplexity, Gemini) can actually read your site and cite it in answers. Two-thirds of websites are invisible to them. tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'buildpro' ), 'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-list', 'comment-form', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'audio', 'image', 'video', 'gallery', ) ); } endif; // buildpro_setup add_action( 'after_setup_theme', 'buildpro_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function buildpro_content_width() { $GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 ); } add_action( 'after_setup_theme', 'buildpro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function buildpro_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'buildpro' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4><div class="small-border"></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'buildpro' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One Widget Area', 'buildpro' ), 'id' => 'footer-area-1', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two Widget Area', 'buildpro' ), 'id' => 'footer-area-2', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three Widget Area', 'buildpro' ), 'id' => 'footer-area-3', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ), 'id' => 'footer-area-4', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'buildpro_widgets_init' ); /** * Enqueue Google fonts. */ function buildpro_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' ); if ( 'off' !== $mont ) { $font_families = array(); if ( 'off' !== $mont ) { $font_families[] = 'Montserrat:400,200,300,500,600,700,800'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function buildpro_scripts() { $protocol = is_ssl() ? 'https' : 'http'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css'); wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css'); wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css'); wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css'); wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css'); wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css'); if( class_exists('Woocommerce') ) { wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css'); } wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() ); /** All frontend js files **/ wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true); wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true); wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true); wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false); wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true); wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true); wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true); wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true); wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true); wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true); if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true); } } add_action( 'wp_enqueue_scripts', 'buildpro_scripts' ); /** * Implement the Custom Meta Boxs. */ require get_template_directory() . '/framework/meta-boxes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/framework/template-tags.php'; require get_template_directory() . '/framework/BFI_Thumb.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/shortcodes.php'; require_once get_template_directory() . '/vc_shortcode.php'; require_once get_template_directory() . '/framework/customizer.php'; /** * Customizer Menu. */ require get_template_directory() . '/framework/wp_bootstrap_navwalker.php'; /** * Enqueue Style */ require get_template_directory() . '/framework/color.php'; require get_template_directory() . '/framework/styling.php'; /** * Customizer Shop. */ require get_template_directory() . '/framework/woocommerce-customize.php'; //Code Visual Composer. // Add new Param in Row if(function_exists('vc_add_param')){ vc_add_param('vc_row', array( "type" => "dropdown", "heading" => esc_html__('Setup Full Width', 'buildpro'), "param_name" => "fullwidth", "value" => array( esc_html__('No', 'buildpro') => 'no', esc_html__('Yes', 'buildpro') => 'yes', ), "description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"), ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Setup Full Height', 'buildpro'), "param_name" => "fullheight", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Background Parallax', 'buildpro'), "param_name" => "parallax_bg", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Light Text', 'buildpro'), "param_name" => "lighttext", ) ); } if(function_exists('vc_remove_param')){ vc_remove_param( "vc_row", "parallax" ); vc_remove_param( "vc_row", "parallax_image" ); vc_remove_param( "vc_row", "parallax_speed_bg" ); vc_remove_param( "vc_row", "parallax_speed_video" ); vc_remove_param( "vc_row", "full_width" ); vc_remove_param( "vc_row", "full_height" ); vc_remove_param( "vc_row", "video_bg" ); vc_remove_param( "vc_row", "video_bg_parallax" ); vc_remove_param( "vc_row", "video_bg_url" ); vc_remove_param( "vc_row", "columns_placement" ); vc_remove_param( "vc_row", "gap" ); } /** * Require plugins install for this theme. * * @since Split Vcard 1.0 */ require_once get_template_directory() . '/framework/plugin-requires.php'; add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html> <html lang="es" class=""> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cysgt.com/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://cysgt.com/" /> <link rel='shortlink' href='https://cysgt.com/' /> </head> <body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" > <div id="wrapper" class=" just got measured.

3/10 means tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'buildpro' ), 'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-list', 'comment-form', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'audio', 'image', 'video', 'gallery', ) ); } endif; // buildpro_setup add_action( 'after_setup_theme', 'buildpro_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function buildpro_content_width() { $GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 ); } add_action( 'after_setup_theme', 'buildpro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function buildpro_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'buildpro' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4><div class="small-border"></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'buildpro' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One Widget Area', 'buildpro' ), 'id' => 'footer-area-1', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two Widget Area', 'buildpro' ), 'id' => 'footer-area-2', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three Widget Area', 'buildpro' ), 'id' => 'footer-area-3', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ), 'id' => 'footer-area-4', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'buildpro_widgets_init' ); /** * Enqueue Google fonts. */ function buildpro_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' ); if ( 'off' !== $mont ) { $font_families = array(); if ( 'off' !== $mont ) { $font_families[] = 'Montserrat:400,200,300,500,600,700,800'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function buildpro_scripts() { $protocol = is_ssl() ? 'https' : 'http'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css'); wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css'); wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css'); wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css'); wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css'); wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css'); if( class_exists('Woocommerce') ) { wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css'); } wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() ); /** All frontend js files **/ wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true); wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true); wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true); wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false); wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true); wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true); wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true); wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true); wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true); wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true); if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true); } } add_action( 'wp_enqueue_scripts', 'buildpro_scripts' ); /** * Implement the Custom Meta Boxs. */ require get_template_directory() . '/framework/meta-boxes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/framework/template-tags.php'; require get_template_directory() . '/framework/BFI_Thumb.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/shortcodes.php'; require_once get_template_directory() . '/vc_shortcode.php'; require_once get_template_directory() . '/framework/customizer.php'; /** * Customizer Menu. */ require get_template_directory() . '/framework/wp_bootstrap_navwalker.php'; /** * Enqueue Style */ require get_template_directory() . '/framework/color.php'; require get_template_directory() . '/framework/styling.php'; /** * Customizer Shop. */ require get_template_directory() . '/framework/woocommerce-customize.php'; //Code Visual Composer. // Add new Param in Row if(function_exists('vc_add_param')){ vc_add_param('vc_row', array( "type" => "dropdown", "heading" => esc_html__('Setup Full Width', 'buildpro'), "param_name" => "fullwidth", "value" => array( esc_html__('No', 'buildpro') => 'no', esc_html__('Yes', 'buildpro') => 'yes', ), "description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"), ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Setup Full Height', 'buildpro'), "param_name" => "fullheight", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Background Parallax', 'buildpro'), "param_name" => "parallax_bg", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Light Text', 'buildpro'), "param_name" => "lighttext", ) ); } if(function_exists('vc_remove_param')){ vc_remove_param( "vc_row", "parallax" ); vc_remove_param( "vc_row", "parallax_image" ); vc_remove_param( "vc_row", "parallax_speed_bg" ); vc_remove_param( "vc_row", "parallax_speed_video" ); vc_remove_param( "vc_row", "full_width" ); vc_remove_param( "vc_row", "full_height" ); vc_remove_param( "vc_row", "video_bg" ); vc_remove_param( "vc_row", "video_bg_parallax" ); vc_remove_param( "vc_row", "video_bg_url" ); vc_remove_param( "vc_row", "columns_placement" ); vc_remove_param( "vc_row", "gap" ); } /** * Require plugins install for this theme. * * @since Split Vcard 1.0 */ require_once get_template_directory() . '/framework/plugin-requires.php'; add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html> <html lang="es" class=""> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cysgt.com/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://cysgt.com/" /> <link rel='shortlink' href='https://cysgt.com/' /> </head> <body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" > <div id="wrapper" class=" is currently invisible to AI search. Most AI assistants will not cite your brand when asked about your category. Claiming and applying the fixes below is the fastest way to change that.

About tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'buildpro' ), 'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-list', 'comment-form', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'audio', 'image', 'video', 'gallery', ) ); } endif; // buildpro_setup add_action( 'after_setup_theme', 'buildpro_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function buildpro_content_width() { $GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 ); } add_action( 'after_setup_theme', 'buildpro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function buildpro_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'buildpro' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4><div class="small-border"></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'buildpro' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One Widget Area', 'buildpro' ), 'id' => 'footer-area-1', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two Widget Area', 'buildpro' ), 'id' => 'footer-area-2', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three Widget Area', 'buildpro' ), 'id' => 'footer-area-3', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ), 'id' => 'footer-area-4', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'buildpro_widgets_init' ); /** * Enqueue Google fonts. */ function buildpro_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' ); if ( 'off' !== $mont ) { $font_families = array(); if ( 'off' !== $mont ) { $font_families[] = 'Montserrat:400,200,300,500,600,700,800'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function buildpro_scripts() { $protocol = is_ssl() ? 'https' : 'http'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css'); wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css'); wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css'); wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css'); wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css'); wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css'); if( class_exists('Woocommerce') ) { wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css'); } wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() ); /** All frontend js files **/ wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true); wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true); wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true); wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false); wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true); wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true); wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true); wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true); wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true); wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true); if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true); } } add_action( 'wp_enqueue_scripts', 'buildpro_scripts' ); /** * Implement the Custom Meta Boxs. */ require get_template_directory() . '/framework/meta-boxes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/framework/template-tags.php'; require get_template_directory() . '/framework/BFI_Thumb.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/shortcodes.php'; require_once get_template_directory() . '/vc_shortcode.php'; require_once get_template_directory() . '/framework/customizer.php'; /** * Customizer Menu. */ require get_template_directory() . '/framework/wp_bootstrap_navwalker.php'; /** * Enqueue Style */ require get_template_directory() . '/framework/color.php'; require get_template_directory() . '/framework/styling.php'; /** * Customizer Shop. */ require get_template_directory() . '/framework/woocommerce-customize.php'; //Code Visual Composer. // Add new Param in Row if(function_exists('vc_add_param')){ vc_add_param('vc_row', array( "type" => "dropdown", "heading" => esc_html__('Setup Full Width', 'buildpro'), "param_name" => "fullwidth", "value" => array( esc_html__('No', 'buildpro') => 'no', esc_html__('Yes', 'buildpro') => 'yes', ), "description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"), ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Setup Full Height', 'buildpro'), "param_name" => "fullheight", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Background Parallax', 'buildpro'), "param_name" => "parallax_bg", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Light Text', 'buildpro'), "param_name" => "lighttext", ) ); } if(function_exists('vc_remove_param')){ vc_remove_param( "vc_row", "parallax" ); vc_remove_param( "vc_row", "parallax_image" ); vc_remove_param( "vc_row", "parallax_speed_bg" ); vc_remove_param( "vc_row", "parallax_speed_video" ); vc_remove_param( "vc_row", "full_width" ); vc_remove_param( "vc_row", "full_height" ); vc_remove_param( "vc_row", "video_bg" ); vc_remove_param( "vc_row", "video_bg_parallax" ); vc_remove_param( "vc_row", "video_bg_url" ); vc_remove_param( "vc_row", "columns_placement" ); vc_remove_param( "vc_row", "gap" ); } /** * Require plugins install for this theme. * * @since Split Vcard 1.0 */ require_once get_template_directory() . '/framework/plugin-requires.php'; add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html> <html lang="es" class=""> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cysgt.com/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://cysgt.com/" /> <link rel='shortlink' href='https://cysgt.com/' /> </head> <body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" > <div id="wrapper" class="

tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'buildpro' ), 'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-list', 'comment-form', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'audio', 'image', 'video', 'gallery', ) ); } endif; // buildpro_setup add_action( 'after_setup_theme', 'buildpro_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function buildpro_content_width() { $GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 ); } add_action( 'after_setup_theme', 'buildpro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function buildpro_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'buildpro' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4><div class="small-border"></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'buildpro' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One Widget Area', 'buildpro' ), 'id' => 'footer-area-1', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two Widget Area', 'buildpro' ), 'id' => 'footer-area-2', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three Widget Area', 'buildpro' ), 'id' => 'footer-area-3', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ), 'id' => 'footer-area-4', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'buildpro_widgets_init' ); /** * Enqueue Google fonts. */ function buildpro_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' ); if ( 'off' !== $mont ) { $font_families = array(); if ( 'off' !== $mont ) { $font_families[] = 'Montserrat:400,200,300,500,600,700,800'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function buildpro_scripts() { $protocol = is_ssl() ? 'https' : 'http'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css'); wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css'); wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css'); wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css'); wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css'); wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css'); if( class_exists('Woocommerce') ) { wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css'); } wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() ); /** All frontend js files **/ wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true); wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true); wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true); wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false); wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true); wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true); wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true); wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true); wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true); wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true); if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true); } } add_action( 'wp_enqueue_scripts', 'buildpro_scripts' ); /** * Implement the Custom Meta Boxs. */ require get_template_directory() . '/framework/meta-boxes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/framework/template-tags.php'; require get_template_directory() . '/framework/BFI_Thumb.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/shortcodes.php'; require_once get_template_directory() . '/vc_shortcode.php'; require_once get_template_directory() . '/framework/customizer.php'; /** * Customizer Menu. */ require get_template_directory() . '/framework/wp_bootstrap_navwalker.php'; /** * Enqueue Style */ require get_template_directory() . '/framework/color.php'; require get_template_directory() . '/framework/styling.php'; /** * Customizer Shop. */ require get_template_directory() . '/framework/woocommerce-customize.php'; //Code Visual Composer. // Add new Param in Row if(function_exists('vc_add_param')){ vc_add_param('vc_row', array( "type" => "dropdown", "heading" => esc_html__('Setup Full Width', 'buildpro'), "param_name" => "fullwidth", "value" => array( esc_html__('No', 'buildpro') => 'no', esc_html__('Yes', 'buildpro') => 'yes', ), "description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"), ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Setup Full Height', 'buildpro'), "param_name" => "fullheight", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Background Parallax', 'buildpro'), "param_name" => "parallax_bg", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Light Text', 'buildpro'), "param_name" => "lighttext", ) ); } if(function_exists('vc_remove_param')){ vc_remove_param( "vc_row", "parallax" ); vc_remove_param( "vc_row", "parallax_image" ); vc_remove_param( "vc_row", "parallax_speed_bg" ); vc_remove_param( "vc_row", "parallax_speed_video" ); vc_remove_param( "vc_row", "full_width" ); vc_remove_param( "vc_row", "full_height" ); vc_remove_param( "vc_row", "video_bg" ); vc_remove_param( "vc_row", "video_bg_parallax" ); vc_remove_param( "vc_row", "video_bg_url" ); vc_remove_param( "vc_row", "columns_placement" ); vc_remove_param( "vc_row", "gap" ); } /** * Require plugins install for this theme. * * @since Split Vcard 1.0 */ require_once get_template_directory() . '/framework/plugin-requires.php'; add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html> <html lang="es" class=""> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cysgt.com/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://cysgt.com/" /> <link rel='shortlink' href='https://cysgt.com/' /> </head> <body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" > <div id="wrapper" class=" is a brand in the technology category. View their AI visibility score and details below.

Details

Industry: Technology

cysgt.com

AI Visibility Breakdown

1

Structured Data

2

Content Structure

5

Entity Clarity

3

E-E-A-T Signals

5

Technical AEO

2

AI Discoverability

Is this your brand?

Claim free. You'll see:

Your full 6-category score breakdown

Exact fixes: robots.txt, schema, llms.txt

AI bot crawls from ChatGPT, Claude, Perplexity, Gemini

Personal 50% off code at checkout

Already have an account? Sign in

Picked for tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'buildpro' ), 'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-list', 'comment-form', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'audio', 'image', 'video', 'gallery', ) ); } endif; // buildpro_setup add_action( 'after_setup_theme', 'buildpro_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function buildpro_content_width() { $GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 ); } add_action( 'after_setup_theme', 'buildpro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function buildpro_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'buildpro' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4><div class="small-border"></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'buildpro' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One Widget Area', 'buildpro' ), 'id' => 'footer-area-1', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two Widget Area', 'buildpro' ), 'id' => 'footer-area-2', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three Widget Area', 'buildpro' ), 'id' => 'footer-area-3', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ), 'id' => 'footer-area-4', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'buildpro_widgets_init' ); /** * Enqueue Google fonts. */ function buildpro_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' ); if ( 'off' !== $mont ) { $font_families = array(); if ( 'off' !== $mont ) { $font_families[] = 'Montserrat:400,200,300,500,600,700,800'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function buildpro_scripts() { $protocol = is_ssl() ? 'https' : 'http'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css'); wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css'); wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css'); wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css'); wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css'); wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css'); if( class_exists('Woocommerce') ) { wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css'); } wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() ); /** All frontend js files **/ wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true); wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true); wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true); wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false); wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true); wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true); wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true); wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true); wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true); wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true); if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true); } } add_action( 'wp_enqueue_scripts', 'buildpro_scripts' ); /** * Implement the Custom Meta Boxs. */ require get_template_directory() . '/framework/meta-boxes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/framework/template-tags.php'; require get_template_directory() . '/framework/BFI_Thumb.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/shortcodes.php'; require_once get_template_directory() . '/vc_shortcode.php'; require_once get_template_directory() . '/framework/customizer.php'; /** * Customizer Menu. */ require get_template_directory() . '/framework/wp_bootstrap_navwalker.php'; /** * Enqueue Style */ require get_template_directory() . '/framework/color.php'; require get_template_directory() . '/framework/styling.php'; /** * Customizer Shop. */ require get_template_directory() . '/framework/woocommerce-customize.php'; //Code Visual Composer. // Add new Param in Row if(function_exists('vc_add_param')){ vc_add_param('vc_row', array( "type" => "dropdown", "heading" => esc_html__('Setup Full Width', 'buildpro'), "param_name" => "fullwidth", "value" => array( esc_html__('No', 'buildpro') => 'no', esc_html__('Yes', 'buildpro') => 'yes', ), "description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"), ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Setup Full Height', 'buildpro'), "param_name" => "fullheight", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Background Parallax', 'buildpro'), "param_name" => "parallax_bg", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Light Text', 'buildpro'), "param_name" => "lighttext", ) ); } if(function_exists('vc_remove_param')){ vc_remove_param( "vc_row", "parallax" ); vc_remove_param( "vc_row", "parallax_image" ); vc_remove_param( "vc_row", "parallax_speed_bg" ); vc_remove_param( "vc_row", "parallax_speed_video" ); vc_remove_param( "vc_row", "full_width" ); vc_remove_param( "vc_row", "full_height" ); vc_remove_param( "vc_row", "video_bg" ); vc_remove_param( "vc_row", "video_bg_parallax" ); vc_remove_param( "vc_row", "video_bg_url" ); vc_remove_param( "vc_row", "columns_placement" ); vc_remove_param( "vc_row", "gap" ); } /** * Require plugins install for this theme. * * @since Split Vcard 1.0 */ require_once get_template_directory() . '/framework/plugin-requires.php'; add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html> <html lang="es" class=""> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cysgt.com/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://cysgt.com/" /> <link rel='shortlink' href='https://cysgt.com/' /> </head> <body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" > <div id="wrapper" class=": Tech & Electronics

Tech Shoppers Do More Research Than Anyone. Are You There When They're Looking?

Tech buyers are the most research-intensive shoppers on the internet.

Continue reading in your free Engagemii portal

Free signup unlocks the full article plus your personalized AEO fix list for tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'buildpro' ), 'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-list', 'comment-form', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'audio', 'image', 'video', 'gallery', ) ); } endif; // buildpro_setup add_action( 'after_setup_theme', 'buildpro_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function buildpro_content_width() { $GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 ); } add_action( 'after_setup_theme', 'buildpro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function buildpro_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'buildpro' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4><div class="small-border"></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'buildpro' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One Widget Area', 'buildpro' ), 'id' => 'footer-area-1', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two Widget Area', 'buildpro' ), 'id' => 'footer-area-2', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three Widget Area', 'buildpro' ), 'id' => 'footer-area-3', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ), 'id' => 'footer-area-4', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'buildpro_widgets_init' ); /** * Enqueue Google fonts. */ function buildpro_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' ); if ( 'off' !== $mont ) { $font_families = array(); if ( 'off' !== $mont ) { $font_families[] = 'Montserrat:400,200,300,500,600,700,800'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function buildpro_scripts() { $protocol = is_ssl() ? 'https' : 'http'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css'); wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css'); wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css'); wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css'); wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css'); wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css'); if( class_exists('Woocommerce') ) { wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css'); } wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() ); /** All frontend js files **/ wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true); wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true); wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true); wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false); wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true); wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true); wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true); wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true); wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true); wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true); if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true); } } add_action( 'wp_enqueue_scripts', 'buildpro_scripts' ); /** * Implement the Custom Meta Boxs. */ require get_template_directory() . '/framework/meta-boxes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/framework/template-tags.php'; require get_template_directory() . '/framework/BFI_Thumb.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/shortcodes.php'; require_once get_template_directory() . '/vc_shortcode.php'; require_once get_template_directory() . '/framework/customizer.php'; /** * Customizer Menu. */ require get_template_directory() . '/framework/wp_bootstrap_navwalker.php'; /** * Enqueue Style */ require get_template_directory() . '/framework/color.php'; require get_template_directory() . '/framework/styling.php'; /** * Customizer Shop. */ require get_template_directory() . '/framework/woocommerce-customize.php'; //Code Visual Composer. // Add new Param in Row if(function_exists('vc_add_param')){ vc_add_param('vc_row', array( "type" => "dropdown", "heading" => esc_html__('Setup Full Width', 'buildpro'), "param_name" => "fullwidth", "value" => array( esc_html__('No', 'buildpro') => 'no', esc_html__('Yes', 'buildpro') => 'yes', ), "description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"), ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Setup Full Height', 'buildpro'), "param_name" => "fullheight", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Background Parallax', 'buildpro'), "param_name" => "parallax_bg", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Light Text', 'buildpro'), "param_name" => "lighttext", ) ); } if(function_exists('vc_remove_param')){ vc_remove_param( "vc_row", "parallax" ); vc_remove_param( "vc_row", "parallax_image" ); vc_remove_param( "vc_row", "parallax_speed_bg" ); vc_remove_param( "vc_row", "parallax_speed_video" ); vc_remove_param( "vc_row", "full_width" ); vc_remove_param( "vc_row", "full_height" ); vc_remove_param( "vc_row", "video_bg" ); vc_remove_param( "vc_row", "video_bg_parallax" ); vc_remove_param( "vc_row", "video_bg_url" ); vc_remove_param( "vc_row", "columns_placement" ); vc_remove_param( "vc_row", "gap" ); } /** * Require plugins install for this theme. * * @since Split Vcard 1.0 */ require_once get_template_directory() . '/framework/plugin-requires.php'; add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html> <html lang="es" class=""> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cysgt.com/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://cysgt.com/" /> <link rel='shortlink' href='https://cysgt.com/' /> </head> <body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" > <div id="wrapper" class=".

Source & Attribution

Scored by Engagemii on June 27, 2026. Methodology: engagemii.com/aeo/methodology

Source URL: https://engagemii.com/aeo/brands/cysgt

Cite this score: Engagemii (2026). "AEO Score for tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * 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' ); add_theme_support( 'custom-header' ); add_theme_support( 'custom-background' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'buildpro' ), 'onepage' => esc_html__( 'Onepage Menu', 'buildpro' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-list', 'comment-form', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See https://developer.wordpress.org/themes/functionality/post-formats/ */ add_theme_support( 'post-formats', array( 'audio', 'image', 'video', 'gallery', ) ); } endif; // buildpro_setup add_action( 'after_setup_theme', 'buildpro_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function buildpro_content_width() { $GLOBALS['content_width'] = apply_filters( 'buildpro_content_width', 640 ); } add_action( 'after_setup_theme', 'buildpro_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function buildpro_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'buildpro' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4><div class="small-border"></div>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop Sidebar', 'buildpro' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Appears in the sidebar section of the site.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer One Widget Area', 'buildpro' ), 'id' => 'footer-area-1', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Two Widget Area', 'buildpro' ), 'id' => 'footer-area-2', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Three Widget Area', 'buildpro' ), 'id' => 'footer-area-3', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Fourth Widget Area', 'buildpro' ), 'id' => 'footer-area-4', 'description' => esc_html__( 'Footer Widget that appears on the Footer.', 'buildpro' ), 'before_widget' => '<div id="%1$s" class="widget footer-widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3>', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'buildpro_widgets_init' ); /** * Enqueue Google fonts. */ function buildpro_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Lora, translate this to 'off'. Do not translate * into your own language. */ $mont = _x( 'on', 'Montserrat font: on or off', 'buildpro' ); if ( 'off' !== $mont ) { $font_families = array(); if ( 'off' !== $mont ) { $font_families[] = 'Montserrat:400,200,300,500,600,700,800'; } $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url_raw( $fonts_url ); } /** * Enqueue scripts and styles. */ function buildpro_scripts() { $protocol = is_ssl() ? 'https' : 'http'; // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'buildpro-fonts', buildpro_fonts_url(), array(), null ); /** All frontend css files **/ wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css'); wp_enqueue_style( 'animate', get_template_directory_uri().'/css/animate.css'); wp_enqueue_style( 'vc_font_awesome_5' ); wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/fonts/font-awesome/css/font-awesome.css'); wp_enqueue_style( 'elegant', get_template_directory_uri().'/fonts/elegant_font/HTML_CSS/style.css'); wp_enqueue_style( 'etline', get_template_directory_uri().'/fonts/et-line-font/style.css'); wp_enqueue_style( 'magnific', get_template_directory_uri().'/css/magnific-popup.css'); wp_enqueue_style( 'owl-carousel', get_template_directory_uri().'/css/owl.carousel.css'); if( class_exists('Woocommerce') ) { wp_enqueue_style( 'buildpro-woo', get_template_directory_uri().'/css/woocommerce.css'); } wp_enqueue_style( 'buildpro-style', get_stylesheet_uri() ); /** All frontend js files **/ wp_enqueue_script("mapapi", "$protocol://maps.google.com/maps/api/js?key=AIzaSyAvpnlHRidMIU374bKM5-sx8ruc01OvDjI",array(),false,false); wp_enqueue_script("bootstrap", get_template_directory_uri()."/js/bootstrap.min.js",array('jquery'),false,true); wp_enqueue_script("easing", get_template_directory_uri()."/js/easing.js",array('jquery'),false,true); wp_enqueue_script("countto", get_template_directory_uri()."/js/jquery.countTo.js",array('jquery'),false,true); wp_enqueue_script("owl-carousel", get_template_directory_uri()."/js/owl.carousel.js",array('jquery'),false,false); wp_enqueue_script("isotope", get_template_directory_uri()."/js/jquery.isotope.min.js",array('jquery'),false,true); wp_enqueue_script("wow", get_template_directory_uri()."/js/wow.min.js",array('jquery'),false,true); wp_enqueue_script("magnific", get_template_directory_uri()."/js/jquery.magnific-popup.min.js",array('jquery'),false,true); wp_enqueue_script("enquire", get_template_directory_uri()."/js/enquire.min.js",array('jquery'),false,true); wp_enqueue_script("stellar", get_template_directory_uri()."/js/jquery.stellar.min.js",array('jquery'),false,true); wp_enqueue_script("buildpro-js", get_template_directory_uri()."/js/designesia.js",array('jquery'),false,true); if(buildpro_get_option( 'sticky' ) && !is_page_template( 'page-templates/header-light.php' ) && !is_page_template( 'page-templates/header-dark.php' )) { wp_enqueue_script("buildpro-sticky", get_template_directory_uri()."/js/sticky-header.js",array('jquery'),false,true); } } add_action( 'wp_enqueue_scripts', 'buildpro_scripts' ); /** * Implement the Custom Meta Boxs. */ require get_template_directory() . '/framework/meta-boxes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/framework/template-tags.php'; require get_template_directory() . '/framework/BFI_Thumb.php'; /** * Custom shortcode plugin visual composer. */ require_once get_template_directory() . '/shortcodes.php'; require_once get_template_directory() . '/vc_shortcode.php'; require_once get_template_directory() . '/framework/customizer.php'; /** * Customizer Menu. */ require get_template_directory() . '/framework/wp_bootstrap_navwalker.php'; /** * Enqueue Style */ require get_template_directory() . '/framework/color.php'; require get_template_directory() . '/framework/styling.php'; /** * Customizer Shop. */ require get_template_directory() . '/framework/woocommerce-customize.php'; //Code Visual Composer. // Add new Param in Row if(function_exists('vc_add_param')){ vc_add_param('vc_row', array( "type" => "dropdown", "heading" => esc_html__('Setup Full Width', 'buildpro'), "param_name" => "fullwidth", "value" => array( esc_html__('No', 'buildpro') => 'no', esc_html__('Yes', 'buildpro') => 'yes', ), "description" => esc_html__("Select Full width for row : yes or not, Default: No fullwidth", "buildpro"), ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Setup Full Height', 'buildpro'), "param_name" => "fullheight", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Background Parallax', 'buildpro'), "param_name" => "parallax_bg", ) ); vc_add_param('vc_row',array( "type" => "checkbox", "heading" => esc_html__('Light Text', 'buildpro'), "param_name" => "lighttext", ) ); } if(function_exists('vc_remove_param')){ vc_remove_param( "vc_row", "parallax" ); vc_remove_param( "vc_row", "parallax_image" ); vc_remove_param( "vc_row", "parallax_speed_bg" ); vc_remove_param( "vc_row", "parallax_speed_video" ); vc_remove_param( "vc_row", "full_width" ); vc_remove_param( "vc_row", "full_height" ); vc_remove_param( "vc_row", "video_bg" ); vc_remove_param( "vc_row", "video_bg_parallax" ); vc_remove_param( "vc_row", "video_bg_url" ); vc_remove_param( "vc_row", "columns_placement" ); vc_remove_param( "vc_row", "gap" ); } /** * Require plugins install for this theme. * * @since Split Vcard 1.0 */ require_once get_template_directory() . '/framework/plugin-requires.php'; add_action('wp_head', function(){echo '';}, 1);<!DOCTYPE html> <html lang="es" class=""> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://cysgt.com/xmlrpc.php"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://cysgt.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcysgt.com%2F&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id='wp-block-library-inline-css' type='text/css'> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=wp-block-library-inline-css */ </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <link rel="https://api.w.org/" href="https://cysgt.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://cysgt.com/wp-json/wp/v2/pages/492" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://cysgt.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://cysgt.com/" /> <link rel='shortlink' href='https://cysgt.com/' /> </head> <body class="home wp-singular page-template page-template-page-templates page-template-template-canvas page-template-page-templatestemplate-canvas-php page page-id-492 wp-theme-buildpro" > <div id="wrapper" class="." Retrieved from https://engagemii.com/aeo/brands/cysgt

Licensed under CC BY 4.0. You may reuse this data with attribution: a visible link to engagemii.com.

Powered by Engagemii - AI Brand Discovery and AEO Platform