| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/janousekadvokat_cz/www/wp-content/themes/enfold/config-templatebuilder/ |
Upload File : |
<?php
/*function that checks if the avia builder was already included*/
function avia_builder_plugin_enabled()
{
if (class_exists( 'AviaBuilder' )) { return true; }
return false;
}
//set the folder that contains the shortcodes
function add_shortcode_folder($paths)
{
$paths = array(dirname(__FILE__) ."/avia-shortcodes/");
return $paths;
}
add_filter('avia_load_shortcodes','add_shortcode_folder');
//set the folder that contains assets like js and imgs
function avia_builder_plugins_url($url)
{
$url = get_template_directory_uri()."/config-templatebuilder/";
return $url;
}
add_filter('avia_builder_plugins_url','avia_builder_plugins_url');
//check if the builder was included via plugin. if not include it now via theme
if(!avia_builder_plugin_enabled())
{
require_once( dirname(__FILE__) . '/avia-template-builder/php/template-builder.class.php' );
//define( 'AVIA_BUILDER_TEXTDOMAIN', 'avia_framework' );
$builder = Avia_Builder();
//activates the builder safe mode. this hides the shortcodes that are built with the content builder from the default wordpress content editor.
//can also be set to "debug", to show shortcode content and extra shortcode container field
$builder->setMode( 'safe' );
//set all elements that are fullwidth and need to interact with the section shortcode. av_section is included automatically
$builder->setFullwidthElements( array('av_revolutionslider', 'av_layerslider' ,'av_slideshow_full', 'av_fullscreen', 'av_masonry_entries','av_masonry_gallery', 'av_google_map', 'av_slideshow_accordion', 'av_image_hotspot', 'av_portfolio', 'av_submenu', 'av_layout_row', 'av_button_big','av_feature_image_slider','av_tab_section','av_horizontal_gallery','av_postcontent') );
}