Hello Kai,
There was conflict with theme template & GD template. I have added following snippet to fix it.
/*** Content ***/
function gd_snippet_impreza_content_archive_id( $value ) {
global $post;
if ( ! empty( $post ) && $post->post_type == 'page' && ( geodir_archive_page_id() == $post->ID || geodir_search_page_id() == $post->ID ) ) {
$value = get_post_meta( $post->ID, 'us_content_id', true );
}
return $value;
}
add_filter( 'usof_get_option_content_archive_id', 'gd_snippet_impreza_content_archive_id', 10, 1 );
/*** Sidebar ***/
function gd_snippet_impreza_sidebar_archive_id( $value ) {
global $post;
if ( ! empty( $post ) && $post->post_type == 'page' && ( geodir_archive_page_id() == $post->ID || geodir_search_page_id() == $post->ID ) ) {
$value = get_post_meta( $post->ID, 'us_sidebar_id', true );
}
return $value;
}
add_filter( 'usof_get_option_sidebar_archive_id', 'gd_snippet_impreza_sidebar_archive_id', 10, 1 );
Please check and let us know.
Thanks,
Kiran