How to use the new breadcrumbs correctly

I use widget context & widget login with these two plugins i can control which pages each widget is show on…. and if I want logged-in or logged-out users to see them

Do not load scripts and Styles on every page.

I tried using Gonzales to do the same thing, but frankly its a pain in the ass to have to do manually, and ought to be built-in. Who, but the author, knows and can easily keep track of which pages need to load which scripts and need which CSS support. Then I can go back to using Gonzales for dealing with other less careful authors.

AnsPress 2.4 is released

We are all thankfull to you and your contribution to the WP community. Really. I haven’t seen so much dedication for a long time from a developer. I wish you all the best with your business, life and health.

Footer widgets not responsive

New version of AskBug releasing tomorrow.

what functionality is to follow users?

Let me describe, since 2.4 we have activity feed for user and whole site as well. When you follow a user and taxonomy term then you won’t get notification for every activity on that item instead you can see them in your activity feed. Lets assume you follow a category and when 100 new question posted to that category then your notification will get spammed by this newly posted question. Notification are meant for informing you when you really need to be informed, like new answer, comment, followers etc.. 2.4 is stable now.

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.