By Josh on Wednesday, 13 March 2019
Posted in General Issues
Replies 3
Likes 0
Views 530
Votes 0
Hey guys,

I am working on a small bit of php code for the subscriptions modal for payplans

what i am trying to do is. If there is no plan at all attached to the user I want to display a msg

how can i do this using the <?php if ($subscription->is ()) { ?> what is the call for no subscription ??

for example I have <?php if ($subscription->isActive() ) { ?> DISPLAY ACTIVE TEXT <?php } else { ?> Display NOT ACTIVE TEXT <?php } ?>

but how can I use this same call to say if there is no subscription at all ?? any ideas ?
Hi Josh,

I believe you can use the

<?php if ($subscription->isNotActive()) { ?>
·
Thursday, 14 March 2019 10:53
·
0 Likes
·
0 Votes
·
0 Comments
·
No this will not work because there need to be a substitution there with a not active status

Im saying what if the account dont have a substitution at all

there is no substitution linked to the user at all

???
·
Thursday, 14 March 2019 14:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Josh,

Unfortunately, there is no function for no subscription.
·
Thursday, 14 March 2019 15:26
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post