It looks like nothing was found at this location.
add_action('wp_enqueue_scripts', 'enqueue_parent_styles'); function enqueue_parent_styles() { wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css'); wp_enqueue_style('child-style', get_stylesheet_directory_uri() . '/style.css', array('hello-elementor'), wp_get_theme()->get('1.0.0') ); } function shyre_spec_table() { $group = get_field('equipment_specifications', get_the_ID()); //prevents a null array error in the elementor editor. if (!$group) { return false; } if ($group['show_equipment_specifications']) { echo '
' . $spec . ' | '; echo '' . $details . ' | '; echo '
' . $title . ' | '; echo '|||
Stage | '; echo 'Function | '; echo ''; echo ' | Enhancements | '; echo '
---|---|---|---|
' . $stage . ' | '; echo '' . $function . ' | '; echo '' . $description . ' | '; echo '' . $enhancement . ' | '; echo '
It looks like nothing was found at this location.