Where can i find the demo link for anspress
In part because it’s helpful to have been able to experiment with the different versions. So Anspress Master and Anspress 3.0.0 (taken from github a month ago) both stop visual composer working correctly on my WP… Because of this I have gone back to 2.4.8
Hi, Why delete and not just update your installation via normal WordPress updates ?
http://www.mediafire.com/download/h7i033u2231w9e0/anspress-question-answer-it_IT.po
It is developed on GitHub: https://github.com/bmackinney/wp-slack-anspress
I was able to achieve this by modifying a bit the code from this question: https://anspress.io/questions/question/displaying-pmp-membership-type-under-name/ You just need to remove the part that checks PMPro user level. Here is the code I used: /** * Append user level information *@param string $name User name. *@param array $args Name arguments. **/ function io_ap_user_display_name( $name, $args ) { if ( user_can( $args['user_id'], 'ap_moderator' ) || is_super_admin( $args['user_id'] ) ) { $level_name = 'Staff'; } if ( empty( $level_name ) ) { return $name; } if ( $args['html'] ) { return $name . '<span class="role-label level-'.strtolower($level_name ).'">'. $level_name.'</span>'; } return $name . ' ('. $level_name.')'; } add_filter('ap_user_display_name', 'io_ap_user_display_name', 10, 2 );
Hello, Might be linked to that js error I have : anspress.min.js:1 Uncaught ReferenceError: disable_q_suggestion is not defined which breaks js on my site.
Ok, it was a PHP version issue. Upgraded from PHP 5.3 to 5.6. It worked. Thanks for the awesome plugin.
Mentions also not working for me.
i have mentions enable here is image http://prntscr.com/bqzwm2 please help it’s awesome feature I needed it on my site. thanks in advance