Invitex Anywhere - Integration with Easysocial events

Invitex EasySocial Events Integration lets you tightly integrate Invitex to let users Invite more people to their EasySocial Events. In order to set it up correctly to work in a seamless way, please follow the documentation below. Invitex support different types of invitations 'Easysocial Event' is one of them.

easysocial event page

Configure the Invitex EasySocial Event 'Type'.

Login to the Admin & go to Invitex -> Invitation Types. There Look for the EasySocial Event type. Usually it will be the type of the ID '5' unless you deleted & recreated it. You can edit it & configure various settings like Invitation methods to allow, default text, template etc. In the type settings you should also see an area for the Invitation Widget.

We can Integrate Easysocial Events In 2 ways you can use any one of it

A) Using Override Methods

Steps to override the template-

1. Assuming you are using 'wireframe' template for Easysocial, locate and copy this file-

YOUR_JOOMLA/components/com_easysocial/themes/wireframe/events/item.header.php

2. Paste the copied file into the folder-

YOUR_JOOMLA/templates/YOUR_CURRENT_JOOMLA_TEMPLATE/html/com_easysocial/events/

3. Open file from above step in a text editor.

4. Comment out following Easysocial code in copied file. This code results in the native "Invite" button of Easysocial. If you do not want to hide it, you can keep it as it is.

<div>
	<a class="btn btn-block btn-es btn-sm" href="javascript:void(0);" data-action-invite>
		<i class="ies-users"></i> <?php echo JText::_('COM_EASYSOCIAL_EVENTS_INVITE_FRIENDS');?>
	</a>
</div>

 5. Then add Invitex Invite button code given below after the commented code.

<!-- Widget Code -->

<?php
$invite_url = urlencode(base64_encode($event->getPermalink()));
$name = $event->getName();
$link = "index.php?option=com_invitex&view=invites";
require_once JPATH_SITE . '/components/com_invitex/helper.php';
$this->invhelperObj = new cominvitexHelper();
$itemid = $this->invhelperObj->getItemId($link);
$link .= "&Itemid=".$itemid;
$link = JRoute::_($link);
$link .= strpos($link,'?')?"&catch_act=":"?catch_act=";
$link.="&invite_type=5&invite_anywhere=1&invite_url=".$invite_url."&tag=[name=".$name."]";
?>
<div>
	<a class="btn btn-block btn-es btn-sm" href='<?php echo $link; ?>' data-es-event-invite> <i class="ies-users"></i> 
		<?php echo JText::_('COM_EASYSOCIAL_EVENTS_INVITE_FRIENDS');?> 
	</a> 
</div>

 NOTE:- Please check Invite Type Id for EasySocial Event Invitation from backend InviteX view (Invitation Types) and change the URL parameter "invite_type" accordingly (Check the $link variable in the PHP code given above). Generally, the "invite_type" is "5" for EasySocial Event Invitation.

6. Save file and you are done!

 

B) Using Easysocial App (deprecated - don't use)

  • Enable Easysocial APP Open Backend=>Components=>Easysocial=>APPS Search for Invitex and Enable "Easysocial Invitex APP to Invite For Event"
  • Now each user needs to enable APP from frontend