atsushiK
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
When published, edit-post-link can not be used.
Started by: atsushiK in: Toolset Professional Support |
2 | 2 | 6 years, 5 months ago | ||
How to disable the dynamic CSS and JS files from Layouts?
Started by: atsushiK
in: Toolset Professional Support
Problem: Solution: // dequeue Layouts dynamic style for Template Layouts add_filter('wp_enqueue_scripts', function(){ wp_dequeue_style( 'wp_ddl_layout_fe_css' ); }, 1000); // dequeue Layouts dynamic script for Content Layouts add_action('get_header', function(){ wp_dequeue_script( 'wp_ddl_layout_fe_js' ); }, 11); // dequeue Layouts dynamic style for Content Layouts and Script for Template Layout add_filter('get_layout_id_for_render', function( $id, $args ){ wp_dequeue_style( 'wp_ddl_layout_fe_css' ); wp_dequeue_script( 'wp_ddl_layout_fe_js' ); return $id; }, 1000, 2); |
2 | 3 | 6 years, 6 months ago | ||
Restrictions on child posting
Started by: atsushiK in: Toolset Professional Support |
2 | 5 | 6 years, 6 months ago | ||
how can I change default languege at CRED form(not use WPML)
Started by: atsushiK in: Toolset Professional Support |
3 | 5 | 6 years, 6 months ago |