Change your setting in database. -> table wp_options -> update wpfc_theme_css
UPDATE xxxxxx.wp_options SET option_value = ‘https://xxxxx/xxxx.css’ WHERE wp_options.option_name = wpfc_theme_css;
For me worked, maybe update of other urls in this table will be needed.
Thread Starter
mencmi
(@mencmi)
Hi, thank you. I solve it.. just a litle bit of coding added to functions.php
add_action( ‘pre_get_posts’, ‘add_my_post_types_to_query’ );
function add_my_post_types_to_query( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( ‘post_type’, array( ‘post’,’event’ ) );
return $query;
}