How to hide private pages from AnsPress users?

I found the same problem, and also hid the link button. To allow users to include links, plus I included this snippet: add_filter ('the_content' 'make_clickable'); This currently enables users to include a link by typing http: //, or pasting the link on a word. In my case, I do not want users to access any internal page. And to prevent spam, external links are “no follow”: add_filter('the_content', 'my_nofollow'); add_filter('the_excerpt', 'my_nofollow'); function my_nofollow($content) { return preg_replace_callback('/<a[^>]+/', 'my_nofollow_callback', $content); } function my_nofollow_callback($matches) { $link = $matches[0]; $site_link = get_bloginfo('url'); if (strpos($link, 'rel') === false) { $link = preg_replace("%(href=\S(?!$site_link))%i", 'rel="nofollow external" $1', $link); } elseif (preg_match("%href=\S(?!$site_link)%i", $link)) { $link = preg_replace('/rel=\S(?!nofollow)\S*/i', 'rel="nofollow external"', $link); } return $link;

Edit post Breadcrumb

Because you cannot access edit page without __nonce and post_id

AnsPress editor – Image stretching

This will be fixed.

Ability to disable Bootstrap based CSS

Exclude grid.less from main.less and compile it.

Search by user

Try this : “user:rahularyan your search string”

Duplicate questions being asked

There is a simple solution for that: Disable button after it’s been pressed, Enable it only after ajax returned “failed”. Let the users click disabled button all they want. Showing error messages is so previous century.