Bill Erickson
@billerickson on WordPress.org and Slack
- Member Since: August 21st, 2008
- Location: Georgetown, TX
- Website: billerickson.net
- Job Title: WordPress Developer
- Employer: Erickson Web Consulting
Bio
Contribution History
Bill Erickson’s badges:- Core Contributor
- Meetup Organizer
- Plugin Developer
- WordCamp Speaker
-
Committed [2387779] to Plugins Trac:
tagging 1.3.01 month ago
-
Committed [2369480] to Plugins Trac:
version 1.3.02 months ago
-
Committed [2364912] to Plugins Trac:
update tested to version2 months ago
-
Committed [2364911] to Plugins Trac:
updated tested to version2 months ago
-
Committed [2364910] to Plugins Trac:
update tested to version2 months ago
-
Created a topic, This plugin is no longer maintained, on the site WordPress.org Forums:
This plugin currently works perfectly well with the la…2 months ago
-
Committed [2364884] to Plugins Trac:
bump tested to version2 months ago
-
Committed [2364882] to Plugins Trac:
bump tested to version2 months ago
-
Committed [2364880] to Plugins Trac:
bump tested to version2 months ago
-
Committed [2364847] to Plugins Trac:
update tested to version2 months ago
-
Committed [2364845] to Plugins Trac:
bump tested to2 months ago
-
Posted a reply to Features and teasers are not cropped, on the site WordPress.org Forums:
There are two possible issues here: 1. Do you know if those image sizes are…3 months ago
-
Posted a reply to Cannot get anything but 0 to display, on the site WordPress.org Forums:
Can you share a post URL that is receiving 0 counts? What happens when you…3 months ago
-
Created a topic, Bundle the offline.php file in a plugin, on the site WordPress.org Forums:
Is it possible to bundle the offline.php file in a plu…4 months ago
-
Posted a reply to Question displaying child and parent posts, on the site WordPress.org Forums:
Unfortunately no, you wouldn't be able to list the grandchild post. The post_parent parameter only…4 months ago
-
Posted a reply to Custom taxonomy doesn’t display, on the site WordPress.org Forums:
Is your custom taxonomy applied to posts or a custom post type? The default value…4 months ago
-
Posted a reply to exclude current item, on the site WordPress.org Forums:
Yes, you can use the exclude_current parameter. [display-posts exclude_current="true" taxonomy="category" tax_term="current"]4 months ago
-
Posted a reply to Posts ordering, on the site WordPress.org Forums:
Here's a list of all the orderby options (pulled from here): ‘none‘ – No order…5 months ago
-
Posted a reply to Does it work with Posts?, on the site WordPress.org Forums:
Here's how to enable the "Hide Title" for posts: https://www.billerickson.net/code/genesis-title-toggle-for-posts/ And here's how to enable…5 months ago
-
Posted a reply to more than one paginated Sorting on on the same page, on the site WordPress.org Forums:
Yes, you can paginate them separately. Instead of using pagination="true" for all of them, use…5 months ago
-
Posted a reply to logical condition for categories, on the site WordPress.org Forums:
You can do that using the taxonomy query parameters. [display-posts taxonomy="category" tax_term="city, state" tax_operator="AND"]5 months ago
-
Posted a reply to Using carriage returns inside shortcode brackets really messes things up, on the site WordPress.org Forums:
Thank you for the feedback. I did some testing and this appears to be an…5 months ago
-
Posted a reply to Random ordering, on the site WordPress.org Forums:
Yes, you can set orderby="rand". Ex: [display-posts orderby="rand"]5 months ago
-
Posted a reply to Hide Title; Unlink Title, on the site WordPress.org Forums:
Try this snippet instead: https://gist.github.com/billerickson/dec408fdb8bf9d35ed2acf4876b6e9c2 It will only run if the shortcode contains unlink_title=”true”. Ex:…5 months ago
-
Posted a reply to unlinking filter, on the site WordPress.org Forums:
Try this snippet instead: https://gist.github.com/billerickson/dec408fdb8bf9d35ed2acf4876b6e9c2 It will only run if the shortcode contains unlink_title="true". Ex:…5 months ago
-
Posted a reply to Display nothing when user changes post category, on the site WordPress.org Forums:
You could use a plugin like Widget Context or Widget Logic to only show the…5 months ago
-
Posted a reply to Plugin still supported?, on the site WordPress.org Forums:
Yes, it is still supported. It's fairly feature complete so no updates have been required.5 months ago
-
Posted a reply to display recently modified posts, on the site WordPress.org Forums:
Yes, you can use [display-posts orderby="modified"]6 months ago
-
Posted a reply to Internet Explorer issues, on the site WordPress.org Forums:
CSS Grid only works in modern browsers (everything except IE). If you want to add…6 months ago
-
Posted a reply to list posts organized by year? (feature request), on the site WordPress.org Forums:
Have you tried the Display Posts - Date View extension? Once installed, add this to…6 months ago
-
Posted a reply to Update coming soon?, on the site WordPress.org Forums:
If a security or compatibility update is required, it will be made. This plugin is…6 months ago
-
Posted a reply to Update coming soon?, on the site WordPress.org Forums:
The Display Posts plugin is fairly complete feature-wise. I'll update it if there's a new…6 months ago
-
Posted a reply to Issues after having uninstalled Genesis Grid, on the site WordPress.org Forums:
Have you made any code customizations to your theme that leverage functions found in the…7 months ago
-
Posted a reply to Display parameters HTML styling for wrapper attribute, on the site WordPress.org Forums:
You'll need to use the display_posts_shortcode_wrapper_open filter to customize the ordered list HTML tag (ol).…7 months ago
-
Posted a reply to Order Post by ID into shortcode, on the site WordPress.org Forums:
Try adding orderby="post__in" to the shortcode, like this: [display-posts post_type="recensioni" layout="sidebar-chart" id="2606,2609,1183,1242" orderby="post__in"]7 months ago
-
Posted a reply to Error With “Exclude posts already displayed” Code, on the site WordPress.org Forums:
I just updated the code snippet in that post. Can you update and see if…7 months ago
-
Posted a reply to what happened to DPS Exclude Sticky, on the site WordPress.org Forums:
The ignore_sticky_posts parameter should work the same way as the WordPress core parameter with the…7 months ago
-
Posted a reply to Orderby is not working, on the site WordPress.org Forums:
I'm looking at the page you included as an example and the posts are sorted…7 months ago
-
Posted a reply to Query based on current username, on the site WordPress.org Forums:
Try adding this to your theme's functions.php file or a core functionality plugin: https://gist.github.com/billerickson/58e50a14c596c2fa4268a6e3bda496677 months ago
-
Posted a reply to Custom Post and Category Not Working, on the site WordPress.org Forums:
Can you link to the specific category archive from which you'd like to pull posts?…7 months ago
-
Posted a reply to Share Count number different if you are signed in or out of website, on the site WordPress.org Forums:
My guess is it's due to caching. When you are logged in you are seeing…7 months ago
-
Posted a reply to Query based on current username, on the site WordPress.org Forums:
Display Posts already lets you query for the current user's posts. It does it based…7 months ago
-
Posted a reply to Genesis 404 plugin: tests folder, test-test.php, on the site WordPress.org Forums:
The test folder and test-test.php file were added to the plugin 6 years ago. The…7 months ago
-
Posted a reply to Post Type Attachment How To Display Image, on the site WordPress.org Forums:
I'm sorry but this plugin does not support displaying the image for attachments. You could…7 months ago
-
Posted a reply to Feature Image Link, on the site WordPress.org Forums:
While this plugin does not support linking the image to external urls as-is, there are…7 months ago
-
Posted a reply to Add Read More button…? Take Two, on the site WordPress.org Forums:
Sorry about that, just responded: https://wordpress.org/support/topic/add-read-more-button-3/#post-12566513 Let's keep it to one thread. Closing this one.7 months ago
-
Posted a reply to Add Read More button…?, on the site WordPress.org Forums:
The excerpt_more parameter will only work if there's an excerpt included. You would need to…7 months ago
-
Posted a reply to Parameters not working after first 10 posts, on the site WordPress.org Forums:
The default query settings are: - order = date - order = DESC When you…7 months ago
-
Posted a reply to Custom Post and Category Not Working, on the site WordPress.org Forums:
Are you sure the 'category' taxonomy has been added to your custom post type? My…7 months ago
-
Posted a reply to Exclude current post?, on the site WordPress.org Forums:
And yes, this does work for pages. The default post type is 'post', but you…7 months ago
Developer
-
BE Media from Production
Active Installs: 100+
-
BE Stats
Active Installs: 60+
-
BE Subpages Widget
Active Installs: 8,000+
-
CMS Page Order
Active Installs: 4,000+
-
Disable Genesis Schema
Active Installs: 2,000+
-
Display Posts - Date View
Active Installs: 300+
-
Display Posts - Easy lists, grids, navigation, and more
Active Installs: 100,000+
-
Div Shortcode
Active Installs: 4,000+
-
Event Manager Theme Functionality
Active Installs: 100+
-
Flex Slider for WP Rotator
Active Installs: 70+
-
Gallery Metabox
Active Installs: 2,000+
-
Genesis 404 Page
Active Installs: 8,000+
-
Genesis Grid
Active Installs: 4,000+
-
Genesis Subpages as Secondary Menu
Active Installs: 200+
-
Genesis Title Toggle
Active Installs: 20,000+
-
Image Override
Active Installs: 30+
-
Integrate ConvertKit and WPForms
Active Installs: 300+
-
Limit Modified Date
Active Installs: 500+
-
Migration Notice
Active Installs: Less than 10
-
Old Post Notification
Active Installs: 40+
-
Password Pointer
Active Installs: 10+
-
Shared Counts - Pinterest Image
Active Installs: 200+
-
Shared Counts - Social Media Share Buttons
Active Installs: 10,000+
Contributor
-
Ketchup Coupons
Active Installs: 100+
-
Term Menu Order
Active Installs: 1,000+