Hi there! It is possible, however the current layout of the mambot has been designed to only open the popup automatically on page load!
However if you like i can show you how to hack it:
1. open the mambots/content/jpopup.php file and look at the line 39, you should see this code
| Code: |
<img src='[mosConfig_live_site]/mambots/content/jpopup/images/pixel.gif' onload="startPopUp();">
|
2. delete or html comment that code, like
| Code: |
<!-- <img src='[mosConfig_live_site]/mambots/content/jpopup/images/pixel.gif' onload="startPopUp();">
|
-->
3. now when you want to load the popup on click in one of your pages, you need to first add the popup code in it(
), and then add the link code like
| Code: |
<a href='#' onclick='startPopUp();'>My link here</a>
|
the important code that will start the popup on click being
| Code: |
onclick='startPopUp();'
|
Hope it helps! Ovidiu