SuitePlugins
Forum Replies Created
-
You can find other functions in the um-short-functions.php file
I have taken a look at the source code of the plugin. The last login feature updates when a user logs in and only seems to update when a user has been logged out and logs back in.
Ultimate Member has a function that already converts this to a usable date.
The function is um_user_last_login_date( $user_id )
Forum: Plugins
In reply to: [Social Media Links for Ultimate Member] Can add but not remove linksThank you for letting me.
I am looking into this now.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] RegisterThis has been taking care of. Thanks for the heads up.
Yes, this is a great idea.
We are currently building for many add-ons, Social Articles will be a great addition.
Forum: Plugins
In reply to: [Private Avatars for BuddyPress] Translation file issueIt was a pleasure helping you with this. Happy that you found this bug.
Hey VentureCore,
I did not see this post until today. The cool thing about BuddyPress is that already have unique CSS class added to each field. So for instance there is the class with field idfield_1
Then there is class with field name
field_name
I hope this was helpful, let me know.
Forum: Reviews
In reply to: [Private Avatars for BuddyPress] Great…but translation file doesn't workThank you for pointing this out.
I have updated the plugin to work with the language file properly.Forum: Fixing WordPress
In reply to: permalink problem out of nowhereRight, you are correct. I forgot to mention to wrap the script in PHP tags
<?php if(!function_exists('apache_get_modules') ){ phpinfo(); exit; } ?>
Forum: Fixing WordPress
In reply to: permalink problem out of nowhereInteresting. Please replace the current content with this line
if(!function_exists('apache_get_modules') ){ phpinfo(); exit; }
Forum: Fixing WordPress
In reply to: permalink problem out of nowhereI understand that you have tried to save changes button several times but have you tried other permalink options to see if any of the others work?
There is a possibility that Mod Rewrite is not enabled on your server. In order to confirm this, in the root of your installation create a file called test.php and add the following code
<?php $res = 'Module Unavailable'; if(in_array('mod_rewrite',apache_get_modules())) $res = 'Module Available'; ?> <html> <head> <title>A mod_rewrite availability check !</title></head> <body> <p><?php echo apache_get_version(),"</p><p>mod_rewrite $res"; ?></p> </body> </html>
Then visit your site yourdomain.com/test.php to see the results.
Forum: Fixing WordPress
In reply to: Made all pages private – Can't access wp-adminHi David,
Sorry to hear about your issue. What method did you use to make all pages private?