Hi,
Just curious how I can adjust the time before fading away, or even make the _ACTION_LIMIT_REACHED message stay when a user tries to perform an action which they've used up all their amount of allowed actions.
Thanks
crack_foo
Hi, Just curious how I can adjust the time before fading away, or even make the _ACTION_LIMIT_REACHED message stay when a user tries to perform an action which they've used up all their amount of allowed actions. Thanks crack_foo |
any ideas? |
anything? :) |
anyone? |
is this possible? |
As far as i can tell it is not possible. At least not for just that one action limit. Any changes will affect all of them without serious rewrites to the code. https://www.deanbassett.com |
Thanks, I'll keep poking around. |
When exactly is this snippet shown? I have not seen this myself and I am just curious to know. |
Can you give us sample account that reached action limit Pm me your admin info too to check member ship level. |
When exactly is this snippet shown? I have not seen this myself and I am just curious to know. When you a viewing a user's profile and you click one of the actions... a status/result message expands from the bottom of the action menu then disappears in about 2 seconds later. |
Can you give us sample account that reached action limit Pm me your admin info too to check member ship level. It's visible with all actions successful or not. Can see it on the boonex demo site...
|
@crack_foo Ok, thats strange, because that snippet is empty in my language file and I dont seem to be missing any text on my site. Anyway, if you are talking about the time that ajax message stays on the screen after for example clicking the befriend button, then you do that here: function genAjaxyPopupJS in design.inc.php --> $sRedirect }, 6000); I have also increased that number, you can of course change it to whatever you like to. Still this snippet is a mystery to me..
Best, Eric |
Thank you for this but this is what I have in my design.inc.php:
function genAjaxyPopupJS($iTargetID, $sDivID = 'ajaxy_popup_result_div', $sRedirect = '') { $iProcessTime = 1000;
if ($sRedirect) $sRedirect = "window.location = '$sRedirect';";
$sJQueryJS = <<<EOF Is the "iProcessTime" what I'm looking for here?
|
I'm guessing you figured this out since you found the correct function ... function genAjaxyPopupJS located in inc > design.inc.php but as Deano mentioned, any changes will affect the entire site. I adjusted the "3000" number to 9000 to lengthen the time the Ajax popup is displayed. http://pkforum.dolphinhelp.com |
I tried changing that option and it's not really what I was looking for. That makes the message appear in slow motion. Really annoying actually at 9000. I was just looking to see if there was a way to make it stay longer before fading away again... |