LeadGuitarMx
Forum Replies Created
-
I’m looking for this too, I don’t want to load that font on all my pages.
Forum: Plugins
In reply to: [WordPoints] Subtracting Points without generate log?Thanks for your answer, it will help me π
I did a wp_schedule_event for subtract points to the users without activity but it generate a lot of logs.
My idea is something like: You win points visiting and participating but if you don’t have activity you’ll lose a point every day.
And when a user lose all the points, I’ll send a message saying “Your account will be suspended for inactivity”
I’m not so sure but.. I’ll try π
But anyways, thanks so very much again. Now I’ll give you 5 stars for your great work π
- This reply was modified 8 years, 2 months ago by LeadGuitarMx.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Clear Cache method in codeIs OK, no problem ;).. I can do it using PHP.. You already have my 5 stars : ) Just The Best Cache PLugin for WordPress!! Thanks!
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Clear Cache method in codeHello, is possible to delete the cache of a specific folder with this method?
I’ll give you 5 Stars : )
Hi, the problem was not from another plugin.
Meanwhile I just stop generating php warnings with:
error_reporting(E_ERROR | E_PARSE);But I think maybe the problem is with the default slider, I just made a new slider like “Ectata” and use instead and the warnings stop.
Now is working all OK.
Thanks for the plugin, is very cool π
Forum: Plugins
In reply to: [Front End PM] [SUGESTION] Message DeletionYes.. that’s a good idea.. I agree.
I got the same problem in : http://agenciadeviajesvingrey.com.mx/
Forum: Plugins
In reply to: [Front End PM] Front End NotificationThat is a javascript alert.
You can put that after the “body” tag of your header.php
Another example:
$fep = new fep_main_class(); $numNew = $fep->getNewMsgs(); if ($numNew != 0) { echo'<div style="width:100%;padding:10px;border-radius:5px;border:1px solid #666;background:yellow">You have one new private message</div>'; }You can edit the css and do something much better, good luck!
Forum: Plugins
In reply to: [Front End PM] Front End NotificationHi @Estelika, I think you can do that with something like:
$fep = new fep_main_class(); $numNew = $fep->getNewMsgs(); if ($numNew != 0) { echo"<script>alert('Hey! you have a new private message'); </script>"; }That is an ugly example, you can do some thing much better with jQuery and CSS3 (and ajax if you want).
Good luck and Best Regards!!
Forum: Plugins
In reply to: [Front End PM] Front End NotificationPerfect!.. thanks so much π
Forum: Plugins
In reply to: [Front End PM] Front End NotificationI wanna do that too, display only the number of new messages π