By Jason Wells on Tuesday, 18 December 2018
Posted in General Issues
Replies 3
Likes 0
Views 635
Votes 0
Is there a way to move the subscribe button closer to the top of the plans?

So that it is above the page fold.

Maybe under the teaser text.
Hey Jason,

Yes, you can move subscribe button under the teaser text. For this you need to change the code in template file.
Go to root/components/com_payplans/templates/tmpl_bs3/plan/default_plan.php, near line no. 70 find below mentioned code

<a id="testPlan<?php echo $plan->getId();?>" class="btn btn-primary" href="<?php echo XiRoute::_('index.php?option=com_payplans&view=plan&task=subscribe&plan_id='.$plan->getId());?>" onclick="this.onclick=function(){return false;}">
<?php echo XiText::_('COM_PAYPLANS_PLAN_SUBSCRIBE_BUTTON')?>
</a>


Remove this code (if don't want to show subscribe button on bottom).

To add subscribe button under teaser text add the above mentioned code after (same file) after below mentioned line of code (near line no. 29)

<div class="pp-plan-teaser text-muted payplans-wordbreak">
<?php echo JString::ucfirst($plan->getTeasertext());?>
</div>


Do the changes and let me know if still any issue persist.
·
Tuesday, 18 December 2018 18:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for the reply. I do not find that path templates/tmpl_bs3/plan/default_plan.php or file anywhere.
·
Wednesday, 23 January 2019 13:40
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Jason,

Sorry , i thought you are using PayPlans 3.7.x version.
For PP4, you can find the path here : root/components/com_payplans/themes/wireframe/plan/default/plan.php

Subscribe Button : Finf code near line no. 101

<a href="<?php echo $plan->getSelectPermalink();?>" class="btn btn-pp-primary" data-subscribe-button data-default-link="<?php echo $plan->getSelectPermalink();?>">
<?php echo JText::_('COM_PAYPLANS_PLAN_SUBSCRIBE_BUTTON')?>
</a>


Remove this code (if don't want to show subscribe button on bottom).

To add subscribe button under teaser text add the above mentioned code after (same file) after below mentioned line of code (near line no. 43)

<div class="pp-plan-card__desc">
<?php echo JString::ucfirst(JText::_($plan->getTeaser()));?>
</div>


Let me know if you have any query.
·
Wednesday, 23 January 2019 14:16
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post