Members who want to publish posts on your community site have to ask for backend access or use clunky third-party forms. BuddyPress Member Blog gives every member a frontend Editor.js blog interface that auto-saves drafts every 60 seconds and adds a Blog tab to their BuddyPress profile. Works standalone or alongside BuddyPress, BuddyBoss, and PeepSo.
Shortcodes reference corrected: it documented a shortcode that does not exist, mislabelled the post form, listed a wrong default, and omitted [bp-member-blog-related] entirely.
Fix
Autosave no longer rewrites a post's status. Opening a post that was awaiting review, published, scheduled or private and letting autosave run turned it into a draft, so a submission left the moderation queue and a live post came off the site while its author fixed a typo.
Autosave no longer overwrites a post the public can already see. Changes to a published, scheduled or private post are kept on a per-author autosave revision and offered back when the member returns, so unfinished edits never reach readers.
The saving indicator now says which of those happened, instead of reporting "Draft saved" on a post it had not made a draft.
The author directory asks the database once for follower counts instead of once per writer, so the page cost no longer grows with the number of writers shown.
The failure message when removing a featured image is translatable again; every language saw the English text.
Media modal tabs stay readable in dark mode on Reign, which forces light colours with !important.
A member refused over the REST API was told "Array" instead of the reason. Post limits, restricted roles and out-of-credits all returned the literal word, and every refusal logged a PHP warning; the form was always correct, so only API and app clients saw it.
Dev
Architecture docs no longer list seven AJAX handlers removed in 4.0.x; the frontend speaks REST and Free registers three admin-only AJAX actions.
Compat
Aligned with WB Member Blog Pro 4.1.0. Install both updates together.
v4.0.1
August 1, 2026
New 4 Improve 2 Fix 2 Dev 3 Compat 1
New
Post settings now sit in a sidebar beside the writing area, the way the WordPress editor does. The form opens with the fields nearly every writer uses and keeps the rest one click away, so the editor is visible without scrolling.
Load more on every listing shortcode. Add `load_more="yes"` to show a button instead of page links; the pager stays as the fallback when JavaScript is unavailable.
Every email now uses one template with your site's name, address and colours, and carries a plain-text alternative for clients that do not display HTML.
Developers can retitle, rewrite, disable or fully replace any of the 17 emails by id, and override any of them from a theme template. See docs/website/developer-guide/emails.md.
Improve
Members can upload files up to whatever the server allows. The plugin previously imposed a 5 MB ceiling of its own, regardless of the host's limit; a limit set in Settings is still honoured and is capped at the server's.
Empty sections no longer appear on the post form. A section is dropped when the features inside it render nothing, so a member who does not use co-authors never sees a Collaboration heading.
Fix
Automatic updates did not work on any site. The bundled licence key was never written to the option the update layer reads, so this plugin was absent from WordPress's update check entirely and no update ever appeared.
Moderators with the Editor role can now view a member's draft. They could already edit it and see it listed for review, but the permission check that answers "may this person view this draft" refused.
Dev
Functional flow tests that run inside a real WordPress, covering submission, custom fields, emails, the post form, pagination, listings, credits, engagement and permissions. Run with `wp eval-file tests/run.php`.
Image upload now has one transport instead of three. The `bpmb/v1` route alias and the `bpmb_upload_image` / `bpmb_attach_image` AJAX handlers have been removed; use `wbcom-member-blog/v1/upload-image` and `wbcom-member-blog/v1/attach-image`. The AJAX pair was documented as a fallback for hosts that block `/wp-json` but could never run, because the editor chose its transport at page load from values that are never empty.
Free no longer registers any frontend AJAX action. The three remaining actions are admin-only.
Compat
Pairs with WB Member Blog Pro 4.0.1, which fixes a fatal error that occurred when Pro 4.0.0 ran against WB Member Blog 3.x or older. Install both updates together.
v4.0.0
July 28, 2026
New 13 Improve 5 Fix 17 Security 2 Dev 5 Compat 1
New
Writer profiles at /author/{name}/ with an avatar, bio, post and view counts, and a Follow button. Works with or without BuddyPress; switch it off under Content if your theme already has author archives you like.
Follow a writer and get a feed of their new posts, plus an optional digest email of what the writers you follow have published. The digest is off unless a member asks for it, and every email carries a one-click unsubscribe link that needs no login. Members choose their notification preferences on the Author Dashboard settings screen, which is part of WB Member Blog Pro.
Clap for a post. Members can clap up to fifty times; the count is public and tells a reader the post is worth their time. The clap and save buttons appear under the article and on every post list.
Save posts to read later, and browse them in a private reading list.
A Features screen. One list of everything this plugin puts on your site - writer profiles, topic hubs, following, claps, the reading list, related posts, the digest - each with a plain description and an on/off switch. Switching a feature off removes it everywhere AND closes its REST route, so it is off rather than merely hidden. Existing claps and saved posts are kept, not deleted.
Follow a topic, not just a writer. Every category gets a Follow button, and the reading feed becomes "posts by the writers I follow, or in the topics I follow". A brand-new member who knows nobody on your site can follow two topics and have a feed worth reading on their first visit. Categories only, not tags: a category is curated by you, while tags are free-typed by every member and a site soon has thousands. Add tags with the bpmb_followable_taxonomies filter if yours are curated. Followed topics appear in the digest and never trigger a per-post email - a busy topic would mail you twenty times a day.
Topic hub on category and tag archives, showing the topic description, the members writing about it, and their posts.
Featured posts. Editors pick posts from the Posts list and surface them with the Featured Posts block or shortcode.
Moderation queue. Approve or Reject pending member posts straight from the Posts list, with a count badge on the Member Blog menu. Rejected posts go back to the author as a draft, never to the trash.
Related posts under every article, plus blocks for every shortcode the plugin ships.
One-click unsubscribe on every email the plugin sends. No login required.
Choose what happens to members' data when you delete the plugin. Under Content, "When this plugin is deleted" is unticked by default, so reading lists, follows, claps, view history and writer statistics survive removal and are picked up again if you reinstall. Tick it only if you want them gone for good. Your blog posts are never deleted either way, and deactivating never touches your data.
A Discover screen listing the rest of the Wbcom range, showing which ones you already have and installing the free ones in a click.
Improve
Updating an existing site changes nothing on it. Every new feature in 4.0.0 arrives switched OFF: your author, category and tag archives, your posts and your post lists look exactly as they did. A notice points you at the Features screen, where one button turns everything on if that is what you want. A fresh install still gets the full plugin out of the box.
Post lists, author directories and the dashboard stay fast on large sites; a topic with 10,000 posts loads in the same number of queries as one with ten.
Right-to-left languages are supported throughout the frontend, including the post editor, single posts and every shortcode.
The plugin is fully translatable. 148 strings were missing from the translation template and could not previously be translated at all, including the post status badges, the SEO hints and the empty states.
Emails are queued rather than sent during the request, so publishing a post is instant even for a writer with thousands of followers.
Fix
Turning off "Publish immediately" now actually holds posts for review. It previously had no effect at all, and member posts went straight to the live site unreviewed.
A post marked Private is now private. It was previously published publicly, which was the opposite of what the member asked for.
Editing your own published post no longer takes it off the site when moderation is on.
Turning off autosave now actually stops autosave.
Draft recovery only offers a draft from the last 24 hours that has something in it, and shows the time in a readable format.
Editors can now edit and review member posts. Only administrators could before.
Re-editing a post keeps its blocks. The editor's block data was never being saved on sites running WB Member Blog Pro, so every re-edit rebuilt the post from its HTML and quietly lost image settings, list types, embed details and code languages. The post itself always looked right, which is why this went unnoticed.
Image alignment settings are kept when a post is saved instead of being discarded.
The author directory sends you to the right writer on sites without BuddyPress. Every card previously linked to the same page.
A writer is no longer shown a clap button on their own post. Clapping your own post is not allowed, so the button could never work: it animated when pressed and then silently did nothing.
Notifications about claps and new posts from writers you follow read as sentences. They previously displayed an internal name such as "bpmb_post_clapped", and could not be cleared.
Deleting a post now removes the notifications about it, instead of leaving notifications that cannot be read, opened or cleared.
A member's private posts appear under Published on their own dashboard, where they can still read, edit and delete them, and the post counts include them.
The status badge on a post now says Private or Scheduled when that is what the post is. Anything that was not published or pending review was previously labelled Draft.
Deleting the plugin no longer leaves seven database tables behind on your site forever. Cleanup now happens on delete, and follows the setting described above.
Every control on the settings screens is now announced correctly by screen readers. Toggles previously read as an unlabelled checkbox with no indication of which setting they belonged to.
Buttons no longer show two spinners at once while saving.
Security
Posts created through the WordPress REST API now obey the plugin's posting rules and moderation.
Members can no longer unpublish or republish other members' posts.
New actions: bpmb_post_approved, bpmb_post_rejected, bpmb_post_featured, bpmb_post_clapped, bpmb_followed, bpmb_bookmark_added.
Full hook reference, REST API reference, template and extending guides in docs/website/developer-guide/. The hook reference is generated from source, so it cannot drift from the code.
Updates now come from the Easy Digital Downloads Software Licensing SDK, bundled once in the free plugin and shared with Pro. The previously bundled third-party update checker has been removed.
New Wbcom\MemberBlog\Core\Uninstaller holds the removal policy; ViewCountStore and EngagementStore expose tables() and options() so a new table is dropped on uninstall with a one-line change. Templates no longer query: see the no-query rule in the template guide.
Compat
Aligned with WB Member Blog Pro 4.0.0. Install both updates together.
v3.5.0
July 1, 2026
New 4 Improve 4 Fix 5 Security 3 Dev 1
New
First-time writers see a short welcome guide on the post form that explains where a published post appears and how to begin, and it disappears on its own after the first post.
Draft recovery restores your unsaved work if you leave the post form and come back, so a half-written post is never lost.
WB Gamification integration awards members points when one of their posts reaches a views milestone or receives a comment, and stays inactive until WB Gamification is installed.
Redesigned card-panel admin with dedicated Pages, Editor, Access, Content, and Shortcode Areas tabs.
Improve
The block editor now reliably reloads your saved content when you re-open an existing post to edit it.
Mobile polish across the post form, member dashboard, post lists, and reading view so every screen stacks cleanly on phones.
Dark mode fixes across BuddyX, Reign, the schedule calendar, the post icon picker, and the category selector.
Profile post lists and the authors shortcode use batched queries instead of per-row lookups so they stay fast on large sites.
Fix
Submitting the post form no longer creates duplicate posts or duplicate BuddyPress activity entries.
The editor no longer creates stray auto-draft posts on every page load.
Word count now counts Cyrillic, Greek, and accented scripts correctly.
The posts-per-page form default now matches the effective default of ten.
The submission shortcode no longer leaks into BuddyPress activity excerpts.
Security
Post visibility is now resolved through one central helper, closing a reference flaw that could expose draft or private posts by ID.
The "Delete featured images with posts" and "Allowed image types" settings are now enforced on the REST upload path.
Internal redirects use wp_safe_redirect and member-blog link output is escaped as defense in depth.
Dev
Draft-recovery and AJAX error strings are now translatable.
v3.4.1
New 3 Improve 3 Fix 2 Note 1
New
The `[bp-member-blog-recent]` shortcode now supports search and a category filter on the front end. Visitors can narrow the list by keyword or category without going to a category archive page.
Admins can now choose where the `[bp-member-blog-recent]` shortcode output appears (full content, before content, after content, sidebar, or specific pages) directly from the plugin settings - no theme edits required.
Publishing options moved into a dedicated tab in the plugin settings, and the legacy "BuddyPress" tab has been renamed to "Blog" to reflect that the plugin now works standalone and on BuddyBoss / PeepSo as well.
Improve
Member-blog activity feed entries now render their cover image, video, or audio preview inline, so the timeline shows the same media the post itself uses.
Replaced four browser confirm / alert dialogs in the member dashboard with an accessible in-page toast and modal - keyboard users no longer need to dismiss a native browser popup.
Large-site readiness pass - list queries on the member dashboard and the recent-posts shortcode now use paginated database queries and proper indexes so they stay fast on sites with thousands of member-authored posts.
Fix
The Classic Editor "Update" button no longer silently fails on posts that have been temporarily cleared while editing. Saving an empty draft is now handled gracefully.
The YouTube embed preview now renders correctly when you re-open an existing post in the Editor.js editor. Previously the embed could render blank until the post was saved and reloaded.
Note
New filter `bpmb_should_enqueue_assets` lets themes and integrations decide whether to load the plugin's frontend assets on a given page.
v3.4.0
New 1 Fix 1
New
Filter to customize subtabs slug
Fix
Pagination 404 error on user profile blog
v3.3.0
Improve 1 Note 20
Improve
memory user_has_cap filter (no persistent DB writes)
Note
Fixed post limit restrictions not enforcing correctly due to dead hook references
Fixed image upload nonce caching issue on cached editor pages with nocache headers
Fixed word count validation for Chinese, Japanese, and Korean (CJK) text
Fixed activity posts showing unnecessary read more button
Fixed HTML rendering issue in post content display
Fixed duplicate message rendering on post submission
Fixed blog post preview functionality
Fixed str_contains() PHP 8.0+ compatibility issue
Fixed unescaped CSS class outputs in post form templates
Fixed HR tag being stripped and focus mode TinyMCE issues
Fixed reading time label being overwritten by counter animation
Fixed member blog behavior in standalone free mode
Fixed subscribers unable to edit or delete their own media in the media library
aware word counting across all shortcodes and reading time estimates
Added future status handling for scheduled posts with "Scheduled" notice on edit screen
Added PeepSo template future status support
Improved media modal to allow subscribers to edit/delete own attachments
Improved reading info positioning above post content
Renamed "Create New Post" button to "Publish" for clarity
Updated documentation configuration for live URL compatibility
v3.2.0
Fix 1 Security 1 Note 9
Fix
aware URLs
Security
post_id now included in action nonce verification
Note
Fixed post redirect now uses actual post status for correct URL after publish/unpublish
Fixed BuddyPress 12.0.0+ compatibility with bp_members_get_user_url() function
authored posts
authored posts
Added filter for BuddyPress profile template query args
Added filter for dashboard shortcode query args
Improved unified dashboard handler for all modes (BuddyPress/PeepSo/Standalone)
Improved PeepSo UI compatibility
Removed redundant Quick Links section from overview page
v3.1.0
Note 9
Note
Fixed publish, unpublish, and delete post buttons not working on member profiles
Fixed pagination displaying incorrect number of posts per page (now consistently shows 10 posts)
Fixed pagination 404 errors on BuddyPress member profiles
Fixed dark mode styling issues with Editor.js popover menus and media library modal
Fixed Font Awesome icons not appearing in Medium Editor toolbar
Fixed TinyMCE Classic Editor not loading properly when enabled in settings
Fixed Medium Editor form submission and inline author display
Improved featured image help text to show dynamic allowed file extensions
Added internal distribution task to Gruntfile for docs/marketing inclusion
v3.0.0
New 1 Improve 1 Note 36
New
based admin structure with organized tabs
Improve
Complete Architecture Overhaul
Note
Added BuddyPress, BuddyBoss Platform, PeepSo, and Standalone WordPress support
Added platform abstraction layer for seamless switching between platforms
Added BuddyBoss compatibility layer with unique identifier profile URL support
Added BuddyBoss app detection for optimized mobile notifications
Added PeepSo profile integration with blog tabs and navigation
BuddyPress WordPress sites
Added modern Editor.js block-style editor with inline image uploads
style distraction-free editor option
Added Focus Mode with localStorage state persistence
save drafts feature (60-second intervals with rate limiting)
Added image upload authorization checks and validation
Added [bp-member-blog] shortcode to display member blog posts
Added [bp-member-blog-form] shortcode for frontend post creation form
Added [bp-member-blog-popular] shortcode for popular posts display
Added [bp-member-blog-authors] shortcode for top contributors showcase
Added SEO settings with Yoast, Rank Math, and AIOSEO integration
Added Open Graph and Twitter Card meta tags for social sharing
Added skeleton loaders for improved content loading UX
Added CSS design system with CSS variables for consistency
Added grid/list toggle and search UI for post listings
Ensured "Add to Draft" option appears when pending review is disabled.
Resolved post draft and save issues for better content management.
Allowed admin users to add blogs from the front end in multisite environments.
Managed mobile and tablet UI issues for a smoother experience.
Resolved UI issues in the "Create Member Blog" dropdown.
PHPCS adjustments for category dropdown on blog edit pages.
Notices are now properly displayed when no blogs exist on user profiles.
Addressed capability issue where a subscriber's pending blog could be edited by another subscriber.
Resolved blog count duplication issue when using Youzify.
Fixed blog tab functionality with Youzify integration.
v2.4.0
Fix 1 Note 7
Fix
end in multisite.
Note
Managed mobile and tablet UI responsiveness issues.
Resolved UI issue on the "Create a Member Blog" dropdown.
Fixed blog category dropdown display issue on the edit blog screen.
Fixed notices displayed when no blog posts exist
Fixed issue where pending subscriber blogs could be edited by other subscribers.
Resolved blog count duplication issue with Youzify.
Fixed blog tab display issue with Youzify.
v2.3.1
Note 1
Note
Fixed category exclusion logic and improved category selection.
v2.3.0
Improve 2 Fix 3
Improve
Managed button color to align with the theme's color scheme.
Adjusted image size settings and alignment for better visuals.
Fix
Resolved fatal error on editing posts.
Corrected the function call for bp_member_blog_display_category_options().
Hookable position for category now works as expected.
v2.2.2.1
Fix 1
Fix
Pagination issue
v2.2.2
Fix 8 Note 2
Fix
Removed Condition to show the menu on all pages
Warning in the admin side
Blog menu with BuddyPress platform
Post updated notice UI
Update and manage form fields UI in frontend
Remove unwanted css
Update and manage form fields UI in frontend
Move the Hook after updating the custom fields
Note
Managed backend options for responsive fixes
Only Show the Blog Parent Menu
v2.2.1
Improve 4 Fix 1
Improve
Added nested view for category management.
Merged branch '2.2.1' from GitHub repository for synchronization.
Added <p> tag in notice messages for better formatting.
Added image hyperlink functionality.
Fix
Managed image resolution to full width and applied necessary fixes.
v2.2.0
Improve 4 Fix 4
Improve
Added filter for category management.
Changed descriptions for clarity.
Improved pagination spacing for better UI.
Managed UI within the blog tab for a smoother experience.
Fix
Resolved group pagination issue with BB platform.
Fixed pagination redirecting to 404 on the group page.
Ensured admins do not need approval to publish posts.
Corrected published blog count issue.
v2.1.1
Fix 2
Fix
(#242)Fixed issue on tab Translation
(#238)Fixed fatal error on the client site
v2.1.0
Fix 2
Fix
(#236) Client site conflict issue.
(#230) Fixed issue with the edit link
v2.0.4
Fix 2
Fix
Fixed: (#219) Edit blog URL on member profile.
Fixed translation issue
v2.0.3
Fix 2
Fix
(#227) Managed dark mode with reign theme
Fixed can not upload media on edit post
v2.0.2
Improve 1
Improve
Added option for template override
v2.0.1
New 3 Improve 5 Fix 6
New
Filter hook
(#216) Documentation link and updated top banner
(#216) Icon classes and fixes
Improve
(#216) Member type option label and description
(#216) Featured Image and edit form UI
(#216) Frontend form labels
(#216) Display the pro plugin label and version
(#216) Backend settings label, description, and pro tabs and images
Fix
Post tab hidden for admin user
(#225) Media uploading issue
(#216) Media management option disabled by default
Removed ACF code
Count issue
BP v12 fixes
v2.0.0
Fix 3
Fix
PHPCS fixes
(#247) Issue with PHP version 8.2
(#214) Blog option showing in moderation plugin
v1.9.9
Fix 2
Fix
(#205) Category dropdown issue
(#203) Blog menu disappears when we visit other pages
v1.9.8
Fix 2
Fix
(#126)iframe
(#198) query moniter issue
v1.9.7
Fix 2
Fix
comment issue on the create blog page.
(#193)Unable to translate blog string.
v1.9.6
Fix 1
Fix
Fixed blog label and slug at admin bar menu
v1.9.5
Fix 4
Fix
Fixed blog post navigation count issue
Create dynamic slug
(#185) Fixed previous pagination issue
(#168) Added integration of recaptcha
v1.9.4
Improve 3 Fix 2
Improve
(#169) blog post add pending nav, post count with UI managed
(#169) post listing added subnav count
(#169) post listing added pending tab
Fix
(#183) Fixed update post do not work with BB theme
Fixed Plugin redirect issue when multi plugin activate the same time
v1.9.3
Fix 1
Fix
(#152) Fixed warning
v1.9.2
Fix 3
Fix
(#144)Fixed author unable to post media
(#145)Fixed managed groups activity UI
(#148)Fixed managed issue in edit post
v1.9.1
Fix 1
Fix
(#140)Fixed edit blog not working
v1.9.0
Fix 5
Fix
Category UI fixes frontend form
Fixed buddyboss admin notice issue
(#119) Fixed add category option from the front end
"Fixed: (#118) Issue with adding draft subnav.
(#122) Admin categories field UI fixed
v1.8.0
Fix 4
Fix
Fixed asign category issue
Fixed conflict issue with Member blog pro
(#119) Added front-end create category option
Updated new admin ui
v1.7.1
Fix 1
Fix
(#117) Fixed Subscriber user can't upload media from fronted
v1.7.0
Fix 6
Fix
Add Dark Mode and filter category issue
(#108) Managed pro tabs UI
(#105) Added Pro options as a disabled mode
(#107) post category UI managed
(#32) Display post category name on the blog tab
Managed UI with BuddyBoss.
v1.6.1
Fix 2
Fix
remove extra div
#101 Profile Blog List UI issue
v1.6.0
Fix 12
Fix
backend UI Updated tab icons
(#80)Fixed wbcom wrapper display even if plugin is deactivated
(#79)Fixed pagination issue for logout user
Removed install plugin button from wrapper and phpcs fixes
Managed Profile blog form UI
(#74) Fixed add new post sub tab post form issue with youzify
Set Groups Integration icon
Removed blog tab and added sub tab in posts tab if youzify activated
(#76)changed the blog tab notice for loggedin user
#73, #74 Member Post Listing and Add New post form
(#76) changed the blog tab notice for loggedin user
(#75) Fixed conflict issue with BP rewrites plugin
v1.5.0
Fix 8
Fix
(#68) Fixed blog count issue on display user
(#65) Managed UI conflict issue with other plugins
(#58) Fixed category display issue on admin
Introduce new action hook for blog profile tab
(#34) Fixed grammatical error on admin dashboard
#57 Managed Add New Blog UI
Fixed upload image issue
Added hookable position after submit post
v1.4.2
Fix 4
Fix
(#42) BuddyPress nav tab redirection issue with BP Rewrites plugin.
(#41) Fixed conflict issue with BP Rewrites plugin
Managed RTL fixes
(#40) Fixed reset setting issue after activation
v1.4.1
Fix 1
Fix
(#36) Fixed category and tags are not adding from front-end
v1.4.0
Fix 5
Fix
(#30) Grammatical error.
(#33) Fixed admin warning
Introduce new admin action hooks
Fixed phpcs errors
Fixed escaping function error
v1.3.0
Fix 1
Fix
updated permissions for displayed member profile
v1.2.0
Fix 5
Fix
Hide Blog Menu for not allowed user role or member type to create post
Added Blog in BuddyPress Mmeber Menu Section
Post Tags issue and set Input field to add Post Tags
#18 - when unpublish or delete the blog redirects to 404
Managed post tags UI
v1.1.0
Fix 1
Fix
Blog slug on user profile
v1.0.0
Note 1
Note
Initial Release
WBComDesigns is amazing!
WBComDesigns is amazing. The WP plugins and themes are of top notch quality with lots of features and updated very frequently. Supports are very responsive and helpful. I use Reign with TutorLMS, and the experience is surprisingly smooth.…
Hoang Phan·VN·
The job well done!
The job well done, well in time - Thanks so much Anmbiya and team!
Happy Client·ZA·
WBCOM Designs is Amazing!
WBCOM Designs has constantly updated and supported their plugins and themes. Recently the new BuddyNext project is Amazing! - and the new line of addons like Mediaverse, Jetonomy, Mediashield, and Listora.. are likewise Amazing! - and very…
Edward S.·US·
High quality WordPress plugins and themes
We’ve hosted a number of Wbcom Designs clients on Levamo, and our experience with their products has been very positive. Their plugins and themes are well built, their support has been reliable, and they seem to be very innovative and…
Michael Eisenwasser·US·
I have worked with Wbcom Designs on…
I have worked with Wbcom Designs on several custom development requests for my WordPress platform, and my experience has been excellent.
christian nicolas·BJ·
Love this company
Love this company. Loved the REIGN product. They were there the entire time helping me set things up; and when things went wrong? They were quick to take action and help find a solution.
Fable Fortitude·CA·
Seriously, one of the best "software tech experiences" I've ever had!
After 16 years of buying WordPress themes and plugins, I know exactly what bad support looks like and Wbcom Designs is the polar opposite. My setup was a nightmare: multiple tools, deep integrations, custom configurations that required…
Duston McGroarty·US·
I was using an excellent plugin created…
I was using an excellent plugin created by Wbcom Designs and had both an error and discovered a slight bug in one aspect of the plugin. After creating a support ticket - I got a super-quick response and discovered the error was on my part…
Edward Bonthrone·US·
Excellent Theme, Powerful Plugins and Outstanding Support
I am using the REIGN theme and several plugins from Wbcom Designs on my website. The theme is beautifully designed, and the plugins are user-friendly. Everything works smoothly, and the features are perfect for building professional…