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
-
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?
-
@terry
You can wrap them into:
<?php if(osc_is_web_user_logged_in()) { ?>
... your code ...
<?php } ?>
-
Thanks, frosticek! :)
-
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.
-
You can find counter functions in header.php in notification section.
-
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>
-
What about == 0?
-
Well, I understand, but how to write code more correctly? Where to insert == 0? For example, in the code that I gave out. Thanks.
-
<0 replace with <=0
-
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
-
Code you posted should be wrapped by php condition
if () {... code ...}
-
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?
<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'); ?>