Critical Failure caught at controller
- →$e Exception (7) "Table 'location' does not contain ID '3': not found in database."
- Properties (7)
- Available methods (11)
- toString
- protected code -> integer 0
- →protected file -> string (61) "/home/scantou2/public_html/legacy/include/lib/Tusk/DB/Dmo.inc"
- File (22.48KB)
-rw-r--r-- 1077 1078 22.48KB Sep 03 2019 /home/scantou2/public_html/legacy/include/lib/Tusk/DB/Dmo.inc
- protected line -> integer 235
- protected message -> string (64) "Table 'location' does not contain ID '3': not found in database."
- private previous -> null
- private string -> string (0) ""
- →private trace -> Debug Backtrace (39)
- →<ROOT>/dw/src/controller/hotelsearch.php:14 Dmo->__construct($id = null, $relations = false)
- Source
- Arguments
if(isset($_REQUEST['co'])) { $this->defaultRecord = new \Region($_REQUEST['co']); } else if(isset($_REQUEST['country'])) { $this->defaultRecord = new \Region($_REQUEST['country']); } else if(isset($_REQUEST['ci'])) { $this->defaultRecord = new \Location($_REQUEST['ci']); } else if(isset($_REQUEST['city'])) {
$this->defaultRecord = new \Location($_REQUEST['city']);} if(! $this->defaultRecord || ! $this->defaultRecord->id) { $this->redirect(PAGENOTFOUND); } } function _get_content() { switch (get_class($this->defaultRecord)) {- $id => string (1) "3"
- →<ROOT>/dw/vendor/dwightframework/main/dw/_controller.php:336 controller\hotelsearch->__construct()
- Source
list($controller, $action) = \dw\_controller::getActiveControllerAction(); $controllerClass = $calledClass::s_getControllerClass($controller); $isError = false; try { if(! class_exists($controllerClass)) { $controllerClass = $calledClass; }
$controllerObj = new $controllerClass();$actionConfig = \dw\props::s_arrayget($controllerObj->actions, $action, []); if(! method_exists($controllerClass, "action_$action")) { $action = "run"; } $enabled = \dw\props::s_arrayget($actionConfig, "enabled", true); if($enabled === true) { self::setbodyclass();
- →<ROOT>/dw/vendor/dwightframework/wordpress/dwwp/wordpress.php:283 dw\_controller::controllerinit()
- Source
} static function WPSHORTCODE_dwcontroller($parms = []) { if(is_admin()) { return; } \dwwp\wordpress::_shortcode_init($parms); try {
\dw\_controller::controllerinit();} catch(\Exception $e) { \dw\app::s_handle_error($e); } return \dwwp\wordpress::_shortcode_finish(); } static function WPSHORTCODE_dwpage($parms = []) { if(is_admin()) {
- →<ROOT>/dw/vendor/dwightframework/wordpress/dwwp/wordpress.php:272 dwwp\wordpress::WPSHORTCODE_dwcontroller($parms = array())
- Source
- Arguments
} } } static function WPSHORTCODE_dwframework($parms = []) { $gets = \dw\props::s_get_init() + $parms; \dw\props::s_get_init($gets); if(\dw\props::s_get_val("controller") && \dw\props::s_get_val("action")) {
return \dwwp\wordpress::WPSHORTCODE_dwcontroller($parms);} else if(\dw\props::s_get_val("page")) { return \dwwp\wordpress::WPSHORTCODE_dwpage($parms); } } static function WPSHORTCODE_dwcontroller($parms = []) { if(is_admin()) { return;- →$parms => array (2)
- controller => string (11) "hotelsearch"
- action => string (3) "run"
- →<ROOT>/wp-includes/shortcodes.php:355 dwwp\wordpress::WPSHORTCODE_dwframework($parms = array())
- Source
- Arguments (3)
$return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m ); if ( false !== $return ) { return $return; } $content = isset( $m[5] ) ? $m[5] : null;
$output = $m[1] . call_user_func( $shortcode_tags[ $tag ], $attr, $content, $tag ) . $m[6];/** * Filters the output created by a shortcode callback. * * @since 4.7.0 * * @param string $output Shortcode output.- →$parms => array (2)
- controller => string (11) "hotelsearch"
- action => string (3) "run"
- 1 => string (0) ""
- 2 => string (11) "dwframework"
- →PHP internal call do_shortcode_tag($m)
- Arguments
- →$m => array (7)
- 0 => string (47) "[dwframework controller=hotelsearch action=run]"
- 1 => string (0) ""
- 2 => string (11) "dwframework"
- 3 => string (34) " controller=hotelsearch action=run"
- 4 => string (0) ""
- 5 => string (0) ""
- 6 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:227 preg_replace_callback($regex, $callback, $subject, $limit, &$count, $flags)
- Source
- Arguments (3)
if ( empty( $tagnames ) ) { return $content; } $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ); $pattern = get_shortcode_regex( $tagnames );
$content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content );// Always restore square braces so we don't break things like <!--[if IE ]>. $content = unescape_invalid_shortcodes( $content ); return $content; }- →$regex => string (128) "/\[(\[?)(dwframework)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([...
/\[(\[?)(dwframework)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/
- $callback => string (16) "do_shortcode_tag"
- $subject => string (47) "[dwframework controller=hotelsearch action=run]"
- →<ROOT>/wp-content/themes/Divi/includes/builder/class-et-builder-element.php:3012 do_shortcode($content, $ignore_html = false)
- Source
- Arguments
if ( $this->use_raw_content ) { $content = et_builder_convert_line_breaks( et_builder_replace_code_content_entities( $content ) ); } if ( ! ( isset( $this->is_structure_element ) && $this->is_structure_element ) ) { $content = et_pb_fix_shortcodes( $content, $this->use_raw_content ); $content = et_maybe_enable_embed_shortcode( $content, true );
$this->content = do_shortcode( $content );} else { $this->content = ''; } $this->props['content'] = $this->content; } // Restart classname on shortcode callback. Module class is only called once, not on every- $content => string (47) "[dwframework controller=hotelsearch action=run]"
- →<ROOT>/wp-includes/shortcodes.php:355 ET_Builder_Element->_render($attrs, $content, $render_slug, $parent_address = '', $global_parent = '', $global_parent_type = '', $parent_type = '', $theme_builder_area = '')
- Source
- Arguments (3)
$return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m ); if ( false !== $return ) { return $return; } $content = isset( $m[5] ) ? $m[5] : null;
$output = $m[1] . call_user_func( $shortcode_tags[ $tag ], $attr, $content, $tag ) . $m[6];/** * Filters the output created by a shortcode callback. * * @since 4.7.0 * * @param string $output Shortcode output.- →$attrs => array (2)
- _builder_version => string (6) "3.22.7"
- z_index_tablet => string (3) "500"
- $content => string (47) "[dwframework controller=hotelsearch action=run]"
- $render_slug => string (10) "et_pb_code"
- →PHP internal call do_shortcode_tag($m)
- Arguments
- →$m => array (7)
- →0 => string (119) "[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework control...
[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code]
- 1 => string (0) ""
- 2 => string (10) "et_pb_code"
- 3 => string (47) " _builder_version="3.22.7" z_index_tablet="500""
- 4 => string (0) ""
- 5 => string (47) "[dwframework controller=hotelsearch action=run]"
- 6 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:227 preg_replace_callback($regex, $callback, $subject, $limit, &$count, $flags)
- Source
- Arguments (3)
if ( empty( $tagnames ) ) { return $content; } $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ); $pattern = get_shortcode_regex( $tagnames );
$content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content );// Always restore square braces so we don't break things like <!--[if IE ]>. $content = unescape_invalid_shortcodes( $content ); return $content; }- →$regex => string (139) "/\[(\[?)(dwframework|et_pb_code)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/...
/\[(\[?)(dwframework|et_pb_code)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/
- $callback => string (16) "do_shortcode_tag"
- →$subject => string (119) "[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework control...
[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code]
- →<ROOT>/wp-content/themes/Divi/includes/builder/main-structure-elements.php:3784 do_shortcode($content, $ignore_html = false)
- Source
- Arguments
// Module classname in column has to be contained in variable BEFORE content is being parsed // as shortcode because column and column inner use the same ET_Builder_Column's render // classname doesn't work in nested situation because each called module doesn't have its own class init. $module_classname = $this->module_classname( $function_name ); // Inner content shortcode parsing has to be done after all classname addition/removal.
$inner_content = do_shortcode( et_pb_fix_shortcodes( $content ) );// Inner content dependant class in column shouldn't use add_classname/remove_classname method. $content_dependent_classname = '' === trim( $inner_content ) ? ' et_pb_column_empty' : ''; if ( $is_specialty_column ) { $pattern_args = array( 'background_enable_pattern_style' => $enable_pattern_style,- →$content => string (119) "[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework control...
[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code]
- →<ROOT>/wp-content/themes/Divi/includes/builder/class-et-builder-element.php:3331 ET_Builder_Column->render($atts, $content, $function_name)
- Source
- Arguments (8)
} } $this->is_rendering = true; $render_method = $et_fb_processing_shortcode_object ? 'render_as_builder_data' : 'render'; // Render the module as we normally would.
$output = $this->{$render_method}( $attrs, $content, $render_slug, $parent_address, $global_parent, $global_parent_type, $parent_type, $theme_builder_area );/** * Filters every rendered module output for processing "Display Conditions" option group. * * @since 4.13.1 * * @param string $output HTML output of the rendered module.- →$atts => array (5)
- type => string (3) "4_4"
- saved_specialty_column_type => string (3) "3_4"
- _builder_version => string (6) "3.0.47"
- custom_padding__hover => string (3) "|||"
- custom_padding => string (3) "|||"
- →$content => string (119) "[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework control...
[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code]
- $function_name => string (18) "et_pb_column_inner"
- 3 => string (0) ""
- 4 => string (0) ""
- 5 => string (0) ""
- 6 => string (0) ""
- 7 => string (0) ""
- →<ROOT>/wp-content/themes/Divi/includes/builder/class-et-builder-element.php:2747 ET_Builder_Element->_render($attrs, $content, $render_slug, $parent_address = '', $global_parent = '', $global_parent_type = '', $parent_type = '', $theme_builder_area = '')
- Source
- Arguments (3)
// props being messed up between renders so we have to clone the // base instance every time we try to render while the base // instance is still rendering. $clone = clone $this; $clone->is_rendering = false; // @phpcs:ignore Generic.PHP.ForbiddenFunctions.Found
return call_user_func_array( array( $clone, '_render' ), func_get_args() );} self::set_order_class( $render_slug ); $this->_maybe_rebuild_option_template(); $attrs = $this->_maybe_add_global_presets_settings( $attrs, $render_slug );- →$attrs => array (5)
- type => string (3) "4_4"
- saved_specialty_column_type => string (3) "3_4"
- _builder_version => string (6) "3.0.47"
- custom_padding__hover => string (3) "|||"
- custom_padding => string (3) "|||"
- →$content => string (119) "[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework control...
[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code]
- $render_slug => string (18) "et_pb_column_inner"
- →<ROOT>/wp-includes/shortcodes.php:355 ET_Builder_Element->_render($attrs, $content, $render_slug, $parent_address = '', $global_parent = '', $global_parent_type = '', $parent_type = '', $theme_builder_area = '')
- Source
- Arguments (3)
$return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m ); if ( false !== $return ) { return $return; } $content = isset( $m[5] ) ? $m[5] : null;
$output = $m[1] . call_user_func( $shortcode_tags[ $tag ], $attr, $content, $tag ) . $m[6];/** * Filters the output created by a shortcode callback. * * @since 4.7.0 * * @param string $output Shortcode output.- →$attrs => array (5)
- type => string (3) "4_4"
- saved_specialty_column_type => string (3) "3_4"
- _builder_version => string (6) "3.0.47"
- custom_padding__hover => string (3) "|||"
- custom_padding => string (3) "|||"
- →$content => string (119) "[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework control...
[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code]
- $render_slug => string (18) "et_pb_column_inner"
- →PHP internal call do_shortcode_tag($m)
- Arguments
- →$m => array (7)
- →0 => string (314) "[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_versi...
[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner]
- 1 => string (0) ""
- 2 => string (18) "et_pb_column_inner"
- →3 => string (154) " type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_...
type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"
- 4 => string (0) ""
- →5 => string (119) "[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework control...
[et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code]
- 6 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:227 preg_replace_callback($regex, $callback, $subject, $limit, &$count, $flags)
- Source
- Arguments (3)
if ( empty( $tagnames ) ) { return $content; } $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ); $pattern = get_shortcode_regex( $tagnames );
$content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content );// Always restore square braces so we don't break things like <!--[if IE ]>. $content = unescape_invalid_shortcodes( $content ); return $content; }- →$regex => string (158) "/\[(\[?)(dwframework|et_pb_code|et_pb_column_inner)(?![\w-])([^\]\/]*(?:\/(?!\]...
/\[(\[?)(dwframework|et_pb_code|et_pb_column_inner)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/
- $callback => string (16) "do_shortcode_tag"
- →$subject => string (314) "[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_versi...
[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner]
- →<ROOT>/wp-content/themes/Divi/includes/builder/main-structure-elements.php:2789 do_shortcode($content, $ignore_html = false)
- Source
- Arguments
} // Save module classes into variable BEFORE processing the content with `do_shortcode()` // Otherwise order classes messed up with internal rows if exist. $module_classes = $this->module_classname( $function_name ); // Inner content shortcode parsing has to be done after all classname addition/removal.
$inner_content = do_shortcode( et_pb_fix_shortcodes( $content ) );$content_dependent_classname = '' === trim( $inner_content ) ? ' et_pb_row_empty' : ''; // reset the global column settings to make sure they are not affected by internal content. $et_pb_all_column_settings_inner = $et_pb_all_column_settings_backup; $output = sprintf( '<div%4$s class="%2$s%7$s"%8$s>- →$content => string (314) "[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_versi...
[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner]
- →<ROOT>/wp-content/themes/Divi/includes/builder/class-et-builder-element.php:3331 ET_Builder_Row_Inner->render($atts, $content, $function_name)
- Source
- Arguments (8)
} } $this->is_rendering = true; $render_method = $et_fb_processing_shortcode_object ? 'render_as_builder_data' : 'render'; // Render the module as we normally would.
$output = $this->{$render_method}( $attrs, $content, $render_slug, $parent_address, $global_parent, $global_parent_type, $parent_type, $theme_builder_area );/** * Filters every rendered module output for processing "Display Conditions" option group. * * @since 4.13.1 * * @param string $output HTML output of the rendered module.- →$atts => array (2)
- admin_label => string (3) "Row"
- _builder_version => string (6) "3.0.47"
- →$content => string (314) "[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_versi...
[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner]
- $function_name => string (15) "et_pb_row_inner"
- 3 => string (0) ""
- 4 => string (0) ""
- 5 => string (0) ""
- 6 => string (0) ""
- 7 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:355 ET_Builder_Element->_render($attrs, $content, $render_slug, $parent_address = '', $global_parent = '', $global_parent_type = '', $parent_type = '', $theme_builder_area = '')
- Source
- Arguments (3)
$return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m ); if ( false !== $return ) { return $return; } $content = isset( $m[5] ) ? $m[5] : null;
$output = $m[1] . call_user_func( $shortcode_tags[ $tag ], $attr, $content, $tag ) . $m[6];/** * Filters the output created by a shortcode callback. * * @since 4.7.0 * * @param string $output Shortcode output.- →$attrs => array (2)
- admin_label => string (3) "Row"
- _builder_version => string (6) "3.0.47"
- →$content => string (314) "[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_versi...
[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner]
- $render_slug => string (15) "et_pb_row_inner"
- →PHP internal call do_shortcode_tag($m)
- Arguments
- →$m => array (7)
- →0 => string (393) "[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inne...
[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner]
- 1 => string (0) ""
- 2 => string (15) "et_pb_row_inner"
- 3 => string (44) " admin_label="Row" _builder_version="3.0.47""
- 4 => string (0) ""
- →5 => string (314) "[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_versi...
[et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner]
- 6 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:227 preg_replace_callback($regex, $callback, $subject, $limit, &$count, $flags)
- Source
- Arguments (3)
if ( empty( $tagnames ) ) { return $content; } $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ); $pattern = get_shortcode_regex( $tagnames );
$content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content );// Always restore square braces so we don't break things like <!--[if IE ]>. $content = unescape_invalid_shortcodes( $content ); return $content; }- →$regex => string (174) "/\[(\[?)(dwframework|et_pb_code|et_pb_row_inner|et_pb_column_inner)(?![\w-])([^...
/\[(\[?)(dwframework|et_pb_code|et_pb_row_inner|et_pb_column_inner)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/
- $callback => string (16) "do_shortcode_tag"
- →$subject => string (393) "[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inne...
[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner]
- →<ROOT>/wp-content/themes/Divi/includes/builder/main-structure-elements.php:3784 do_shortcode($content, $ignore_html = false)
- Source
- Arguments
// Module classname in column has to be contained in variable BEFORE content is being parsed // as shortcode because column and column inner use the same ET_Builder_Column's render // classname doesn't work in nested situation because each called module doesn't have its own class init. $module_classname = $this->module_classname( $function_name ); // Inner content shortcode parsing has to be done after all classname addition/removal.
$inner_content = do_shortcode( et_pb_fix_shortcodes( $content ) );// Inner content dependant class in column shouldn't use add_classname/remove_classname method. $content_dependent_classname = '' === trim( $inner_content ) ? ' et_pb_column_empty' : ''; if ( $is_specialty_column ) { $pattern_args = array( 'background_enable_pattern_style' => $enable_pattern_style,- →$content => string (393) "[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inne...
[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner]
- →<ROOT>/wp-content/themes/Divi/includes/builder/class-et-builder-element.php:3331 ET_Builder_Column->render($atts, $content, $function_name)
- Source
- Arguments (8)
} } $this->is_rendering = true; $render_method = $et_fb_processing_shortcode_object ? 'render_as_builder_data' : 'render'; // Render the module as we normally would.
$output = $this->{$render_method}( $attrs, $content, $render_slug, $parent_address, $global_parent, $global_parent_type, $parent_type, $theme_builder_area );/** * Filters every rendered module output for processing "Display Conditions" option group. * * @since 4.13.1 * * @param string $output HTML output of the rendered module.- →$atts => array (2)
- type => string (3) "3_4"
- specialty_columns => string (1) "3"
- →$content => string (393) "[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inne...
[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner]
- $function_name => string (12) "et_pb_column"
- 3 => string (0) ""
- 4 => string (0) ""
- 5 => string (0) ""
- 6 => string (0) ""
- 7 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:355 ET_Builder_Element->_render($attrs, $content, $render_slug, $parent_address = '', $global_parent = '', $global_parent_type = '', $parent_type = '', $theme_builder_area = '')
- Source
- Arguments (3)
$return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m ); if ( false !== $return ) { return $return; } $content = isset( $m[5] ) ? $m[5] : null;
$output = $m[1] . call_user_func( $shortcode_tags[ $tag ], $attr, $content, $tag ) . $m[6];/** * Filters the output created by a shortcode callback. * * @since 4.7.0 * * @param string $output Shortcode output.- →$attrs => array (2)
- type => string (3) "3_4"
- specialty_columns => string (1) "3"
- →$content => string (393) "[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inne...
[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner]
- $render_slug => string (12) "et_pb_column"
- →PHP internal call do_shortcode_tag($m)
- Arguments
- →$m => array (7)
- →0 => string (455) "[et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Ro...
[et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column]
- 1 => string (0) ""
- 2 => string (12) "et_pb_column"
- 3 => string (33) " type="3_4" specialty_columns="3""
- 4 => string (0) ""
- →5 => string (393) "[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inne...
[et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner]
- 6 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:227 preg_replace_callback($regex, $callback, $subject, $limit, &$count, $flags)
- Source
- Arguments (3)
if ( empty( $tagnames ) ) { return $content; } $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ); $pattern = get_shortcode_regex( $tagnames );
$content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content );// Always restore square braces so we don't break things like <!--[if IE ]>. $content = unescape_invalid_shortcodes( $content ); return $content; }- →$regex => string (201) "/\[(\[?)(dwframework|et_pb_code|et_pb_sidebar|et_pb_row_inner|et_pb_column|et_p...
/\[(\[?)(dwframework|et_pb_code|et_pb_sidebar|et_pb_row_inner|et_pb_column|et_pb_column_inner)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/
- $callback => string (16) "do_shortcode_tag"
- →$subject => string (1906) "[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" sh...
[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column]
- →<ROOT>/wp-content/themes/Divi/includes/builder/main-structure-elements.php:1606 do_shortcode($content, $ignore_html = false)
- Source
- Arguments
%12$s %13$s %5$s %1$s %6$s %10$s </div>',
do_shortcode( et_pb_fix_shortcodes( $content ) ), // 1$background_video, // 2 $module_classes, // 3 $this->module_id(), // 4 ( 'on' === $specialty ? sprintf( '<div class="et_pb_row%1$s"%2$s>', $gutter_class, et_core_esc_previously( $gutter_hover_data ) ) : '' ), // 5 ( 'on' === $specialty ? '</div>' : '' ), // 6- →$content => string (1906) "[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" sh...
[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column]
- →<ROOT>/wp-content/themes/Divi/includes/builder/class-et-builder-element.php:3331 ET_Builder_Section->render($atts, $content, $function_name)
- Source
- Arguments (8)
} } $this->is_rendering = true; $render_method = $et_fb_processing_shortcode_object ? 'render_as_builder_data' : 'render'; // Render the module as we normally would.
$output = $this->{$render_method}( $attrs, $content, $render_slug, $parent_address, $global_parent, $global_parent_type, $parent_type, $theme_builder_area );/** * Filters every rendered module output for processing "Display Conditions" option group. * * @since 4.13.1 * * @param string $output HTML output of the rendered module.- →$atts => array (15)
- bb_built => string (1) "1"
- specialty => string (2) "on"
- _builder_version => string (6) "3.25.4"
- inner_max_width => string (4) "none"
- custom_padding => string (5) "0px||"
- prev_background_color => string (7) "#000000"
- →next_background_color => string (7) "#141414"
#141414 rgb(20, 20, 20) hsl(0, 0%, 8%)
- use_custom_gutter => string (2) "on"
- gutter_width => string (1) "2"
- box_shadow_horizontal_tablet => string (3) "0px"
- box_shadow_vertical_tablet => string (3) "0px"
- box_shadow_blur_tablet => string (4) "40px"
- box_shadow_spread_tablet => string (3) "0px"
- z_index_tablet => string (3) "500"
- module_class_1 => string (7) "col-260"
- →$content => string (1906) "[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" sh...
[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column]
- $function_name => string (13) "et_pb_section"
- 3 => string (0) ""
- 4 => string (0) ""
- 5 => string (0) ""
- 6 => string (0) ""
- 7 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:355 ET_Builder_Element->_render($attrs, $content, $render_slug, $parent_address = '', $global_parent = '', $global_parent_type = '', $parent_type = '', $theme_builder_area = '')
- Source
- Arguments (3)
$return = apply_filters( 'pre_do_shortcode_tag', false, $tag, $attr, $m ); if ( false !== $return ) { return $return; } $content = isset( $m[5] ) ? $m[5] : null;
$output = $m[1] . call_user_func( $shortcode_tags[ $tag ], $attr, $content, $tag ) . $m[6];/** * Filters the output created by a shortcode callback. * * @since 4.7.0 * * @param string $output Shortcode output.- →$attrs => array (15)
- bb_built => string (1) "1"
- specialty => string (2) "on"
- _builder_version => string (6) "3.25.4"
- inner_max_width => string (4) "none"
- custom_padding => string (5) "0px||"
- prev_background_color => string (7) "#000000"
- →next_background_color => string (7) "#141414"
#141414 rgb(20, 20, 20) hsl(0, 0%, 8%)
- use_custom_gutter => string (2) "on"
- gutter_width => string (1) "2"
- box_shadow_horizontal_tablet => string (3) "0px"
- box_shadow_vertical_tablet => string (3) "0px"
- box_shadow_blur_tablet => string (4) "40px"
- box_shadow_spread_tablet => string (3) "0px"
- z_index_tablet => string (3) "500"
- module_class_1 => string (7) "col-260"
- →$content => string (1906) "[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" sh...
[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column]
- $render_slug => string (13) "et_pb_section"
- →PHP internal call do_shortcode_tag($m)
- Arguments
- →$m => array (7)
- →0 => string (2316) "[et_pb_section bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_...
[et_pb_section bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_width="none" custom_padding="0px||" prev_background_color="#000000" next_background_color="#141414" use_custom_gutter="on" gutter_width="2" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" z_index_tablet="500" module_class_1="col-260"][et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]
- 1 => string (0) ""
- 2 => string (13) "et_pb_section"
- →3 => string (379) " bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_width="none" c...
bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_width="none" custom_padding="0px||" prev_background_color="#000000" next_background_color="#141414" use_custom_gutter="on" gutter_width="2" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" z_index_tablet="500" module_class_1="col-260"
- 4 => string (0) ""
- →5 => string (1906) "[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" sh...
[et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column]
- 6 => string (0) ""
- →<ROOT>/wp-includes/shortcodes.php:227 preg_replace_callback($regex, $callback, $subject, $limit, &$count, $flags)
- Source
- Arguments (3)
if ( empty( $tagnames ) ) { return $content; } $content = do_shortcodes_in_html_tags( $content, $ignore_html, $tagnames ); $pattern = get_shortcode_regex( $tagnames );
$content = preg_replace_callback( "/$pattern/", 'do_shortcode_tag', $content );// Always restore square braces so we don't break things like <!--[if IE ]>. $content = unescape_invalid_shortcodes( $content ); return $content; }- →$regex => string (347) "/\[(\[?)(searchtourtype|searchdestination|searchcategorycheckbox|searchcitylist...
/\[(\[?)(searchtourtype|searchdestination|searchcategorycheckbox|searchcitylist|searchcountrylist|dwframework|et_pb_code|et_pb_sidebar|et_pb_text|et_pb_fullwidth_image|et_pb_section|et_pb_row|et_pb_row_inner|et_pb_column|et_pb_column_inner)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/
- $callback => string (16) "do_shortcode_tag"
- →$subject => UTF-8 string (21131) "<div class="et-l et-l--post"> <div class="et_builder_inner_content et_pb_gutter...
<div class="et-l et-l--post"> <div class="et_builder_inner_content et_pb_gutters3"> [et_pb_section bb_built="1" _builder_version="3.22.7" background_color="#000000" custom_padding="0px||0px|" z_index_tablet="500" next_background_color="#ffffff" global_module="1411"][et_pb_row global_parent="1411" use_custom_gutter="on" gutter_width="2" custom_padding="5px||5px|" custom_margin="||0px|" module_class="rh-quicksearch" _builder_version="3.25.3" background_size="initial" background_position="top_left" background_repeat="repeat" custom_margin_last_edited="on|phone" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_4,1_4,1_4,1_4"][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" text_orientation="center" custom_padding="8px||0px|" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone" custom_padding_last_edited="off|tablet"]<form action="/productsearch/" method="get"><!-- [et_pb_line_break_holder] --></p> <h2 style="color:white;padding-bottom: 0 !important;margin-bottom: 0 !important;">TOUR/CRUISE<!–- [et_pb_br_holder] -–> SEARCH</h2>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone"]<span style="color:white;font-weight:700;">Choose A Category</span><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --></p> <div style="margin: 5px 0 0 0;">[searchtourtype]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<span style="color:white;font-weight:700;">Choose A Country</span><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --></p> <div style="margin: 5px 0 0 0;">[searchdestination]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<input type="button" class="button2" onclick="search.open_asearch()" value="Customize Your Search"><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="submit" class="button" value="SUBMIT"><!-- [et_pb_line_break_holder] --></form>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row global_parent="1411" custom_padding="0px||0px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" custom_css_main_element=" z-index: 10;"][et_pb_column type="4_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code admin_label="Custom Search" global_parent="1411" _builder_version="3.25.3" z_index_tablet="500"]<form action="/productsearch/" method="get" id="advanced_search"><!-- [et_pb_line_break_holder] --> </p> <h2>Customized Search</h2> <p><!-- [et_pb_line_break_holder] --> <input id="closesearch" type="button" class="button" onclick="search.close_asearch()" value="Close"><!-- [et_pb_line_break_holder] --> </p> <h4>Select Where You Want To Travel</h4> <p><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="co" checked onclick="search.show_co()">Search By Country<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="ci" onclick="search.show_ci()">Search By Town or City<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> </p> <div id="co_search"><!-- [et_pb_line_break_holder] -->[searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> [searchcountrylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> </p> <div id="ci_search" style="display: none"><!-- [et_pb_line_break_holder] -->[searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> <!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="0" checked> Visit ALL Selections (less results)<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="1"> Visit ANY Selection (more results)<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </p> <h4>Select the Types of Vacations You Are Interested In</h4> <p><!-- [et_pb_line_break_holder] --> [searchcategorycheckbox]<!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" checked="" onclick="search.show_flex()"> Flexible Dates<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" onclick="search.show_exact()"> Exact Date<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </p> <div id="flex_box"><!-- [et_pb_line_break_holder] --><input type="text" name="start_date" id="start_date" value="" maxlength="8" class="datepicker"> and <input type="text" name="end_date" id="end_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> </p> <div id="exact_box" style="display: none"><!-- [et_pb_line_break_holder] --> Leaving On<!-- [et_pb_line_break_holder] --> <input type="text" name="exact_date" id="exact_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> <input type="submit" value="Submit" name="submit" alt="Submit" class="redbutton"><!-- [et_pb_line_break_holder] --></form> <p><!-- [et_pb_line_break_holder] --></p> <div class="site_overlay"></div>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built="1" fullwidth="on" _builder_version="3.22.3" prev_background_color="#000000" next_background_color="#000000"][et_pb_fullwidth_image src="https://www.scantours.net/wp-content/uploads/2019/05/269692591.jpg" _builder_version="3.24.1" z_index_tablet="500" /][/et_pb_section][et_pb_section bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_width="none" custom_padding="0px||" prev_background_color="#000000" next_background_color="#141414" use_custom_gutter="on" gutter_width="2" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" z_index_tablet="500" module_class_1="col-260"][et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built="1" module_id="before-footer" _builder_version="3.22.4" background_color="#141414" custom_padding="10px||0px|" z_index_tablet="500" prev_background_color="#ffffff" global_module="954"][et_pb_row global_parent="954" custom_padding="5px||5px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_2,1_2"][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px"]<h4><i class="fas fa-phone"></i> Phone: <a href="tel:1-800-223-7226">1-800-223-7226</a></h4>[/et_pb_text][/et_pb_column][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" text_text_shadow_horizontal_length="text_text_shadow_style,%91object Object%93" text_text_shadow_vertical_length="text_text_shadow_style,%91object Object%93" text_text_shadow_blur_strength="text_text_shadow_style,%91object Object%93" link_text_shadow_horizontal_length="link_text_shadow_style,%91object Object%93" link_text_shadow_vertical_length="link_text_shadow_style,%91object Object%93" link_text_shadow_blur_strength="link_text_shadow_style,%91object Object%93" ul_text_shadow_horizontal_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_vertical_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_blur_strength="ul_text_shadow_style,%91object Object%93" ol_text_shadow_horizontal_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_vertical_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_blur_strength="ol_text_shadow_style,%91object Object%93" quote_text_shadow_horizontal_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_vertical_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_blur_strength="quote_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_2_text_shadow_horizontal_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_vertical_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_blur_strength="header_2_text_shadow_style,%91object Object%93" header_3_text_shadow_horizontal_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_vertical_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_blur_strength="header_3_text_shadow_style,%91object Object%93" header_4_text_shadow_horizontal_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_vertical_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_blur_strength="header_4_text_shadow_style,%91object Object%93" header_5_text_shadow_horizontal_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_vertical_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_blur_strength="header_5_text_shadow_style,%91object Object%93" header_6_text_shadow_horizontal_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_vertical_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_blur_strength="header_6_text_shadow_style,%91object Object%93"]<h4><i class="fas fa-envelope"></i> Email: <a href="mailto:info@scantours.net">info@scantours.net</a></h4>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section] </div> </div>
- →<ROOT>/wp-includes/class-wp-hook.php:308 do_shortcode($content, $ignore_html = false)
- Source
- Arguments
$args[0] = $value; } // Avoid the array_slice() if possible. if ( 0 == $the_['accepted_args'] ) { $value = call_user_func( $the_['function'] ); } elseif ( $the_['accepted_args'] >= $num_args ) {
$value = call_user_func_array( $the_['function'], $args );} else { $value = call_user_func_array( $the_['function'], array_slice( $args, 0, (int) $the_['accepted_args'] ) ); } } } while ( false !== next( $this->iterations[ $nesting_level ] ) ); unset( $this->iterations[ $nesting_level ] );- →$content => UTF-8 string (21131) "<div class="et-l et-l--post"> <div class="et_builder_inner_content et_pb_gutter...
<div class="et-l et-l--post"> <div class="et_builder_inner_content et_pb_gutters3"> [et_pb_section bb_built="1" _builder_version="3.22.7" background_color="#000000" custom_padding="0px||0px|" z_index_tablet="500" next_background_color="#ffffff" global_module="1411"][et_pb_row global_parent="1411" use_custom_gutter="on" gutter_width="2" custom_padding="5px||5px|" custom_margin="||0px|" module_class="rh-quicksearch" _builder_version="3.25.3" background_size="initial" background_position="top_left" background_repeat="repeat" custom_margin_last_edited="on|phone" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_4,1_4,1_4,1_4"][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" text_orientation="center" custom_padding="8px||0px|" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone" custom_padding_last_edited="off|tablet"]<form action="/productsearch/" method="get"><!-- [et_pb_line_break_holder] --></p> <h2 style="color:white;padding-bottom: 0 !important;margin-bottom: 0 !important;">TOUR/CRUISE<!–- [et_pb_br_holder] -–> SEARCH</h2>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone"]<span style="color:white;font-weight:700;">Choose A Category</span><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --></p> <div style="margin: 5px 0 0 0;">[searchtourtype]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<span style="color:white;font-weight:700;">Choose A Country</span><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --></p> <div style="margin: 5px 0 0 0;">[searchdestination]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<input type="button" class="button2" onclick="search.open_asearch()" value="Customize Your Search"><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="submit" class="button" value="SUBMIT"><!-- [et_pb_line_break_holder] --></form>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row global_parent="1411" custom_padding="0px||0px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" custom_css_main_element=" z-index: 10;"][et_pb_column type="4_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code admin_label="Custom Search" global_parent="1411" _builder_version="3.25.3" z_index_tablet="500"]<form action="/productsearch/" method="get" id="advanced_search"><!-- [et_pb_line_break_holder] --> </p> <h2>Customized Search</h2> <p><!-- [et_pb_line_break_holder] --> <input id="closesearch" type="button" class="button" onclick="search.close_asearch()" value="Close"><!-- [et_pb_line_break_holder] --> </p> <h4>Select Where You Want To Travel</h4> <p><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="co" checked onclick="search.show_co()">Search By Country<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="ci" onclick="search.show_ci()">Search By Town or City<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> </p> <div id="co_search"><!-- [et_pb_line_break_holder] -->[searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> [searchcountrylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> </p> <div id="ci_search" style="display: none"><!-- [et_pb_line_break_holder] -->[searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> <!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="0" checked> Visit ALL Selections (less results)<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="1"> Visit ANY Selection (more results)<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </p> <h4>Select the Types of Vacations You Are Interested In</h4> <p><!-- [et_pb_line_break_holder] --> [searchcategorycheckbox]<!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" checked="" onclick="search.show_flex()"> Flexible Dates<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" onclick="search.show_exact()"> Exact Date<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </p> <div id="flex_box"><!-- [et_pb_line_break_holder] --><input type="text" name="start_date" id="start_date" value="" maxlength="8" class="datepicker"> and <input type="text" name="end_date" id="end_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> </p> <div id="exact_box" style="display: none"><!-- [et_pb_line_break_holder] --> Leaving On<!-- [et_pb_line_break_holder] --> <input type="text" name="exact_date" id="exact_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> <input type="submit" value="Submit" name="submit" alt="Submit" class="redbutton"><!-- [et_pb_line_break_holder] --></form> <p><!-- [et_pb_line_break_holder] --></p> <div class="site_overlay"></div>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built="1" fullwidth="on" _builder_version="3.22.3" prev_background_color="#000000" next_background_color="#000000"][et_pb_fullwidth_image src="https://www.scantours.net/wp-content/uploads/2019/05/269692591.jpg" _builder_version="3.24.1" z_index_tablet="500" /][/et_pb_section][et_pb_section bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_width="none" custom_padding="0px||" prev_background_color="#000000" next_background_color="#141414" use_custom_gutter="on" gutter_width="2" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" z_index_tablet="500" module_class_1="col-260"][et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built="1" module_id="before-footer" _builder_version="3.22.4" background_color="#141414" custom_padding="10px||0px|" z_index_tablet="500" prev_background_color="#ffffff" global_module="954"][et_pb_row global_parent="954" custom_padding="5px||5px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_2,1_2"][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px"]<h4><i class="fas fa-phone"></i> Phone: <a href="tel:1-800-223-7226">1-800-223-7226</a></h4>[/et_pb_text][/et_pb_column][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" text_text_shadow_horizontal_length="text_text_shadow_style,%91object Object%93" text_text_shadow_vertical_length="text_text_shadow_style,%91object Object%93" text_text_shadow_blur_strength="text_text_shadow_style,%91object Object%93" link_text_shadow_horizontal_length="link_text_shadow_style,%91object Object%93" link_text_shadow_vertical_length="link_text_shadow_style,%91object Object%93" link_text_shadow_blur_strength="link_text_shadow_style,%91object Object%93" ul_text_shadow_horizontal_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_vertical_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_blur_strength="ul_text_shadow_style,%91object Object%93" ol_text_shadow_horizontal_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_vertical_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_blur_strength="ol_text_shadow_style,%91object Object%93" quote_text_shadow_horizontal_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_vertical_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_blur_strength="quote_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_2_text_shadow_horizontal_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_vertical_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_blur_strength="header_2_text_shadow_style,%91object Object%93" header_3_text_shadow_horizontal_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_vertical_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_blur_strength="header_3_text_shadow_style,%91object Object%93" header_4_text_shadow_horizontal_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_vertical_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_blur_strength="header_4_text_shadow_style,%91object Object%93" header_5_text_shadow_horizontal_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_vertical_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_blur_strength="header_5_text_shadow_style,%91object Object%93" header_6_text_shadow_horizontal_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_vertical_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_blur_strength="header_6_text_shadow_style,%91object Object%93"]<h4><i class="fas fa-envelope"></i> Email: <a href="mailto:info@scantours.net">info@scantours.net</a></h4>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section] </div> </div>
- →<ROOT>/wp-includes/plugin.php:205 WP_Hook->apply_filters($value, $args)
- Source
- Arguments (2)
if ( ! isset( $wp_filter['all'] ) ) { $wp_current_filter[] = $hook_name; } // Pass the value to WP_Hook. array_unshift( $args, $value );
$filtered = $wp_filter[ $hook_name ]->apply_filters( $value, $args );array_pop( $wp_current_filter ); return $filtered; } /**- →$value => UTF-8 string (20659) "<div class="et-l et-l--post"> <div class="et_builder_inner_content et_pb_gutter...
<div class="et-l et-l--post"> <div class="et_builder_inner_content et_pb_gutters3"> [et_pb_section bb_built="1" _builder_version="3.22.7" background_color="#000000" custom_padding="0px||0px|" z_index_tablet="500" next_background_color="#ffffff" global_module="1411"][et_pb_row global_parent="1411" use_custom_gutter="on" gutter_width="2" custom_padding="5px||5px|" custom_margin="||0px|" module_class="rh-quicksearch" _builder_version="3.25.3" background_size="initial" background_position="top_left" background_repeat="repeat" custom_margin_last_edited="on|phone" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_4,1_4,1_4,1_4"][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" text_orientation="center" custom_padding="8px||0px|" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone" custom_padding_last_edited="off|tablet"]<form action="/productsearch/" method="get"><!-- [et_pb_line_break_holder] --></p> <h2 style="color:white;padding-bottom: 0 !important;margin-bottom: 0 !important;">TOUR/CRUISE<!–- [et_pb_br_holder] -–> SEARCH</h2>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone"]<span style="color:white;font-weight:700;">Choose A Category</span><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --></p> <div style="margin: 5px 0 0 0;">[searchtourtype]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<span style="color:white;font-weight:700;">Choose A Country</span><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --></p> <div style="margin: 5px 0 0 0;">[searchdestination]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<input type="button" class="button2" onclick="search.open_asearch()" value="Customize Your Search"><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="submit" class="button" value="SUBMIT"><!-- [et_pb_line_break_holder] --></form>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row global_parent="1411" custom_padding="0px||0px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" custom_css_main_element=" z-index: 10;"][et_pb_column type="4_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code admin_label="Custom Search" global_parent="1411" _builder_version="3.25.3" z_index_tablet="500"]<form action="/productsearch/" method="get" id="advanced_search"><!-- [et_pb_line_break_holder] --> </p> <h2>Customized Search</h2> <p><!-- [et_pb_line_break_holder] --> <input id="closesearch" type="button" class="button" onclick="search.close_asearch()" value="Close"><!-- [et_pb_line_break_holder] --> </p> <h4>Select Where You Want To Travel</h4> <p><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="co" checked onclick="search.show_co()">Search By Country<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="ci" onclick="search.show_ci()">Search By Town or City<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> </p> <div id="co_search"><!-- [et_pb_line_break_holder] -->[searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> [searchcountrylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> </p> <div id="ci_search" style="display: none"><!-- [et_pb_line_break_holder] -->[searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> <!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="0" checked> Visit ALL Selections (less results)<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="1"> Visit ANY Selection (more results)<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </p> <h4>Select the Types of Vacations You Are Interested In</h4> <p><!-- [et_pb_line_break_holder] --> [searchcategorycheckbox]<!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" checked="" onclick="search.show_flex()"> Flexible Dates<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" onclick="search.show_exact()"> Exact Date<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </p> <div id="flex_box"><!-- [et_pb_line_break_holder] --><input type="text" name="start_date" id="start_date" value="" maxlength="8" class="datepicker"> and <input type="text" name="end_date" id="end_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> </p> <div id="exact_box" style="display: none"><!-- [et_pb_line_break_holder] --> Leaving On<!-- [et_pb_line_break_holder] --> <input type="text" name="exact_date" id="exact_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> <input type="submit" value="Submit" name="submit" alt="Submit" class="redbutton"><!-- [et_pb_line_break_holder] --></form> <p><!-- [et_pb_line_break_holder] --></p> <div class="site_overlay"></div>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built="1" fullwidth="on" _builder_version="3.22.3" prev_background_color="#000000" next_background_color="#000000"][et_pb_fullwidth_image src="https://www.scantours.net/wp-content/uploads/2019/05/269692591.jpg" _builder_version="3.24.1" z_index_tablet="500" /][/et_pb_section][et_pb_section bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_width="none" custom_padding="0px||" prev_background_color="#000000" next_background_color="#141414" use_custom_gutter="on" gutter_width="2" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" z_index_tablet="500" module_class_1="col-260"][et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built="1" module_id="before-footer" _builder_version="3.22.4" background_color="#141414" custom_padding="10px||0px|" z_index_tablet="500" prev_background_color="#ffffff" global_module="954"][et_pb_row global_parent="954" custom_padding="5px||5px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_2,1_2"][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px"]<h4><i class="fas fa-phone"></i> Phone: <a href="tel:1-800-223-7226">1-800-223-7226</a></h4>[/et_pb_text][/et_pb_column][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" text_text_shadow_horizontal_length="text_text_shadow_style,%91object Object%93" text_text_shadow_vertical_length="text_text_shadow_style,%91object Object%93" text_text_shadow_blur_strength="text_text_shadow_style,%91object Object%93" link_text_shadow_horizontal_length="link_text_shadow_style,%91object Object%93" link_text_shadow_vertical_length="link_text_shadow_style,%91object Object%93" link_text_shadow_blur_strength="link_text_shadow_style,%91object Object%93" ul_text_shadow_horizontal_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_vertical_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_blur_strength="ul_text_shadow_style,%91object Object%93" ol_text_shadow_horizontal_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_vertical_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_blur_strength="ol_text_shadow_style,%91object Object%93" quote_text_shadow_horizontal_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_vertical_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_blur_strength="quote_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_2_text_shadow_horizontal_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_vertical_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_blur_strength="header_2_text_shadow_style,%91object Object%93" header_3_text_shadow_horizontal_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_vertical_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_blur_strength="header_3_text_shadow_style,%91object Object%93" header_4_text_shadow_horizontal_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_vertical_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_blur_strength="header_4_text_shadow_style,%91object Object%93" header_5_text_shadow_horizontal_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_vertical_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_blur_strength="header_5_text_shadow_style,%91object Object%93" header_6_text_shadow_horizontal_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_vertical_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_blur_strength="header_6_text_shadow_style,%91object Object%93"]<h4><i class="fas fa-envelope"></i> Email: <a href="mailto:info@scantours.net">info@scantours.net</a></h4>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section] </div> </div>
- →$args => array (1)
- →0 => UTF-8 string (20659) "<div class="et-l et-l--post"> <div class="et_builder_inner_content et_pb_gutter...
<div class="et-l et-l--post"> <div class="et_builder_inner_content et_pb_gutters3"> [et_pb_section bb_built="1" _builder_version="3.22.7" background_color="#000000" custom_padding="0px||0px|" z_index_tablet="500" next_background_color="#ffffff" global_module="1411"][et_pb_row global_parent="1411" use_custom_gutter="on" gutter_width="2" custom_padding="5px||5px|" custom_margin="||0px|" module_class="rh-quicksearch" _builder_version="3.25.3" background_size="initial" background_position="top_left" background_repeat="repeat" custom_margin_last_edited="on|phone" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_4,1_4,1_4,1_4"][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" text_orientation="center" custom_padding="8px||0px|" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone" custom_padding_last_edited="off|tablet"]<form action="/productsearch/" method="get"><!-- [et_pb_line_break_holder] --></p> <h2 style="color:white;padding-bottom: 0 !important;margin-bottom: 0 !important;">TOUR/CRUISE<!–- [et_pb_br_holder] -–> SEARCH</h2>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone"]<span style="color:white;font-weight:700;">Choose A Category</span><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --></p> <div style="margin: 5px 0 0 0;">[searchtourtype]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<span style="color:white;font-weight:700;">Choose A Country</span><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --></p> <div style="margin: 5px 0 0 0;">[searchdestination]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<input type="button" class="button2" onclick="search.open_asearch()" value="Customize Your Search"><!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="submit" class="button" value="SUBMIT"><!-- [et_pb_line_break_holder] --></form>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row global_parent="1411" custom_padding="0px||0px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" custom_css_main_element=" z-index: 10;"][et_pb_column type="4_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code admin_label="Custom Search" global_parent="1411" _builder_version="3.25.3" z_index_tablet="500"]<form action="/productsearch/" method="get" id="advanced_search"><!-- [et_pb_line_break_holder] --> </p> <h2>Customized Search</h2> <p><!-- [et_pb_line_break_holder] --> <input id="closesearch" type="button" class="button" onclick="search.close_asearch()" value="Close"><!-- [et_pb_line_break_holder] --> </p> <h4>Select Where You Want To Travel</h4> <p><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="co" checked onclick="search.show_co()">Search By Country<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="ci" onclick="search.show_ci()">Search By Town or City<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> </p> <div id="co_search"><!-- [et_pb_line_break_holder] -->[searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–> [searchcountrylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> [searchcountrylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> </p> <div id="ci_search" style="display: none"><!-- [et_pb_line_break_holder] -->[searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–> [searchcitylist]<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> <!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="0" checked> Visit ALL Selections (less results)<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="1"> Visit ANY Selection (more results)<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </p> <h4>Select the Types of Vacations You Are Interested In</h4> <p><!-- [et_pb_line_break_holder] --> [searchcategorycheckbox]<!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" checked="" onclick="search.show_flex()"> Flexible Dates<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" onclick="search.show_exact()"> Exact Date<!–- [et_pb_br_holder] -–><!-- [et_pb_line_break_holder] --> </p> <div id="flex_box"><!-- [et_pb_line_break_holder] --><input type="text" name="start_date" id="start_date" value="" maxlength="8" class="datepicker"> and <input type="text" name="end_date" id="end_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> </p> <div id="exact_box" style="display: none"><!-- [et_pb_line_break_holder] --> Leaving On<!-- [et_pb_line_break_holder] --> <input type="text" name="exact_date" id="exact_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div> <p><!-- [et_pb_line_break_holder] --> <input type="submit" value="Submit" name="submit" alt="Submit" class="redbutton"><!-- [et_pb_line_break_holder] --></form> <p><!-- [et_pb_line_break_holder] --></p> <div class="site_overlay"></div>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built="1" fullwidth="on" _builder_version="3.22.3" prev_background_color="#000000" next_background_color="#000000"][et_pb_fullwidth_image src="https://www.scantours.net/wp-content/uploads/2019/05/269692591.jpg" _builder_version="3.24.1" z_index_tablet="500" /][/et_pb_section][et_pb_section bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_width="none" custom_padding="0px||" prev_background_color="#000000" next_background_color="#141414" use_custom_gutter="on" gutter_width="2" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" z_index_tablet="500" module_class_1="col-260"][et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built="1" module_id="before-footer" _builder_version="3.22.4" background_color="#141414" custom_padding="10px||0px|" z_index_tablet="500" prev_background_color="#ffffff" global_module="954"][et_pb_row global_parent="954" custom_padding="5px||5px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_2,1_2"][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px"]<h4><i class="fas fa-phone"></i> Phone: <a href="tel:1-800-223-7226">1-800-223-7226</a></h4>[/et_pb_text][/et_pb_column][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" text_text_shadow_horizontal_length="text_text_shadow_style,%91object Object%93" text_text_shadow_vertical_length="text_text_shadow_style,%91object Object%93" text_text_shadow_blur_strength="text_text_shadow_style,%91object Object%93" link_text_shadow_horizontal_length="link_text_shadow_style,%91object Object%93" link_text_shadow_vertical_length="link_text_shadow_style,%91object Object%93" link_text_shadow_blur_strength="link_text_shadow_style,%91object Object%93" ul_text_shadow_horizontal_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_vertical_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_blur_strength="ul_text_shadow_style,%91object Object%93" ol_text_shadow_horizontal_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_vertical_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_blur_strength="ol_text_shadow_style,%91object Object%93" quote_text_shadow_horizontal_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_vertical_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_blur_strength="quote_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_2_text_shadow_horizontal_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_vertical_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_blur_strength="header_2_text_shadow_style,%91object Object%93" header_3_text_shadow_horizontal_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_vertical_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_blur_strength="header_3_text_shadow_style,%91object Object%93" header_4_text_shadow_horizontal_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_vertical_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_blur_strength="header_4_text_shadow_style,%91object Object%93" header_5_text_shadow_horizontal_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_vertical_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_blur_strength="header_5_text_shadow_style,%91object Object%93" header_6_text_shadow_horizontal_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_vertical_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_blur_strength="header_6_text_shadow_style,%91object Object%93"]<h4><i class="fas fa-envelope"></i> Email: <a href="mailto:info@scantours.net">info@scantours.net</a></h4>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section] </div> </div>
- →<ROOT>/wp-includes/post-template.php:255 apply_filters($hook_name, $value, $args)
- Source
- Arguments (2)
/** * Filters the post content. * * @since 0.71 * * @param string $content Content of the current post. */
$content = apply_filters( 'the_content', $content );$content = str_replace( ']]>', ']]>', $content ); echo $content; } /** * Retrieves the post content. *- $hook_name => string (11) "the_content"
- →$value => string (20019) "[et_pb_section bb_built="1" _builder_version="3.22.7" background_color="#000000...
[et_pb_section bb_built="1" _builder_version="3.22.7" background_color="#000000" custom_padding="0px||0px|" z_index_tablet="500" next_background_color="#ffffff" global_module="1411"][et_pb_row global_parent="1411" use_custom_gutter="on" gutter_width="2" custom_padding="5px||5px|" custom_margin="||0px|" module_class="rh-quicksearch" _builder_version="3.25.3" background_size="initial" background_position="top_left" background_repeat="repeat" custom_margin_last_edited="on|phone" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_4,1_4,1_4,1_4"][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" text_orientation="center" custom_padding="8px||0px|" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone" custom_padding_last_edited="off|tablet"]<form action="/productsearch/" method="get"><!-- [et_pb_line_break_holder] --><h2 style="color:white;padding-bottom: 0 !important;margin-bottom: 0 !important;">TOUR/CRUISE<br> SEARCH</h2>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="||0px|" custom_padding__hover="|||" link_option_url_new_window="off" use_background_color_gradient="off" background_color_gradient_start="#2b87da" background_color_gradient_end="#29c4a9" background_color_gradient_type="linear" background_color_gradient_direction="180deg" background_color_gradient_direction_tablet="180deg" background_color_gradient_direction_phone="180deg" background_color_gradient_direction_radial="center" background_color_gradient_start_position="0%" background_color_gradient_start_position_tablet="0%" background_color_gradient_start_position_phone="0%" background_color_gradient_end_position="100%" background_color_gradient_end_position_tablet="100%" background_color_gradient_end_position_phone="100%" background_color_gradient_overlays_image="off" parallax="off" parallax_method="on" background_size="cover" background_position="center" background_repeat="no-repeat" background_blend="normal" allow_player_pause="off" background_video_pause_outside_viewport="on" custom_padding_tablet="||0px|" custom_padding_phone="||0px|" custom_padding_last_edited="on|phone" box_shadow_style="none" box_shadow_horizontal="box_shadow_style,%91object Object%93" box_shadow_horizontal_tablet="0px" box_shadow_horizontal_phone="0px" box_shadow_vertical="box_shadow_style,%91object Object%93" box_shadow_vertical_tablet="0px" box_shadow_vertical_phone="0px" box_shadow_blur="box_shadow_style,%91object Object%93" box_shadow_blur_tablet="40px" box_shadow_blur_phone="40px" box_shadow_spread="box_shadow_style,%91object Object%93" box_shadow_spread_tablet="0px" box_shadow_spread_phone="0px" disabled="%91object HTMLInputElement%93" z_index="9" z_index_tablet="9" z_index_phone="9" hover_transition_duration="300ms" hover_transition_duration_tablet="300ms" hover_transition_duration_phone="300ms" hover_transition_delay="0ms" hover_transition_delay_tablet="0ms" hover_transition_delay_phone="0ms" hover_transition_speed_curve="ease" module_class="no-margin-bottom"][et_pb_code global_parent="1411" _builder_version="3.25.3" z_index_tablet="500" custom_margin="||0px|" custom_margin_last_edited="on|phone"]<span style="color:white;font-weight:700;">Choose A Category</span><br /><!-- [et_pb_line_break_holder] --><div style="margin: 5px 0 0 0;">[searchtourtype]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<span style="color:white;font-weight:700;">Choose A Country</span><br /><!-- [et_pb_line_break_holder] --><div style="margin: 5px 0 0 0;">[searchdestination]</div>[/et_pb_code][/et_pb_column][et_pb_column type="1_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code global_parent="1411" _builder_version="3.23.3" z_index_tablet="500"]<input type="button" class="button2" onclick="search.open_asearch()" value="Customize Your Search"><br /><!-- [et_pb_line_break_holder] --><input type="submit" class="button" value="SUBMIT"><!-- [et_pb_line_break_holder] --></form>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row global_parent="1411" custom_padding="0px||0px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" custom_css_main_element=" z-index: 10;"][et_pb_column type="4_4" global_parent="1411" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_code admin_label="Custom Search" global_parent="1411" _builder_version="3.25.3" z_index_tablet="500"]<form action="/productsearch/" method="get" id="advanced_search"><!-- [et_pb_line_break_holder] --> <h2>Customized Search</h2><!-- [et_pb_line_break_holder] --> <input id="closesearch" type="button" class="button" onclick="search.close_asearch()" value="Close"><!-- [et_pb_line_break_holder] --> <h4>Select Where You Want To Travel</h4><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="co" checked onclick="search.show_co()">Search By Country<br /><!-- [et_pb_line_break_holder] --> <input type="radio" name="search_type" value="ci" onclick="search.show_ci()">Search By Town or City<br /><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --> <div id="co_search"><!-- [et_pb_line_break_holder] -->[searchcountrylist]<br /> [searchcountrylist]<br /> [searchcountrylist]<br /> [searchcountrylist]<br /> [searchcountrylist]<br /><!-- [et_pb_line_break_holder] --> [searchcountrylist]<br /><!-- [et_pb_line_break_holder] --> </div><!-- [et_pb_line_break_holder] --> <div id="ci_search" style="display: none"><!-- [et_pb_line_break_holder] -->[searchcitylist]<br /> [searchcitylist]<br /> [searchcitylist]<br /> [searchcitylist]<br /> [searchcitylist]<br /> [searchcitylist]<br /><!-- [et_pb_line_break_holder] --> </div><!-- [et_pb_line_break_holder] --> <br /><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="0" checked> Visit ALL Selections (less results)<br /><!-- [et_pb_line_break_holder] --><input type="radio" name="or_results" value="1"> Visit ANY Selection (more results)<br /><!-- [et_pb_line_break_holder] --> <h4>Select the Types of Vacations You Are Interested In</h4><!-- [et_pb_line_break_holder] --> [searchcategorycheckbox]<!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" checked="" onclick="search.show_flex()"> Flexible Dates<br /><!-- [et_pb_line_break_holder] --><input type="radio" name="flexible_dates" onclick="search.show_exact()"> Exact Date<br /><!-- [et_pb_line_break_holder] --> <div id="flex_box"><!-- [et_pb_line_break_holder] --><input type="text" name="start_date" id="start_date" value="" maxlength="8" class="datepicker"> and <input type="text" name="end_date" id="end_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div><!-- [et_pb_line_break_holder] --> <div id="exact_box" style="display: none"><!-- [et_pb_line_break_holder] --> Leaving On<!-- [et_pb_line_break_holder] --> <input type="text" name="exact_date" id="exact_date" value="" maxlength="8" class="datepicker"><!-- [et_pb_line_break_holder] --> </div><!-- [et_pb_line_break_holder] --> <input type="submit" value="Submit" name="submit" alt="Submit" class="redbutton"><!-- [et_pb_line_break_holder] --></form><!-- [et_pb_line_break_holder] --><div class="site_overlay"></div>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built="1" fullwidth="on" _builder_version="3.22.3" prev_background_color="#000000" next_background_color="#000000"][et_pb_fullwidth_image src="https://www.scantours.net/wp-content/uploads/2019/05/269692591.jpg" _builder_version="3.24.1" z_index_tablet="500" /][/et_pb_section][et_pb_section bb_built="1" specialty="on" _builder_version="3.25.4" inner_max_width="none" custom_padding="0px||" prev_background_color="#000000" next_background_color="#141414" use_custom_gutter="on" gutter_width="2" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" z_index_tablet="500" module_class_1="col-260"][et_pb_column type="1_4"][et_pb_sidebar orientation="right" area="sidebar-1" show_border="off" _builder_version="3.25.1" z_index_tablet="500" text_shadow_horizontal_length="text_shadow_style,%91object Object%93" text_shadow_horizontal_length_tablet="0px" text_shadow_vertical_length="text_shadow_style,%91object Object%93" text_shadow_vertical_length_tablet="0px" text_shadow_blur_strength="text_shadow_style,%91object Object%93" text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength_tablet="1px" body_text_shadow_horizontal_length="body_text_shadow_style,%91object Object%93" body_text_shadow_horizontal_length_tablet="0px" body_text_shadow_vertical_length="body_text_shadow_style,%91object Object%93" body_text_shadow_vertical_length_tablet="0px" body_text_shadow_blur_strength="body_text_shadow_style,%91object Object%93" body_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" disabled="off" disabled_on="on|on|" saved_tabs="all" global_module="2222" /][/et_pb_column][et_pb_column type="3_4" specialty_columns="3"][et_pb_row_inner admin_label="Row" _builder_version="3.0.47"][et_pb_column_inner type="4_4" saved_specialty_column_type="3_4" _builder_version="3.0.47" custom_padding__hover="|||" custom_padding="|||" saved_specialty_column_type="3_4"][et_pb_code _builder_version="3.22.7" z_index_tablet="500"][dwframework controller=hotelsearch action=run][/et_pb_code][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section bb_built="1" module_id="before-footer" _builder_version="3.22.4" background_color="#141414" custom_padding="10px||0px|" z_index_tablet="500" prev_background_color="#ffffff" global_module="954"][et_pb_row global_parent="954" custom_padding="5px||5px|" _builder_version="3.25" background_size="initial" background_position="top_left" background_repeat="repeat" z_index_tablet="500" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" column_structure="1_2,1_2"][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px"] <h4><i class="fas fa-phone"></i> Phone: <a href="tel:1-800-223-7226">1-800-223-7226</a></h4> [/et_pb_text][/et_pb_column][et_pb_column type="1_2" global_parent="954" _builder_version="3.25" custom_padding="|||" custom_padding__hover="|||"][et_pb_text global_parent="954" _builder_version="3.25.3" header_4_line_height="1.5em" text_orientation="center" background_layout="dark" z_index_tablet="500" text_text_shadow_horizontal_length_tablet="0px" text_text_shadow_vertical_length_tablet="0px" text_text_shadow_blur_strength_tablet="1px" link_text_shadow_horizontal_length_tablet="0px" link_text_shadow_vertical_length_tablet="0px" link_text_shadow_blur_strength_tablet="1px" ul_text_shadow_horizontal_length_tablet="0px" ul_text_shadow_vertical_length_tablet="0px" ul_text_shadow_blur_strength_tablet="1px" ol_text_shadow_horizontal_length_tablet="0px" ol_text_shadow_vertical_length_tablet="0px" ol_text_shadow_blur_strength_tablet="1px" quote_text_shadow_horizontal_length_tablet="0px" quote_text_shadow_vertical_length_tablet="0px" quote_text_shadow_blur_strength_tablet="1px" header_text_shadow_horizontal_length_tablet="0px" header_text_shadow_vertical_length_tablet="0px" header_text_shadow_blur_strength_tablet="1px" header_2_text_shadow_horizontal_length_tablet="0px" header_2_text_shadow_vertical_length_tablet="0px" header_2_text_shadow_blur_strength_tablet="1px" header_3_text_shadow_horizontal_length_tablet="0px" header_3_text_shadow_vertical_length_tablet="0px" header_3_text_shadow_blur_strength_tablet="1px" header_4_text_shadow_horizontal_length_tablet="0px" header_4_text_shadow_vertical_length_tablet="0px" header_4_text_shadow_blur_strength_tablet="1px" header_5_text_shadow_horizontal_length_tablet="0px" header_5_text_shadow_vertical_length_tablet="0px" header_5_text_shadow_blur_strength_tablet="1px" header_6_text_shadow_horizontal_length_tablet="0px" header_6_text_shadow_vertical_length_tablet="0px" header_6_text_shadow_blur_strength_tablet="1px" box_shadow_horizontal_tablet="0px" box_shadow_vertical_tablet="0px" box_shadow_blur_tablet="40px" box_shadow_spread_tablet="0px" text_text_shadow_horizontal_length="text_text_shadow_style,%91object Object%93" text_text_shadow_vertical_length="text_text_shadow_style,%91object Object%93" text_text_shadow_blur_strength="text_text_shadow_style,%91object Object%93" link_text_shadow_horizontal_length="link_text_shadow_style,%91object Object%93" link_text_shadow_vertical_length="link_text_shadow_style,%91object Object%93" link_text_shadow_blur_strength="link_text_shadow_style,%91object Object%93" ul_text_shadow_horizontal_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_vertical_length="ul_text_shadow_style,%91object Object%93" ul_text_shadow_blur_strength="ul_text_shadow_style,%91object Object%93" ol_text_shadow_horizontal_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_vertical_length="ol_text_shadow_style,%91object Object%93" ol_text_shadow_blur_strength="ol_text_shadow_style,%91object Object%93" quote_text_shadow_horizontal_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_vertical_length="quote_text_shadow_style,%91object Object%93" quote_text_shadow_blur_strength="quote_text_shadow_style,%91object Object%93" header_text_shadow_horizontal_length="header_text_shadow_style,%91object Object%93" header_text_shadow_vertical_length="header_text_shadow_style,%91object Object%93" header_text_shadow_blur_strength="header_text_shadow_style,%91object Object%93" header_2_text_shadow_horizontal_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_vertical_length="header_2_text_shadow_style,%91object Object%93" header_2_text_shadow_blur_strength="header_2_text_shadow_style,%91object Object%93" header_3_text_shadow_horizontal_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_vertical_length="header_3_text_shadow_style,%91object Object%93" header_3_text_shadow_blur_strength="header_3_text_shadow_style,%91object Object%93" header_4_text_shadow_horizontal_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_vertical_length="header_4_text_shadow_style,%91object Object%93" header_4_text_shadow_blur_strength="header_4_text_shadow_style,%91object Object%93" header_5_text_shadow_horizontal_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_vertical_length="header_5_text_shadow_style,%91object Object%93" header_5_text_shadow_blur_strength="header_5_text_shadow_style,%91object Object%93" header_6_text_shadow_horizontal_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_vertical_length="header_6_text_shadow_style,%91object Object%93" header_6_text_shadow_blur_strength="header_6_text_shadow_style,%91object Object%93"] <h4><i class="fas fa-envelope"></i> Email: <a href="mailto:info@scantours.net">info@scantours.net</a></h4> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]
- →<ROOT>/wp-content/themes/Divi/page.php:46 the_content($more_link_text = null, $strip_teaser = false)
- Source
print_thumbnail( $thumb, $thumbnail["use_timthumb"], $alttext, $width, $height ); ?> <?php endif; ?> <div class="entry-content"> <?php
the_content();if ( ! $is_page_builder_used ) wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'Divi' ), 'after' => '</div>' ) ); ?> </div> <?php
- →<ROOT>/wp-includes/template-loader.php:106 include()
- Source
- Arguments
* * @since 3.0.0 * * @param string $template The path of the template to include. */ $template = apply_filters( 'template_include', $template ); if ( $template ) {
include $template;} elseif ( current_user_can( 'switch_themes' ) ) { $theme = wp_get_theme(); if ( $theme->errors() ) { wp_die( $theme->errors() ); } } return;- →0 => string (58) "/home/scantou2/public_html/wp-content/themes/Divi/page.php"
- File (1.76KB)
-rw-r--r-- 1077 1078 1.76KB May 01 09:29 /home/scantou2/public_html/wp-content/themes/Divi/page.php
- →<ROOT>/wp-blog-header.php:19 require_once()
- Source
- Arguments
// Load the WordPress library. require_once __DIR__ . '/wp-load.php'; // Set up the WordPress query. wp(); // Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';}- →0 => string (58) "/home/scantou2/public_html/wp-includes/template-loader.php"
- File (2.94KB)
-rw-r--r-- 1077 1078 2.94KB Aug 14 2020 /home/scantou2/public_html/wp-includes/template-loader.php
- →<ROOT>/index.php:17 require()
- Source
- Arguments
* Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';- →0 => string (45) "/home/scantou2/public_html/wp-blog-header.php"
- File (351B)
-rw-r--r-- 1077 1078 351B Apr 01 2020 /home/scantou2/public_html/wp-blog-header.php
- ⇄public __construct($message, $code, $previous)new \Exception($message, $code, $previous)
- public __wakeup()
- ⇄final public getMessage()$e->getMessage()
- ⇄final public getCode()$e->getCode()
- ⇄final public getFile()$e->getFile()
- ⇄final public getLine()$e->getLine()
- ⇄final public getTrace()$e->getTrace()
- ⇄final public getPrevious()$e->getPrevious()
- ⇄final public getTraceAsString()$e->getTraceAsString()
- ⇄public __toString()(string) $e
- final private __clone()
- ⇄public __construct($message, $code, $previous)
Exception: Table 'location' does not contain ID '3': not found in database. in /home/scantou2/public_html/legacy/include/lib/Tusk/DB/Dmo.inc:235 Stack trace: #0 /home/scantou2/public_html/dw/src/controller/hotelsearch.php(14): Dmo->__construct('3') #1 /home/scantou2/public_html/dw/vendor/dwightframework/main/dw/_controller.php(336): controller\hotelsearch->__construct() #2 /home/scantou2/public_html/dw/vendor/dwightframework/wordpress/dwwp/wordpress.php(283): dw\_controller::controllerinit() #3 /home/scantou2/public_html/dw/vendor/dwightframework/wordpress/dwwp/wordpress.php(272): dwwp\wordpress::WPSHORTCODE_dwcontroller(Array) #4 /home/scantou2/public_html/wp-includes/shortcodes.php(355): dwwp\wordpress::WPSHORTCODE_dwframework(Array, '', 'dwframework') #5 [internal function]: do_shortcode_tag(Array) #6 /home/scantou2/public_html/wp-includes/shortcodes.php(227): preg_replace_callback('/\\[(\\[?)(dwfram...', 'do_shortcode_ta...', '[dwframework co...') #7 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/class-et-builder-element.php(3012): do_shortcode('[dwframework co...') #8 /home/scantou2/public_html/wp-includes/shortcodes.php(355): ET_Builder_Element->_render(Array, '[dwframework co...', 'et_pb_code') #9 [internal function]: do_shortcode_tag(Array) #10 /home/scantou2/public_html/wp-includes/shortcodes.php(227): preg_replace_callback('/\\[(\\[?)(dwfram...', 'do_shortcode_ta...', '[et_pb_code _bu...') #11 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/main-structure-elements.php(3784): do_shortcode('[et_pb_code _bu...') #12 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/class-et-builder-element.php(3331): ET_Builder_Column->render(Array, '[et_pb_code _bu...', 'et_pb_column_in...', '', '', '', '', '') #13 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/class-et-builder-element.php(2747): ET_Builder_Element->_render(Array, '[et_pb_code _bu...', 'et_pb_column_in...') #14 /home/scantou2/public_html/wp-includes/shortcodes.php(355): ET_Builder_Element->_render(Array, '[et_pb_code _bu...', 'et_pb_column_in...') #15 [internal function]: do_shortcode_tag(Array) #16 /home/scantou2/public_html/wp-includes/shortcodes.php(227): preg_replace_callback('/\\[(\\[?)(dwfram...', 'do_shortcode_ta...', '[et_pb_column_i...') #17 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/main-structure-elements.php(2789): do_shortcode('[et_pb_column_i...') #18 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/class-et-builder-element.php(3331): ET_Builder_Row_Inner->render(Array, '[et_pb_column_i...', 'et_pb_row_inner', '', '', '', '', '') #19 /home/scantou2/public_html/wp-includes/shortcodes.php(355): ET_Builder_Element->_render(Array, '[et_pb_column_i...', 'et_pb_row_inner') #20 [internal function]: do_shortcode_tag(Array) #21 /home/scantou2/public_html/wp-includes/shortcodes.php(227): preg_replace_callback('/\\[(\\[?)(dwfram...', 'do_shortcode_ta...', '[et_pb_row_inne...') #22 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/main-structure-elements.php(3784): do_shortcode('[et_pb_row_inne...') #23 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/class-et-builder-element.php(3331): ET_Builder_Column->render(Array, '[et_pb_row_inne...', 'et_pb_column', '', '', '', '', '') #24 /home/scantou2/public_html/wp-includes/shortcodes.php(355): ET_Builder_Element->_render(Array, '[et_pb_row_inne...', 'et_pb_column') #25 [internal function]: do_shortcode_tag(Array) #26 /home/scantou2/public_html/wp-includes/shortcodes.php(227): preg_replace_callback('/\\[(\\[?)(dwfram...', 'do_shortcode_ta...', '[et_pb_column t...') #27 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/main-structure-elements.php(1606): do_shortcode('[et_pb_column t...') #28 /home/scantou2/public_html/wp-content/themes/Divi/includes/builder/class-et-builder-element.php(3331): ET_Builder_Section->render(Array, '[et_pb_column t...', 'et_pb_section', '', '', '', '', '') #29 /home/scantou2/public_html/wp-includes/shortcodes.php(355): ET_Builder_Element->_render(Array, '[et_pb_column t...', 'et_pb_section') #30 [internal function]: do_shortcode_tag(Array) #31 /home/scantou2/public_html/wp-includes/shortcodes.php(227): preg_replace_callback('/\\[(\\[?)(search...', 'do_shortcode_ta...', '<div class="et-...') #32 /home/scantou2/public_html/wp-includes/class-wp-hook.php(308): do_shortcode('<div class="et-...') #33 /home/scantou2/public_html/wp-includes/plugin.php(205): WP_Hook->apply_filters('<div class="et-...', Array) #34 /home/scantou2/public_html/wp-includes/post-template.php(255): apply_filters('the_content', '[et_pb_section ...') #35 /home/scantou2/public_html/wp-content/themes/Divi/page.php(46): the_content() #36 /home/scantou2/public_html/wp-includes/template-loader.php(106): include('/home/scantou2/...') #37 /home/scantou2/public_html/wp-blog-header.php(19): require_once('/home/scantou2/...') #38 /home/scantou2/public_html/index.php(17): require('/home/scantou2/...') #39 {main}
Choose A Category
Choose A Country
