Title: macbo's Replies | WordPress.org

---

# macbo

  [  ](https://wordpress.org/support/users/macbo/)

 *   [Profile](https://wordpress.org/support/users/macbo/)
 *   [Topics Started](https://wordpress.org/support/users/macbo/topics/)
 *   [Replies Created](https://wordpress.org/support/users/macbo/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/macbo/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/macbo/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/macbo/engagements/)
 *   [Favorites](https://wordpress.org/support/users/macbo/favorites/)

 Search replies:

## Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] CF7 and Google reCAPTCHA issue](https://wordpress.org/support/topic/cf7-and-google-recaptcha-issue/)
 *  [macbo](https://wordpress.org/support/users/macbo/)
 * (@macbo)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/cf7-and-google-recaptcha-issue/#post-11072463)
 * Hi Allan,
    i’m having the same issue on one of my sites, too. Tried several reinstalls
   of recpatcha v3… Found out, that if i’m logged into my backend as admin – it 
   works. And if not, it doesn’t work. Any ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] CF7 and Google reCAPTCHA issue](https://wordpress.org/support/topic/cf7-and-google-recaptcha-issue/)
 *  [macbo](https://wordpress.org/support/users/macbo/)
 * (@macbo)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/cf7-and-google-recaptcha-issue/#post-11072456)
 * Hi Allan,
    i’m having the same issue on one of my sites, too. Tried several reinstalls
   of recpatcha v3… Found out, that if i`m logged into my backend as admin - it 
   works. And if not, it doesn`t work. Any ideas?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Widgets doesn’t work with WP 4.9](https://wordpress.org/support/topic/widgets-doesnt-work-with-wp-4-9/)
 *  [macbo](https://wordpress.org/support/users/macbo/)
 * (@macbo)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/widgets-doesnt-work-with-wp-4-9/#post-9693592)
 * I’m having the same issues with the german version. Changing my account to english
   solved my problem. Clearing caches seems to be important, too.
 * Two other installations seem to work well, but the third isn’t. Neither widgets
   nor the text editor or even add media works. I tried to change the theme and 
   turned off my plugins – nothing helped. So just change try to change your account
   to english, until there is a new german version.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Beautiful taxonomy filters] Apply Filter Button for the first time](https://wordpress.org/support/topic/apply-filter-button-for-the-first-time/)
 *  Thread Starter [macbo](https://wordpress.org/support/users/macbo/)
 * (@macbo)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/apply-filter-button-for-the-first-time/#post-6441261)
 * Hi Jonathan,
 * thanks for replying. The problem seams to be a conflict with the **Admin Post
   Navigation Plugin**. Deactivating it helped.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Beautiful taxonomy filters] Display all filtering criteria in the headline of result page](https://wordpress.org/support/topic/display-all-filtering-criteria-in-the-headline-of-result-page/)
 *  Thread Starter [macbo](https://wordpress.org/support/users/macbo/)
 * (@macbo)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/display-all-filtering-criteria-in-the-headline-of-result-page/#post-5892236)
 * Sorry, maybe I wasn’t precise enough…
 * In my archive.php I use your function “show_beautiful_filters_info()” to display
   my headline using the work around I described above. In my sidebar I use Your
   widget for filtering.
 * The sidebar widget is displaying correctly: ‘all taxonomy’ if nothing is chosen.
 * But the info-function is only displaying the last ‘all taxonomy’ in the right
   way. The others show only ‘taxonomy’ without “all’ in front of them, when not
   chosen.
 * I asume, there is a slightly different code inside that is responsible for displaying
   the results in a different way.
 * Example 1:
 *     ```
       Sidebar                 displays in Sidebar   displays in info
       tax1 - nothing             all tax1             something
       tax2 - nothing             all tax2             tax1 (without 'all')
       tax3 - something           something            tax2 (without 'all')
       ```
   
 * Example 2:
 *     ```
       Sidebar                  displays in Sidebar   displays in info
       tax1 - nothing             all tax1              something
       tax2 - something           something             tax1 (without 'all')
       tax3 - nothing             all tax3              all tax3 (with 'all')
       ```
   
 * To sum up: tax3 always works correct, tax1 and tax2 don’t.
 * Thanks for Your excellent plugin! Now I have about 120 articles with 3 taxonomies
   to filter and it works really fine ;o)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Beautiful taxonomy filters] Display all filtering criteria in the headline of result page](https://wordpress.org/support/topic/display-all-filtering-criteria-in-the-headline-of-result-page/)
 *  Thread Starter [macbo](https://wordpress.org/support/users/macbo/)
 * (@macbo)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/display-all-filtering-criteria-in-the-headline-of-result-page/#post-5892138)
 * Hi Jonathan,
    thank You for both hints!
 * My PHP knowledge isn’t high enough, so I’ve built a work around with CSS for 
   your filter info module. This works fine, but still there is a minor problem 
   while showing the result: all not chosen drop down-lists show their name without
   showing “all” in front of it. Exception: the last drop down shows it in the correct
   way.
 * Do You have an idea?
 * Here’s my CSS work around:
 *     ```
       .beautiful-taxonomy-filters-active-filter {
       	display: inline;
       }
       .beautiful-taxonomy-filters-info-heading {
       	display: inline;
       }
       .beautiful-taxonomy-filters-postcount {
       	display: none;
       }
       .beautiful-taxonomy-filters-single-tax {
       	display: inline;
       }
       .single-tax-key {
       	display: none;
       }
       .single-tax-value:before {
       	content: "bs0020 bs00BB bs0020";
       		/* it should be "backslash0020backslash00BBbackslash0020"
       		this represents  " » ", thanks to
       		https://css-tricks.com/css-content/ and
       		http://www.evotech.net/articles/testjsentities.html */
       }
       ```
   

Viewing 6 replies - 1 through 6 (of 6 total)