• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Contact button in entry details open and closed

Contact button in entry details open and closed 10 years 1 week ago #27347

Hello

I have trouble with Contact button in entry details: directorio.animalesadopcion.com/index.ph...7:forza10&Itemid=476

when you click in contact button it open the contact form, but next it's closed automatically, It's seems to be a jquery trouble,

Has anyone has this problem?

thanks a lot
The administrator has disabled public write access.

Contact button in entry details open and closed 10 years 1 week ago #27348

Solved:

I do a override in default_contact in templates/TEMPLATE/html/com_rsdirectory/entry/default_contact.php

I delete data-toggle="modal" attribute in:

<a class="btn btn-primary btn-large" id="contact" role="button" data-toggle="modal" ><?php echo JText::_('COM_RSDIRECTORY_CONTACT_AUTHOR'); ?></a>

And put click event to open modal in jquery

<script>
jQuery(function($){

$('#contact').click(function () {
$('#rsdir-contact-modal').modal();
});
});

and now works OK
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!