Hello,
I am trying to modify the header image using page builder but it always reverts to the swiftideas.com/convoy-demo url as you can see in the screenshot. This problem started after importing some demo options and content, I’ve lost complete control of our front page. Please advise.
I’ve deleted and reinstalled the theme and all the plugins as well.
I’ve added the following codes but I don’t see how they would interfere as the problem existed before adding these.
//// remove product count in woo***=====
add_filter( ‘woocommerce_subcategory_count_html’, ‘jk_hide_category_count’ );
function jk_hide_category_count() {
// No count
}
// Remove query string from static files*******===============
function remove_cssjs_ver( $src ) {
if( strpos( $src, ‘?ver=’ ) )
$src = remove_query_arg( ‘ver’, $src );
return $src;
}
add_filter( ‘style_loader_src’, ‘remove_cssjs_ver’, 10, 2 );
add_filter( ‘script_loader_src’, ‘remove_cssjs_ver’, 10, 2 );
Attachments:
You must be
logged in to view attached files.