Current File : /home/kelaby89/cartel.express/wp-content/plugins/trx_addons/components/cpt/services/services.php |
<?php
/**
* ThemeREX Addons Custom post type: Services
*
* @package ThemeREX Addons
* @since v1.4
*/
// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
exit;
}
// -----------------------------------------------------------------
// -- Custom post type registration
// -----------------------------------------------------------------
// Define Custom post type and taxonomy constants
if ( ! defined('TRX_ADDONS_CPT_SERVICES_PT') ) define('TRX_ADDONS_CPT_SERVICES_PT', trx_addons_cpt_param('services', 'post_type'));
if ( ! defined('TRX_ADDONS_CPT_SERVICES_TAXONOMY') ) define('TRX_ADDONS_CPT_SERVICES_TAXONOMY', trx_addons_cpt_param('services', 'taxonomy'));
// Register post type and taxonomy
if (!function_exists('trx_addons_cpt_services_init')) {
add_action( 'init', 'trx_addons_cpt_services_init' );
function trx_addons_cpt_services_init() {
// Add Services parameters to the Meta Box support
trx_addons_meta_box_register(TRX_ADDONS_CPT_SERVICES_PT, array(
"price" => array(
"title" => esc_html__("Price", 'trx_addons'),
"desc" => wp_kses_data( __("The price of the item", 'trx_addons') ),
"std" => "",
"type" => "text"
),
"product" => array(
"title" => __('Select linked product', 'trx_addons'),
"desc" => __("Product linked with this service item", 'trx_addons'),
"std" => '',
"options" => array(),
"type" => "select2"
),
"icon" => array(
"title" => esc_html__("Item's icon", 'trx_addons'),
"desc" => '',
"std" => '',
"options" => array(),
"style" => trx_addons_get_setting('icons_type'),
"type" => "icons"
),
"icon_color" => array(
"title" => esc_html__("Icon's color", 'trx_addons'),
"desc" => '',
"std" => '',
"type" => "color"
),
"image" => array(
"title" => esc_html__("Item's pictogram", 'trx_addons'),
"desc" => '',
"std" => '',
"button_caption" => esc_html__('Choose', 'trx_addons'),
"type" => "image"
),
"link" => array(
"title" => esc_html__("Alternative link", 'trx_addons'),
"desc" => wp_kses_data( __("Alternative link to the service's site. If empty - use this post's permalink", 'trx_addons') ),
"std" => "",
"type" => "text"
),
));
// Register taxonomies and post types
// Taxonomy first, because it can using the combined rewrite rule (contains the slug of the post type)
register_taxonomy(
TRX_ADDONS_CPT_SERVICES_TAXONOMY,
TRX_ADDONS_CPT_SERVICES_PT,
apply_filters('trx_addons_filter_register_taxonomy',
array(
'post_type' => TRX_ADDONS_CPT_SERVICES_PT,
'hierarchical' => true,
'labels' => array(
'name' => esc_html__( 'Services Group', 'trx_addons' ),
'singular_name' => esc_html__( 'Group', 'trx_addons' ),
'search_items' => esc_html__( 'Search Groups', 'trx_addons' ),
'all_items' => esc_html__( 'All Groups', 'trx_addons' ),
'parent_item' => esc_html__( 'Parent Group', 'trx_addons' ),
'parent_item_colon' => esc_html__( 'Parent Group:', 'trx_addons' ),
'edit_item' => esc_html__( 'Edit Group', 'trx_addons' ),
'update_item' => esc_html__( 'Update Group', 'trx_addons' ),
'add_new_item' => esc_html__( 'Add New Group', 'trx_addons' ),
'new_item_name' => esc_html__( 'New Group Name', 'trx_addons' ),
'menu_name' => esc_html__( 'Services Groups', 'trx_addons' ),
),
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array(
'slug' => trx_addons_cpt_param('services', 'taxonomy_slug'),
'with_front' => false,
'hierarchical' => true
)
),
TRX_ADDONS_CPT_SERVICES_PT,
TRX_ADDONS_CPT_SERVICES_TAXONOMY
)
);
register_post_type(
TRX_ADDONS_CPT_SERVICES_PT,
apply_filters('trx_addons_filter_register_post_type',
array(
'label' => esc_html__( 'Services', 'trx_addons' ),
'description' => esc_html__( 'Service Description', 'trx_addons' ),
'labels' => array(
'name' => esc_html__( 'Services', 'trx_addons' ),
'singular_name' => esc_html__( 'Service', 'trx_addons' ),
'menu_name' => esc_html__( 'Services', 'trx_addons' ),
'parent_item_colon' => esc_html__( 'Parent Item:', 'trx_addons' ),
'all_items' => esc_html__( 'All Services', 'trx_addons' ),
'view_item' => esc_html__( 'View Service', 'trx_addons' ),
'add_new_item' => esc_html__( 'Add New Service', 'trx_addons' ),
'add_new' => esc_html__( 'Add New', 'trx_addons' ),
'edit_item' => esc_html__( 'Edit Service', 'trx_addons' ),
'update_item' => esc_html__( 'Update Service', 'trx_addons' ),
'search_items' => esc_html__( 'Search Service', 'trx_addons' ),
'not_found' => esc_html__( 'Not found', 'trx_addons' ),
'not_found_in_trash' => esc_html__( 'Not found in Trash', 'trx_addons' ),
),
'taxonomies' => array(TRX_ADDONS_CPT_SERVICES_TAXONOMY),
'supports' => trx_addons_cpt_param('services', 'supports'),
'public' => true,
'hierarchical' => false,
'has_archive' => true,
'can_export' => true,
'show_in_admin_bar' => true,
'show_in_menu' => true,
// From WordPress 5.3 'menu_position' must be only integer or null (default)!
// 'menu_position' => '53.6',
'menu_icon' => 'dashicons-hammer',
'capability_type' => 'post',
'rewrite' => array(
'slug' => trx_addons_cpt_param('services', 'post_type_slug'),
'with_front' => false,
'hierarchical' => false
)
),
TRX_ADDONS_CPT_SERVICES_PT
)
);
}
}
// Allow Gutenberg as main editor for this post type
if ( ! function_exists( 'trx_addons_cpt_services_add_pt_to_gutenberg' ) ) {
add_filter( 'trx_addons_filter_add_pt_to_gutenberg', 'trx_addons_cpt_services_add_pt_to_gutenberg', 10, 2 );
function trx_addons_cpt_services_add_pt_to_gutenberg( $allow, $post_type ) {
return $allow || $post_type == TRX_ADDONS_CPT_SERVICES_PT;
}
}
// Allow Gutenberg as main editor for taxonomies
if ( ! function_exists( 'trx_addons_cpt_services_add_taxonomy_to_gutenberg' ) ) {
add_filter( 'trx_addons_filter_add_taxonomy_to_gutenberg', 'trx_addons_cpt_services_add_taxonomy_to_gutenberg', 10, 2 );
function trx_addons_cpt_services_add_taxonomy_to_gutenberg( $allow, $tax ) {
return $allow || in_array( $tax, array( TRX_ADDONS_CPT_SERVICES_TAXONOMY ) );
}
}
// Fill 'options' arrays when its need in the admin mode
if (!function_exists('trx_addons_cpt_services_options_get_list_choises')) {
add_filter('trx_addons_filter_options_get_list_choises', 'trx_addons_cpt_services_options_get_list_choises', 10, 2);
function trx_addons_cpt_services_options_get_list_choises($list, $name) {
if ( is_array( $list ) && count( $list ) == 0 ) {
if ($name == 'product') {
$list = trx_addons_get_list_posts(false, 'product');
} else if ($name == 'services_form') {
$list = apply_filters('trx_addons_filter_page_contact_form',
trx_addons_array_merge(
array(
'none' => esc_html__('None', 'trx_addons'),
'default' => esc_html__('Default', 'trx_addons')
),
function_exists('trx_addons_exists_cf7') && trx_addons_exists_cf7() && is_admin() && (in_array(trx_addons_get_value_gp('page'), array('trx_addons_options', 'theme_options')) || strpos($_SERVER['REQUEST_URI'], 'customize.php')!==false)
? trx_addons_get_list_cf7()
: array()
), 'services'
);
}
}
return $list;
}
}
/* ------------------- Old way --------------------------
// Fill 'options' arrays when its need in the admin mode
if (!function_exists('trx_addons_cpt_services_before_show_options')) {
add_filter('trx_addons_filter_before_show_options', 'trx_addons_cpt_services_before_show_options', 10, 2);
function trx_addons_cpt_services_before_show_options($options, $post_type, $group='') {
if ($post_type == TRX_ADDONS_CPT_SERVICES_PT) {
foreach ($options as $id=>$field) {
// Recursive call for options type 'group'
if ($field['type'] == 'group' && !empty($field['fields'])) {
$options[$id]['fields'] = trx_addons_cpt_courses_before_show_options($field['fields'], $post_type, $id);
continue;
}
// Skip elements without param 'options'
if (!isset($field['options']) || count($field['options'])>0) {
continue;
}
// Fill the 'product' array
if ($id == 'product') {
$options[$id]['options'] = trx_addons_get_list_posts(false, 'product');
}
}
}
return $options;
}
}
*/
/* ------------------- Old way - moved to the cpt.php now ---------------------
// Add 'Services' parameters in the ThemeREX Addons Options
if (!function_exists('trx_addons_cpt_services_options')) {
add_filter( 'trx_addons_filter_options', 'trx_addons_cpt_services_options');
function trx_addons_cpt_services_options($options) {
trx_addons_array_insert_after($options, 'cpt_section', trx_addons_cpt_services_get_list_options());
return $options;
}
}
// Return parameters list for plugin's options
if (!function_exists('trx_addons_cpt_services_get_list_options')) {
function trx_addons_cpt_services_get_list_options($add_parameters=array()) {
return apply_filters('trx_addons_cpt_list_options', array(
'services_info' => array(
"title" => esc_html__('Services', 'trx_addons'),
"desc" => wp_kses_data( __('Settings of the services archive', 'trx_addons') ),
"type" => "info"
),
'services_style' => array(
"title" => esc_html__('Style', 'trx_addons'),
"desc" => wp_kses_data( __('Style of the services archive', 'trx_addons') ),
"std" => 'default_2',
"options" => apply_filters('trx_addons_filter_cpt_archive_styles',
trx_addons_components_get_allowed_layouts('cpt', 'services', 'arh'),
TRX_ADDONS_CPT_SERVICES_PT),
"type" => "select"
)
), 'services');
}
}
------------------- /Old way --------------------- */
// Load required styles and scripts for the frontend
if ( !function_exists( 'trx_addons_cpt_services_load_scripts_front' ) ) {
add_action( "wp_enqueue_scripts", 'trx_addons_cpt_services_load_scripts_front', TRX_ADDONS_ENQUEUE_SCRIPTS_PRIORITY);
add_action( 'trx_addons_action_pagebuilder_preview_scripts', 'trx_addons_cpt_services_load_scripts_front', 10, 1 );
function trx_addons_cpt_services_load_scripts_front( $force = false ) {
trx_addons_enqueue_optimized( 'cpt_services', $force, array(
'css' => array(
'trx_addons-cpt_services' => array( 'src' => TRX_ADDONS_PLUGIN_CPT . 'services/services.css' ),
),
'need' => trx_addons_is_services_page(),
'check' => array(
array( 'type' => 'sc', 'sc' => 'trx_sc_services' ),
array( 'type' => 'gb', 'sc' => 'wp:trx-addons/services' ),
array( 'type' => 'elm', 'sc' => '"widgetType":"trx_sc_services"' ),
array( 'type' => 'elm', 'sc' => '"shortcode":"[trx_sc_services' ),
)
) );
}
}
// Enqueue responsive styles for frontend
if ( ! function_exists( 'trx_addons_cpt_services_load_scripts_front_responsive' ) ) {
add_action( 'wp_enqueue_scripts', 'trx_addons_cpt_services_load_scripts_front_responsive', TRX_ADDONS_ENQUEUE_RESPONSIVE_PRIORITY );
add_action( 'trx_addons_action_load_scripts_front_cpt_services', 'trx_addons_cpt_services_load_scripts_front_responsive', 10, 1 );
function trx_addons_cpt_services_load_scripts_front_responsive( $force = false ) {
trx_addons_enqueue_optimized_responsive( 'cpt_services', $force, array(
'css' => array(
'trx_addons-cpt_services-responsive' => array(
'src' => TRX_ADDONS_PLUGIN_CPT . 'services/services.responsive.css',
'media' => 'xl'
),
),
) );
}
}
// Merge shortcode's specific styles to the single stylesheet
if ( !function_exists( 'trx_addons_cpt_services_merge_styles' ) ) {
add_filter("trx_addons_filter_merge_styles", 'trx_addons_cpt_services_merge_styles');
function trx_addons_cpt_services_merge_styles($list) {
$list[ TRX_ADDONS_PLUGIN_CPT . 'services/services.css' ] = false;
return $list;
}
}
// Merge shortcode's specific styles to the single stylesheet (responsive)
if ( !function_exists( 'trx_addons_cpt_services_merge_styles_responsive' ) ) {
add_filter("trx_addons_filter_merge_styles_responsive", 'trx_addons_cpt_services_merge_styles_responsive');
function trx_addons_cpt_services_merge_styles_responsive($list) {
$list[ TRX_ADDONS_PLUGIN_CPT . 'services/services.responsive.css' ] = false;
return $list;
}
}
// Merge shortcode's specific scripts to the single file
if ( !function_exists( 'trx_addons_cpt_services_merge_scripts' ) ) {
add_action("trx_addons_filter_merge_scripts", 'trx_addons_cpt_services_merge_scripts');
function trx_addons_cpt_services_merge_scripts($list) {
$list[ TRX_ADDONS_PLUGIN_CPT . 'services/services.js' ] = false;
return $list;
}
}
// Load styles and scripts if present in the cache of the menu
if ( !function_exists( 'trx_addons_cpt_services_check_in_html_output' ) ) {
add_filter( 'trx_addons_filter_get_menu_cache_html', 'trx_addons_cpt_services_check_in_html_output', 10, 1 );
add_action( 'trx_addons_action_show_layout_from_cache', 'trx_addons_cpt_services_check_in_html_output', 10, 1 );
add_action( 'trx_addons_action_check_page_content', 'trx_addons_cpt_services_check_in_html_output', 10, 1 );
function trx_addons_cpt_services_check_in_html_output( $content = '' ) {
$args = array(
'check' => array(
'class=[\'"][^\'"]*sc_services',
'class=[\'"][^\'"]*type\\-' . TRX_ADDONS_CPT_SERVICES_PT,
'class=[\'"][^\'"]*' . TRX_ADDONS_CPT_SERVICES_TAXONOMY . '\\-',
)
);
if ( trx_addons_check_in_html_output( 'cpt_services', $content, $args ) ) {
trx_addons_cpt_services_load_scripts_front( true );
}
return $content;
}
}
// Return true if it's services page
if ( !function_exists( 'trx_addons_is_services_page' ) ) {
function trx_addons_is_services_page() {
return defined('TRX_ADDONS_CPT_SERVICES_PT')
&& !is_search()
&& (
(trx_addons_is_single() && get_post_type()==TRX_ADDONS_CPT_SERVICES_PT)
|| is_post_type_archive(TRX_ADDONS_CPT_SERVICES_PT)
|| is_tax(TRX_ADDONS_CPT_SERVICES_TAXONOMY)
);
}
}
// Return current page title
if ( !function_exists( 'trx_addons_cpt_services_get_blog_title' ) ) {
add_filter( 'trx_addons_filter_get_blog_title', 'trx_addons_cpt_services_get_blog_title', 20 );
function trx_addons_cpt_services_get_blog_title( $title = '' ) {
if ( defined( 'TRX_ADDONS_CPT_SERVICES_PT' ) ) {
if ( trx_addons_is_single() && get_post_type() == TRX_ADDONS_CPT_SERVICES_PT ) {
$meta = (array)get_post_meta( get_the_ID(), 'trx_addons_options', true );
if ( ! empty( $meta['product'] ) && (int) $meta['product'] > 0 ) {
$title = array(
'text' => get_the_title(),
'class' => 'services_page_title',
'link' => get_permalink( $meta['product'] ),
'link_text' => ! empty( $meta['price'] )
? sprintf( __('Buy for %s', 'trx_addons'), $meta['price'] )
: __('Order now', 'trx_addons')
);
} else {
$url = apply_filters( 'trx_addons_filter_cpt_add_to_cart_url', '' );
if ( ! empty( $url ) && $url != get_permalink() ) {
$title = array(
'text' => get_the_title(),
'class' => 'services_page_title',
'link' => $url,
'link_text' => ! empty( $meta['price'] )
? sprintf( __('Buy for %s', 'trx_addons'), $meta['price'] )
: apply_filters( 'trx_addons_filter_cpt_add_to_cart_text', '' )
);
}
}
/*
} else if ( is_post_type_archive(TRX_ADDONS_CPT_SERVICES_PT) ) {
$obj = get_post_type_object(TRX_ADDONS_CPT_SERVICES_PT);
$title = $obj->labels->all_items;
*/
}
}
return $title;
}
}
// Replace permalink to the custom link (if defined for current post)
if (!function_exists('trx_addons_cpt_services_get_post_link')) {
add_filter( 'trx_addons_filter_get_post_link', 'trx_addons_cpt_services_get_post_link', 10, 1 );
function trx_addons_cpt_services_get_post_link( $link ) {
if ( get_post_type() == TRX_ADDONS_CPT_SERVICES_PT ) {
$meta = (array)get_post_meta( get_the_ID(), 'trx_addons_options', true );
if ( ! empty( $meta['link'] ) ) {
$link = $meta['link'];
}
}
return $link;
}
}
// Replace standard theme templates
//-------------------------------------------------------------
// Change standard single template for services posts
if ( !function_exists( 'trx_addons_cpt_services_single_template' ) ) {
add_filter('single_template', 'trx_addons_cpt_services_single_template');
function trx_addons_cpt_services_single_template($template) {
global $post;
if (trx_addons_is_single() && $post->post_type == TRX_ADDONS_CPT_SERVICES_PT)
$template = trx_addons_get_file_dir(TRX_ADDONS_PLUGIN_CPT . 'services/tpl.single.php');
return $template;
}
}
// Change standard archive template for services posts
if ( !function_exists( 'trx_addons_cpt_services_archive_template' ) ) {
add_filter('archive_template', 'trx_addons_cpt_services_archive_template');
function trx_addons_cpt_services_archive_template( $template ) {
if ( is_post_type_archive(TRX_ADDONS_CPT_SERVICES_PT) )
$template = trx_addons_get_file_dir(TRX_ADDONS_PLUGIN_CPT . 'services/tpl.archive.php');
return $template;
}
}
// Change standard category template for services categories (groups)
if ( !function_exists( 'trx_addons_cpt_services_taxonomy_template' ) ) {
add_filter('taxonomy_template', 'trx_addons_cpt_services_taxonomy_template');
function trx_addons_cpt_services_taxonomy_template( $template ) {
if ( is_tax(TRX_ADDONS_CPT_SERVICES_TAXONOMY) )
$template = trx_addons_get_file_dir(TRX_ADDONS_PLUGIN_CPT . 'services/tpl.archive.php');
return $template;
}
}
// Show related posts
if ( !function_exists( 'trx_addons_cpt_services_related_posts_after_article' ) ) {
add_action('trx_addons_action_after_article', 'trx_addons_cpt_services_related_posts_after_article', 20, 1);
function trx_addons_cpt_services_related_posts_after_article( $mode ) {
if ($mode == 'services.single' && apply_filters('trx_addons_filter_show_related_posts_after_article', true)) {
do_action('trx_addons_action_related_posts', $mode);
}
}
}
if ( !function_exists( 'trx_addons_cpt_services_related_posts_show' ) ) {
add_filter('trx_addons_filter_show_related_posts', 'trx_addons_cpt_services_related_posts_show');
function trx_addons_cpt_services_related_posts_show( $show ) {
if (!$show && trx_addons_is_single() && get_post_type() == TRX_ADDONS_CPT_SERVICES_PT) {
do_action('trx_addons_action_related_posts', 'services.single');
$show = true;
}
return $show;
}
}
if ( !function_exists( 'trx_addons_cpt_services_related_posts' ) ) {
add_action('trx_addons_action_related_posts', 'trx_addons_cpt_services_related_posts', 10, 1);
function trx_addons_cpt_services_related_posts( $mode ) {
if ($mode == 'services.single') {
$trx_addons_related_style = explode('_', trx_addons_get_option('services_style'));
$trx_addons_related_type = $trx_addons_related_style[0];
$trx_addons_related_columns = empty($trx_addons_related_style[1]) ? 1 : max(1, $trx_addons_related_style[1]);
trx_addons_get_template_part( apply_filters( 'trx_addons_filter_posts_related_template', 'templates/tpl.posts-related.php', 'services' ),
'trx_addons_args_related',
apply_filters('trx_addons_filter_args_related', array(
'class' => 'services_page_related sc_services sc_services_'.esc_attr($trx_addons_related_type),
'posts_per_page' => $trx_addons_related_columns,
'columns' => $trx_addons_related_columns,
'template' => TRX_ADDONS_PLUGIN_CPT . 'services/tpl.'.trim($trx_addons_related_type).'-item.php',
'template_args_name' => 'trx_addons_args_sc_services',
'post_type' => TRX_ADDONS_CPT_SERVICES_PT,
'taxonomies' => array(TRX_ADDONS_CPT_SERVICES_TAXONOMY)
)
)
);
}
}
}
// Admin utils
// -----------------------------------------------------------------
// Show <select> with services categories in the admin filters area
if (!function_exists('trx_addons_cpt_services_admin_filters')) {
add_action( 'restrict_manage_posts', 'trx_addons_cpt_services_admin_filters' );
function trx_addons_cpt_services_admin_filters() {
trx_addons_admin_filters(TRX_ADDONS_CPT_SERVICES_PT, TRX_ADDONS_CPT_SERVICES_TAXONOMY);
}
}
// Clear terms cache on the taxonomy save
if (!function_exists('trx_addons_cpt_services_admin_clear_cache')) {
add_action( 'edited_'.TRX_ADDONS_CPT_SERVICES_TAXONOMY, 'trx_addons_cpt_services_admin_clear_cache', 10, 1 );
add_action( 'delete_'.TRX_ADDONS_CPT_SERVICES_TAXONOMY, 'trx_addons_cpt_services_admin_clear_cache', 10, 1 );
add_action( 'created_'.TRX_ADDONS_CPT_SERVICES_TAXONOMY, 'trx_addons_cpt_services_admin_clear_cache', 10, 1 );
function trx_addons_cpt_services_admin_clear_cache( $term_id=0 ) {
trx_addons_admin_clear_cache_terms(TRX_ADDONS_CPT_SERVICES_TAXONOMY);
}
}
// AJAX details
// ------------------------------------------------------------
if ( !function_exists( 'trx_addons_callback_ajax_services_details' ) ) {
add_action('wp_ajax_trx_addons_post_details_in_popup', 'trx_addons_callback_ajax_services_details');
add_action('wp_ajax_nopriv_trx_addons_post_details_in_popup', 'trx_addons_callback_ajax_services_details');
function trx_addons_callback_ajax_services_details() {
trx_addons_verify_nonce();
if (($post_type = $_REQUEST['post_type']) == TRX_ADDONS_CPT_SERVICES_PT) {
$post_id = $_REQUEST['post_id'];
$response = array('error'=>'', 'data' => '');
if (!empty($post_id)) {
global $post;
$post = get_post($post_id);
setup_postdata( $post );
ob_start();
trx_addons_get_template_part(TRX_ADDONS_PLUGIN_CPT . 'services/tpl.details.php');
$response['data'] = ob_get_contents();
ob_end_clean();
} else {
$response['error'] = '<article class="services_page">' . esc_html__('Invalid query parameter!', 'trx_addons') . '</article>';
}
trx_addons_ajax_response( apply_filters( 'trx_addons_filter_post_details_in_popup', $response, 'services' ) );
}
}
}
// Add shortcodes
//----------------------------------------------------------------------------
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_CPT . 'services/services-sc.php';
// Add shortcodes to Elementor
if ( trx_addons_exists_elementor() && function_exists('trx_addons_elm_init') ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_CPT . 'services/services-sc-elementor.php';
}
// Add shortcodes to Gutenberg
if ( trx_addons_exists_gutenberg() && function_exists( 'trx_addons_gutenberg_get_param_id' ) ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_CPT . 'services/services-sc-gutenberg.php';
}
// Add shortcodes to VC
if ( trx_addons_exists_vc() && function_exists( 'trx_addons_vc_add_id_param' ) ) {
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_CPT . 'services/services-sc-vc.php';
}
// Create our widget
require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_CPT . 'services/services-widget.php';