WP theme soft reject

Themeforest comment
Default logo, photos are missing, http://envato.d.pr/1hDGI/2nHUZADt - http://envato.d.pr/7zmh/2gAzHlVh

I am using redux framework as a plugin,all default logo and photo come from redux framwork, so without install redux framwork how theme will setup default logo and photo?

After install redux framework default logo will automaticaly add in theme.How can i solve this themeforest issue.

Thanks

Use blog info as alternate, so upon activation of theme, you will see blog name instead of broken image

<?php if(!empty($redux_ti['logo']['url'])) : ?>
   <a class="navbar-brand" href="<?php echo esc_url( home_url( '/' ) ); ?>">
    <img src="<?php echo esc_url($redux_ti['logo']['url']); ?>" alt="<?php bloginfo('name'); ?>" class="logo">
   </a> 
<?php else : ?>
  <a class="navbar-brand sitename" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
    <?php bloginfo( 'name' ); ?>
  </a>
<?php endif; ?>

Thank you so much for your reply.
Problem solved!

Glad it helped :slight_smile:

1 Like