• henikolett

    (@henikolett)


    Greetings everyone,

    I have a strange problem: after activating the Shopera theme, the blog loop and the posts themselves are not showing. I installed the Shopera functionality plugin too, but it didn’t help. Even the admin bar is missing when I’m logged in.

    I tried installing the demo data mentioned on this page: https://documentation.cohhe.com/shopera/knowledgebase/demo-site-xml-import-file/
    but I got this error message:
    This does not appear to be a WXR file, missing/invalid WXR version number

    Can you help?
    Thanks in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Madars

    (@cohhe)

    Hi there,

    Can I get access to WordPress dashboard to take a closer look? You can contact me via this form https://cohhe.com/contact-us/

    Best,
    Cohhe

    jnavarroc

    (@jnavarroc)

    Hi Cohhe,

    I have exactly the same issue.
    Did you manage to find a solution?
    Can you post it here?

    Many thanks,
    Javier

    jnavarroc

    (@jnavarroc)

    Hi Cohhe,

    I have investigated it a bit further.
    Changing excerpt management in content pages solved the issue:

    $myexcerpt = get_the_excerpt();
    if( '' == $myexcerpt ) {
    	$post_content = __( 'No excerpt for this post.', 'shopera' );
    } elseif ( $post_grid == false || is_single() ) {
    	the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'shopera' ) );
    } else {
    	if ( strlen( $myexcerpt ) > 140 ) {
    		$post_content = substr($myexcerpt , 0, 140) . '..';
    	} else {
    		$post_content = $myexcerpt ;
    	}
    	echo '<p>'.$post_content.'</p>';
    }

    Just added $myexcerpt variable.

    Regards,
    Javier

    Theme Author Madars

    (@cohhe)

    Hi Javier,

    Thank you for contributing, I will check this and fix it in next theme update.

    Best,
    Cohhe

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Posts are not showing’ is closed to new replies.