Hi
What happens when I click "Book now..." in the "Book this tour" module. How is this event handled? I need a different url on each tour.
Miltos

7 days later

Hi Miltos,

The "Book now.." button there is for the demo purpose only, there is no link there yet by default.

You can edit this file: ROOT/templates/ja_trip/html/com_content/article/tour.php

look for this code:

<a class="btn btn-primary w-100" href="#" title="Book Now">Book Now for <?php echo $price; ?></a>

and add your own link to the href param

Regards

Thanks, I got it. But it doesn't make sense for all tours to go to the same link. What I need is for each tour a different form, so a different link. Batton should be a custom field, I think.
Miltos

It will require a bit customization here:

1/ Edit file: ROOT/templates/ja_trip/etc/extrafields/tour-info.xml and add this line of code:

<field name="booklink" type="text" label="TPL_BOOKLINK_LABEL" description="TPL_BOOKLINK_DESC"/>

2/ Add this code to the file: ROOT/templates/ja_trip/html/com_content/article/tour.php

$booklink = $extrafields->get('booklink');

.....


<?php if(!empty($booklink)) :?>
<div class="btn-actions mt-5">
	<a class="btn btn-primary w-100" href="<?php echo $booklink;?>" title="Book Now">Book Now for <?php echo $price; ?></a>
</div>
<?php endif ;?>

tour.zip
6kB
Write a Reply...
You need to Login to view replies.