Title: bcripps's Replies | WordPress.org

---

# bcripps

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Display Posts - Easy lists, grids, navigation, and more] add link to entire listing-item](https://wordpress.org/support/topic/add-link-to-entire-listing-item/)
 *  Thread Starter [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/add-link-to-entire-listing-item/#post-11884784)
 * I figured out “a” way to do it—though I’m sure there’s likely a better way (I’m
   still listening!)
 * I used the output filter and made some amendments to it, like this:
 *     ```
       /* add link to 'display posts' output items */
       function add_link_to_excerpt( $output, $original_atts, $image, $title, $date, $excerpt, $inner_wrapper, $content, $class, $author, $category_display_text ) {
   
       	$post_link = get_the_permalink();
   
       	// Now let's rebuild the output and add the $post_link to it
       	$output = '<' . $inner_wrapper . ' class="' . implode( ' ', $class ) . '">' . $image . $title . '<a href="' . $post_link . '" class="date">' . $date . '</a>' . $author . $category_display_text . '<a href="' . $post_link . '" class="excerpt">' . $excerpt . '</a> </' . $inner_wrapper . '>';
   
       	// Finally we'll return the modified output
       	return $output;
       }
       add_filter( 'display_posts_shortcode_output', 'add_link_to_excerpt', 10, 11 );
       ```
   
    -  This reply was modified 6 years, 8 months ago by [bcripps](https://wordpress.org/support/users/bcripps/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[New User Approve] User Approved Filter still not working](https://wordpress.org/support/topic/user-approved-filter-still-not-working/)
 *  [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/user-approved-filter-still-not-working/#post-8968645)
 * I’m having (and have been having) the same issue. I can’t sort by pending, which
   is an important function for my end users. Please fix this bug!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.miniAudioPlayer - an HTML5 audio player for your mp3 files] Downloads won’t work](https://wordpress.org/support/topic/downloads-wont-work-2/)
 *  [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/downloads-wont-work-2/#post-8887770)
 * I am having the same download problem as [@pchamp](https://wordpress.org/support/users/pchamp/).
   It doesn’t seem to be a cookie issue, or if it is, giving permission for cookies
   doesn’t fix the problem. I have commented out lines 11 and 12, and this works,
   but if it opens up my site to vulnerabilities, I’d like to find a more permanent
   and safe solution. Any other ideas? (This is a new issue, BTW. The plugin has
   been working fine until recently).
    -  This reply was modified 9 years, 2 months ago by [bcripps](https://wordpress.org/support/users/bcripps/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.miniAudioPlayer - an HTML5 audio player for your mp3 files] Download error](https://wordpress.org/support/topic/download-error-5/)
 *  Thread Starter [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/download-error-5/#post-7276520)
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.miniAudioPlayer - an HTML5 audio player for your mp3 files] Download error](https://wordpress.org/support/topic/download-error-5/)
 *  Thread Starter [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/download-error-5/#post-7276447)
 * Oh, and yes, I’m running the latest plugin version 1.7.9.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[New User Approve] WordPress 4.4 – User Approved Filter Broke](https://wordpress.org/support/topic/wordpress-44-user-approved-filter-broke/)
 *  [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/wordpress-44-user-approved-filter-broke/#post-6852488)
 * +1. Agreed. I was just coming here to ask for this functionality to be brought
   back/fixed!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] Cannot backup on new https site](https://wordpress.org/support/topic/cannot-backup-on-new-https-site/)
 *  Thread Starter [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/cannot-backup-on-new-https-site/#post-6607144)
 * Great, this plugin worked! Did you mean a “false plugin,” as in malware?
 * Thanks for your help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms Directory] Directory that displays only certain entries based on user information](https://wordpress.org/support/topic/directory-that-displays-only-certain-entries-based-on-user-information/)
 *  Thread Starter [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/directory-that-displays-only-certain-entries-based-on-user-information/#post-6538665)
 * The key is to pass fields on by the confirmation page of one form as search queries
   to a directory page. The fields you choose to pass on are the field numbers of
   the search boxes. When you submit the first form, the search fields on the directory
   page are already filled in and displayed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms Directory] Directory that displays only certain entries based on user information](https://wordpress.org/support/topic/directory-that-displays-only-certain-entries-based-on-user-information/)
 *  Thread Starter [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/directory-that-displays-only-certain-entries-based-on-user-information/#post-6538664)
 * Found my answer, nevermind!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms Advanced File Uploader] Pass uploaded file to another form via Query string](https://wordpress.org/support/topic/pass-uploaded-file-to-another-form-via-query-string/)
 *  Thread Starter [bcripps](https://wordpress.org/support/users/bcripps/)
 * (@bcripps)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/pass-uploaded-file-to-another-form-via-query-string/#post-6532918)
 * On the first forms confirmation page, I choose to send information via query 
   string to the 2nd form. I name the query string something like: uploaded_files
   ={uploaded_files:7} with ‘&’ between each passed form field.
 * Then, on the second field, I take the ‘uploaded_files’ name that I gave in the
   first form and place it in the Parameter Name box under the ‘Allow field to be
   populated dynamically’ checkbox.
 * When the first form is filled out, then, all the passed on information shows 
   up in the second form for use. It works fine with text, but again, with an uploaded
   file, using the Advanced Uploader plugin, the uploaded file’s url from the first
   form is not passed to the second.
 * Does that answer what you’re wanting to know?

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