golden hour
/home/godaofbq/hyperbarichelp.com/wp-content/plugins/oxygen/component-framework/components/layouts
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
comment-form.php
592 B
Del
OK
innercontent.php
3.24 KB
Del
OK
login-form.php
585 B
Del
OK
search-form.php
588 B
Del
OK
Edit: innercontent.php
<?php // TODO review the security aspect if (!is_user_logged_in() || !oxygen_vsb_current_user_can_access()) { die(); } $nonce = $_REQUEST['nonce']; $post_id = $_REQUEST['post_id']; // check nonce if ( ! wp_verify_nonce( $nonce, 'oxygen-nonce-' . $post_id ) ) { // This nonce is not valid. die( 'Security check' ); } global $post; // if we set it to an array containing keys as the selective class names, only the css of those classes will be rendered ob_start(); $ct_render_post_using = get_post_meta( $post->ID, 'ct_render_post_using', true ); $ct_use_inner_content = get_post_meta( $post->ID, 'ct_use_inner_content', true ); $json = get_post_meta( $post->ID, 'ct_builder_json', true ); $components_tree = json_decode($json, true); $shortcodes = get_post_meta( $post->ID, 'ct_builder_shortcodes', true ); if ( (!$components_tree && !$shortcodes) || ( (!$ct_render_post_using && $ct_render_post_using == 'custom_template') && (!$ct_use_inner_content || $ct_use_inner_content == 'content') ) ) { // Use WordPress post content as inner content // RENDER default content // find the template that has been assigned to innercontent $template = ct_get_inner_content_template(); if($template) { $json = get_post_meta( $template->ID, 'ct_builder_json', true ); $components_tree = json_decode($json, true); $shortcodes = get_post_meta($template->ID, 'ct_builder_shortcodes', true); } if ($components_tree) { global $oxygen_doing_oxygen_elements; $oxygen_doing_oxygen_elements = true; echo do_oxygen_elements($components_tree['children']); $oxygen_doing_oxygen_elements = false; } else if($shortcodes) { echo ct_do_shortcode($shortcodes); } else { if(function_exists('is_woocommerce') && is_woocommerce()) { woocommerce_content(); ?> <script type="text/javascript"> jQuery('body').addClass('woocommerce'); </script> <style> .woocommerce-product-gallery { opacity: 1 !important; } .woocommerce-Tabs-panel:not(:nth-child(2)) { display: none; } </style> <?php } else { while ( have_posts() ) { the_post(); the_content(); } } } } else if ($components_tree) { global $oxygen_doing_oxygen_elements; $oxygen_doing_oxygen_elements = true; echo do_oxygen_elements($components_tree['children']); $oxygen_doing_oxygen_elements = false; } else if($shortcodes) { // obfuscate any oxy conditions, dynamic data $shortcodes = ct_obfuscate_shortcode($shortcodes); if( class_exists('Oxygen_Gutenberg') && get_post_meta( $post->ID, 'ct_oxygenberg_full_page_block', true ) == '1' ) { $shortcodes = do_blocks( $post->post_content ); } // Use Oxygen designed inner content echo do_shortcode($shortcodes); } $content = ob_get_clean(); if(empty($content)) { the_content(); } else { echo $content; ?> <style> <?php remove_action("ct_footer_styles", "ct_css_styles"); // we do not need default css styles or classes being rendered here do_action("ct_footer_styles"); ?> </style> <?php // custom Oxygen hook to render things like Code Block JS/CSS or Custom JS/CSS do_action("oxygen_inner_content_footer"); }
Save