SlothLoveChunk
Forum Replies Created
-
@johnny5 I had the exact same issue as @nathaningram. I wanted to report that the beta seems to have resolved it, as the database upgraded finished successfully. Thanks for the quick turnaround.
Forum: Plugins
In reply to: [Theme My Login] Password Reset Form Not WorkingYes, I have copied and customized them.
Forum: Plugins
In reply to: [Theme My Login] Password Reset Form Not WorkingYou should have a couple emails from me with more specifics.
Forum: Plugins
In reply to: [Theme My Login] Password Reset Form Not WorkingI run a relatively popular site and since the 6.3.12 update I have received a number of support emails stating that the password reset function is not working (related to the reset link I’m the email not being valid). I’m happy to help test or debug any way I can.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WP 4.0 / Relevanssi / bbPressSorry, my logic in the second line above was incorrect. I think the following is correct (again, there may be a better way):
if ($query->query_vars['post_type'] == 'topic' || $query->query_vars['post_type'] == 'reply') $bbpress = true; if (is_array($query->query_vars['post_type']) && (in_array('topic', $query->query_vars['post_type']) || in_array('reply', $query->query_vars['post_type']))) $bbpress = true;Forum: Plugins
In reply to: [Relevanssi - A Better Search] WP 4.0 / Relevanssi / bbPressOn my end the fix in 3.3.7 got topics showing again, but replies were still missing. Adding an additional check for “post_type == ‘reply'” in common.php gets them showing:
if ($query->query_vars['post_type'] == 'topic' || $query->query_vars['post_type'] == 'reply') $bbpress = true; if (is_array($query->query_vars['post_type']) && in_array('topic', $query->query_vars['post_type']) && in_array('reply', $query->query_vars['post_type'])) $bbpress = true;Disclaimer, I am no expert here, so there may be a better solution.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] WP 4.0 / Relevanssi / bbPressSame here.