Support Forums - Classified Ads Script Osclass

Osclass theme support => Beta Osclass Theme => Topic started by: Jesus on December 08, 2019, 08:57:26 AM

Title: hide after registering or logging in
Post by: Jesus on December 08, 2019, 08:57:26 AM
When a user logs in or registers the button"Post an ad" no more shows

that only be shown to unregistered users

that only users are shown who have not yet logged in
Title: Re: hide after registering or logging in
Post by: MB Themes on December 10, 2019, 11:09:20 PM
You can find this button in footer.php, there are numerous posts on forums how to show/hide something for logged users
Title: Re: hide after registering or logging in
Post by: Jesus on December 11, 2019, 04:07:10 PM
You can find this button in footer.php, there are numerous posts on forums how to show/hide something for logged users

<?php if(osc_is_home_page()) if(!osc_is_web_user_logged_in())  { ?>
  <div class="mobile-post-wrap">
    <a class="mobile-post isMobile mbBg" href="<?php echo bet_reg_url('register'); ?>"><i class="fa fa-plus-circle"></i><span><?php _e('text-here', 'beta'); ?></span></a>
  </div>
<?php } ?>

with this  ;D