Support Forums - Classified Ads Script Osclass

Osclass theme support => Veronika Osclass Responsive Theme => Topic started by: terry on March 30, 2017, 10:26:39 AM

Title: Hide Notification/Alerts icons for Non Logged in Users
Post by: terry on March 30, 2017, 10:26:39 AM
Hi

I would like to hide the notification/alert icons for non logged in users and ONLY show to users who are logged in.

Am I missing a setting somewhere or could anyone point me in the right direction please?


Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: MB Themes on March 30, 2017, 12:45:26 PM
@terry
You can wrap them into:
Code: [Select]
<?php if(osc_is_web_user_logged_in()) { ?>
 ... your code ...
<?php ?>
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: terry on March 30, 2017, 01:00:42 PM
Thanks, frosticek!  :)
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: Александр Лонгардт on June 10, 2018, 01:21:27 AM
Tell me what function can be wrapped so as not to show the notification icons are "0" messages, alerts, announcements, photos... And if more "0>" the already appeared.
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: MB Themes on June 10, 2018, 08:32:02 AM
You can find counter functions in header.php in notification section.
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: Александр Лонгардт on June 10, 2018, 09:52:45 PM
And where exactly to look in what lines? I thought I should be wrapped in a notification function 0< ' do not show, and if more than 0>, show.

And the question is how to properly wrap the function that would not show 0 photos.

<span class="image-count round2"><i class="fa fa-camera"></i> <?php echo osc_count_item_resources(); ?></span>
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: MB Themes on June 11, 2018, 06:08:50 PM
What about == 0?
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: Александр Лонгардт on June 11, 2018, 10:30:33 PM
Well, I understand, but how to write code more correctly? Where to insert == 0? For example, in the code that I gave out. Thanks.
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: MB Themes on June 12, 2018, 01:48:46 PM
<0 replace with <=0
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: Александр Лонгардт on June 12, 2018, 04:11:07 PM
that I did not quite understand you, where exactly to insert this code?

<span class="image-count round2"><i class="fa fa-camera"></i> <?php echo osc_count_item_resources(); ?></span>


example in the screenshot
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: MB Themes on June 12, 2018, 04:58:55 PM
Code you posted should be wrapped by php condition
if () {... code ...}
Title: Re: Hide Notification/Alerts icons for Non Logged in Users
Post by: Александр Лонгардт on June 12, 2018, 05:20:28 PM
Code you posted should be wrapped by php condition
if () {... code ...}

I realized that the bad idea was to modify the code in the file loop-single.php. Well, how in the header do what would be 0 notifications? but already more than 1 already shown?

here is my code, and below is a screenshot how to do it correctly?

Code: [Select]
<a class="alert tr1" title="<?php _e('Alerts''veronika'); ?>" href="<?php echo osc_user_alerts_url(); ?>"><i class="fa fa-bell-o"></i> <span class="counter"><?php echo (osc_is_web_user_logged_in() ? count(Alerts::newInstance()->findByUser(osc_logged_user_id())) : 0); ?></span></a>
          <a class="item tr1" title="<?php _e('Listings''veronika'); ?>" href="<?php echo osc_user_list_items_url(); ?>"><i class="fa fa-list"></i> <span class="counter"><?php echo (osc_is_web_user_logged_in() ? Item::newInstance()->countByUserID(osc_logged_user_id()) : 0); ?></span></a>
  <?php osc_run_hook('show_dealers_link'); ?>