Better trial suspension notice

This commit is contained in:
Albert Santoni 2015-11-05 12:45:09 -05:00
parent 8e122d3a27
commit 685134d8bb
4 changed files with 21 additions and 3 deletions

View file

@ -22,8 +22,10 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
<?php echo $this->partial('partialviews/trialBox.phtml', array("is_trial"=>$this->isTrial(), "trial_remain"=> $this->trialRemaining())) ?>
<div id="Panel" class="sticky">
<?php if($this->suspended) : ?>
<?php echo $this->partial('partialviews/suspended.phtml'); ?>
<?php if ($this->suspended && $this->isTrial()) : ?>
<?php echo $this->partial('partialviews/suspendedtrial.phtml'); ?>
<?php elseif ($this->suspended && !$this->isTrial()) : ?>
<?php echo $this->partial('partialviews/trial.phtml'); ?>
<?php else : ?>
<?php echo $this->versionNotify();