pinkish1
Forum Replies Created
-
I already rated the plugin 5 stars years ago, it’s an awesome plugin!
Cheers,
AlexHey!
After trying another theme and deactivating plugins one by one, I identified the culprit: the TABS plugin.
I’m sorry I jumped to conclusions about your plugin earlier and I want to thank you again for your time.
Kind regards,
AlexHey Tobias,
Thanks a lot for taking the time to get back to me. I will try and change the theme and hopefully the problem will go away.
Cheers,
AlexForum: Plugins
In reply to: [Firelight Lightbox] Update to latest version breaks WP-AdminYou need a newer version of PHP on your server. It should be at least PHP 5.6 for the plugin to work. Check with your hosting company.
Forum: Reviews
In reply to: [Smart Maintenance & Countdown] This plugin is infected with an EXPLOITHere’s what happened: on a freshly installed WordPress I added this plugin. Then I noticed the user_login had changed from “ravadmin” to “indoxploit”.
No other plugins had been installed.
Thank you so much!
Thank you so much for solving this annoying issue for me.
It’s a weird problem and hopefully others will learn from this thread.
Cheers!
Hi,
Thanks so much for the fast reply. The truth is it’s not a fresh installation, but there’s not much been done since installing WP other than installing a purchased theme and a few plugins.
But I disabled everything, reverted to Twenty15 and the problem is still there.
I created an account and the confirmation email should arrive in your inbox. Thank you for being supportive!
Forum: Plugins
In reply to: [Countdown Timer - Widget Countdown] working with WP Super CacheYes, but I want to exclude just a part of the page, not the whole page. I am not a programmer.
If I pay for Countdown pro, is the cost per year or per lifetime? Especially Developer. Thank you.
Forum: Plugins
In reply to: [InPost Gallery] sc_idHello RealMag777,
Thank you so much for the explanation. This is a great plugin!
Keep up the good work ??
Cheers,
Akexhe went back to the old version.
Forum: Plugins
In reply to: [Logo Carousel] Conflict with a Premium ThemeHerbertvdp, I turned to a paid plugin (only $15) and it works perfectly.
Logos Showcase – Multi-Use Responsive WP Plugin on CodeCanyon.
Forum: Plugins
In reply to: [Participants Database] Calculating age from birthdateYeah, it certainly works perfectly now! Thank you so much!
Forum: Plugins
In reply to: [Participants Database] Calculating age from birthdateThanks, I added your code to pdb-single-default.php inside the loop and it works:
if ( $this->field->name == 'birthdate' ) { function CalculateAge($BirthDate) { list($Year, $Month, $Day) = explode("/", $BirthDate); $YearDiff = date("Y") - $Year; if(date("m") < $Month || (date("m") == $Month && date("d") < $DayDiff)) { $YearDiff--; } return $YearDiff; } $this->field->value = CalculateAge($this->field->value); }
The only problem left is listing it in pdb-list-default.php, because placing the code in the same place lists a page full of errors, maybe because the function is called multiple times within the same page?
Forum: Plugins
In reply to: [Participants Database] Calculating age from birthdateI added this at the very end of the template, outside the loop (I’m not a programmer):
<?php function CalculateAge($BirthDate) { list($Year, $Month, $Day) = explode("/", $BirthDate); $YearDiff = date("Y") - $Year; if(date("m") < $Month || (date("m") == $Month && date("d") < $DayDiff)) { $YearDiff--; } return $YearDiff; } ?> <?php $date_of_birth = '1970/03/17'; echo 'Age: ' . CalculateAge($date_of_birth); ?>
I just need to know, if you can tell me, how to enter the value from the “birthdate” field (from the database) into the $date_of_birth field instead of the hardcoded 1970/03/17.