Hello,
I am trying to change the text that describes the last activity on a post (see below).

Based on a suggestion here: https://anspress.io/questions/question/some-translations-dont-seem-to-work/ I added this to my child theme’s functions.php but nothing was changed on the front end.

function my_ap_activity_actions( $actions ) {
$actions['status_publish']['verb'] = 'hello world';
return $actions;
}
add_filter( 'ap_activity_actions', 'my_ap_activity_actions' );


In class-activity-helper.php I found:

/**
* Filter allows adding new activity actions. This hook is only called once
* while class initiate. Hence, later filters will not work. Also make sure
* to keep array key length less then 20 characters.
*
* @param array $actions Originally registered actions.
* @since 4.1.2
*/
$actions = apply_filters( 'ap_activity_actions', $defaults );


I think ‘later filters will not work’ is why adding the code above to my functions.php is not working.
I also tried using the Code Snippets plugin that worked for itomhq but that did not work for me.
So, what is the proper way for me to change the activity actions text?
Thanks
robertg

As of right now, we have about well over 50 on the home page!!!

<?php if ( function_exists( “get_yuzo_related_posts” ) ) { get_yuzo_related_posts(); } ?>
this is yuzo related-post plugin shortcode when i paste this shortcode into single-question.php then it works only if there is question posted, but when someone post answer the related post box disappear.. help me to solve this issue..

Email Templates
Error –  Something went wrong, last action failed.

I am detecting a Duplicate Title Tag on the Google Search Console for Questions on AnsPress. These are the affected URLs:
/?ap_page=shortlink&ap_a=22621
/forums/question/question-slug/
/forums/question/question-slug/?order_by=active
/forums/question/question-slug/?order_by=oldest
/forums/question/question-slug/?order_by=voted
/forums/question/question-slug/answer/22621/
what could be the possible solution for this? adding on robots.txt?

Hi,
I want to add the Show/Hide button or link to show the description editor in Ask Question Form page.
I tried to do it at ask.php file but I just find 

<?php ap_ask_form(); ?>

which is it will hide all of the ask form field.
I want only Description editor to hide, like a spoiler link, the description editor will be shown if the user click “add description” link.
How to do it? Which file should I edit?