mfiguerasma
Forum Replies Created
-
Forum: Plugins
In reply to: [BBP Auto-Close Topics] Topics always closedGreat, thanks!
Forum: Plugins
In reply to: [BBP Auto-Close Topics] Topics always closedFor your information, I’ve modified bbp-auto-close-topics.php :
l.67 and l.123
> I’ve changed:
$last_active = bbp_get_topic_last_active_time( $topic_id );
> For:
$last_element_id = bbp_get_topic_last_active_id($topic_id);
$last_active = get_post_field(‘post_modified’, $last_element_id);So instead of the “10 minutes ago” last active format, I get the last edit time of the last active post of the topic, and I work with an standard date and time format.
It works for me.
Forum: Plugins
In reply to: [bbPress - Report Content] Reply Notification Not appearingI had the same issue.
The function output_reply_notice() (class-bbpress-report-content.php L.880) got the reply id this way:
$reply_id = get_the_ID();
It returned the topic id, not the reply one.
I’ve modified to:
$reply_id = bbp_get_reply_id();
And it’s working for me.Hope it helps.
Forum: Fixing WordPress
In reply to: Media Library not working after updating to 4.2.2Your “usual troubleshooting step” worked for me too, thanks a lot!
Wow, thanks for answering so quickly!
Ok, I’ll keep looking for your updates, thanks a lot!Forum: Plugins
In reply to: [Rendez Vous] "New Rendez Vous" link is not workingYes! That’s it!
There wasn’t the wp_footer() call as most of the code is personalized, only the wp_header()
It works fine now, thanks a lot!Forum: Plugins
In reply to: [Rendez Vous] "New Rendez Vous" link is not workingYes, the action is included in the plugin.php file.
I’m in https://my_site/members/user/rendez-vous/ and my console displays nothing ??
On clicking, the only result is a “redirect” to “#” so my final url is https://my_site/members/user/rendez-vous/# with no action done…
I’ve created a type to test whether it was required, but no change.
I’ve deleted all my header script includes and nothing…
What is it exactly supposed to do?Forum: Plugins
In reply to: [Rendez Vous] "New Rendez Vous" link is not workingHi,
I’m using the theme fifteen and I’ve tried to run only with these two plugins…
Any browser has the same result (last versions of Firefox, Chrome, Opera and IE)Thanks,
Forum: Plugins
In reply to: [Rendez Vous] "New Rendez Vous" link is not workingNo idea? Anybody there?
Forum: Plugins
In reply to: [Invite Anyone] "Tunning" the pluginWell, if anybody needs it, at the end I’ve manually called the function groups_notification_group_invites() and it works for my requirements.
Regards,Forum: Plugins
In reply to: [Invite Anyone] Resending InvitationsI’m in the same issue, need to know how to resend an invitation and nobody answers me…
Did you finally find a solution?Forum: Fixing WordPress
In reply to: A rewrite rule kills the sessionDone, I found a second htaccess file inside path1 that overwrote the rules and changed the base domain, so it didn’t work.
Now, once this htaccess updated, everything works fine.Forum: Plugins
In reply to: [Delete Me] Can't display the Delete me linkOk, that might be…
I’ve checked it again and it works. Maybe I messed it up with so many sessions and browsers while testing, newbie error ??
Thanks a lot!Forum: Plugins
In reply to: [Delete Me] Can't display the Delete me linkUps, new information, I can see the link with Firefox (37.0.1) but not with Chrome (41.0.2272.118 m), Opera (28.0.1750.51) or IE (11.0.9600.17691)