This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function factorian_countTo_vc_addon() { | |
vc_map( | |
array( | |
"name" => __( "Factorian CountUp Box", "factorian-sctheme" ), | |
"base" => "factorian_countup_box", | |
"category" => __( "Factorian", "factorian-sctheme"), | |
"params" => array( | |
array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! defined( 'ABSPATH' ) ) { exit; } | |
function factorian_countUp_box_shortcode($atts){ | |
extract( shortcode_atts( array( | |
'countup_title' => '', | |
'countup_icon' => '', | |
'countup_icon_color' => '', | |
'countup_numbers' => '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! defined( 'ABSPATH' ) ) { exit; } | |
function factorian_service_box_shortcode($atts){ | |
extract( shortcode_atts( array( | |
'service_image' => '', | |
'service_title' => '', | |
'service_desc' => '', | |
'service_link_page' => '', |