bcworkz
@bcworkz on WordPress.org and Slack
- Member Since: November 2nd, 2011
Contribution History
bcworkz’s badges:- Core Contributor
- Meta Contributor
- Plugin Developer
- Support Contributor
- Support Team
-
Posted a reply to first parameter of wp_add_privacy_policy_content(), on the site WordPress.org Forums:
Either will work. Usage depends on whether you intend to have your plugin's strings translated…16 hours ago
-
Posted a reply to Using user based taxonomies for advanced searching, on the site WordPress.org Forums:
OK, fair enough. An interesting project any way you slice it. Fields are for data,…2 days ago
-
Posted a reply to Using user based taxonomies for advanced searching, on the site WordPress.org Forums:
I don't think you want a taxonomy for end users, rather the taxonomy would be…3 days ago
-
Posted a reply to how to edit category page, on the site WordPress.org Forums:
Are you using WooCommerce? Its product categories are not the same taxonomy as post categories.…3 days ago
-
Posted a reply to Having troubles with add_menu_page() function, on the site WordPress.org Forums:
It wouldn't be the subordinate page that's preventing your menu page, there is no problem…3 days ago
-
Posted a reply to Remove duplicate posts in different homepage sections, on the site WordPress.org Forums:
The search results alone would not be enough to determine which is applicable. It's only…3 days ago
-
Posted a reply to Collapse Submenus by Default, on the site WordPress.org Forums:
Ah, OK. Yeah, it works as expected visually. It's quite likely what happens on a…3 days ago
-
Posted a reply to How can I write hook that receives AJAX call from button click?, on the site WordPress.org Forums:
Which jQuery are you testing? .ajax() or .post()? Your .ajax() has issues, there's no "action"…3 days ago
-
Posted a reply to Remove duplicate posts in different homepage sections, on the site WordPress.org Forums:
It could be in any of those numerous files in subfolders. Searching individual files with…4 days ago
-
Posted a reply to How can I write hook that receives AJAX call from button click?, on the site WordPress.org Forums:
Some of your print_r() calls within error_log() are missing the second true argument required for…4 days ago
-
Posted a reply to REST route with single quote in path expression, on the site WordPress.org Forums:
Using literal name strings in URLs is bad idea. You'll also have trouble with names…5 days ago
-
Posted a reply to Remove duplicate posts in different homepage sections, on the site WordPress.org Forums:
You pluck IDs from the second query object's posts property after it has been instantiated.…5 days ago
-
Posted a reply to Advance form integrating with database?, on the site WordPress.org Forums:
Create a sequence of pages to collect user input. The first (after clicking start ordering)…5 days ago
-
Posted a reply to Remove nofollow attribute, on the site WordPress.org Forums:
I'm not sure how you investigated while in troubleshooting mode, a few factors can still…5 days ago
-
Posted a reply to Stratford Theme: Mobile Menu Breakpoint, on the site WordPress.org Forums:
You'd need to at least search out CSS media queries that involve 560px and adjust…5 days ago
-
Posted a reply to Remove duplicate posts in different homepage sections, on the site WordPress.org Forums:
You need to affect the third query in the same manner. Pluck IDs from the…5 days ago
-
Posted a reply to Need to reduce empty space, on the site WordPress.org Forums:
You can use your browser's element developer tool to see the CSS code applied to…5 days ago
-
Posted a reply to Size & Spacing of Footer Areas, on the site WordPress.org Forums:
If you would like specific advice on CSS code to use, we'll need a live…5 days ago
-
Posted a reply to Advance form integrating with database?, on the site WordPress.org Forums:
If a form element's method attribute is "GET", submitting the form to the subsequent page…5 days ago
-
Posted a reply to Multiple depth settings for page attributes parent dropdown menu, on the site WordPress.org Forums:
If I understand your goal correctly, it could be accomplished by using the "wp_dropdown_pages" filter…5 days ago
-
Posted a reply to Defer problem with jquery.js, on the site WordPress.org Forums:
Other scripts are dependent upon jquery.js. They all must also be deferred as well or…5 days ago
-
Posted a reply to Remove nofollow attribute, on the site WordPress.org Forums:
That's not the default behavior when adding links in post content. Are you using a…5 days ago
-
Posted a reply to Editing taxonomy, on the site WordPress.org Forums:
@aimsinfosofts - Please do not invite off forum contact. Keep all assistance in these forums…5 days ago
-
Posted a reply to How to split a background image across sections?, on the site WordPress.org Forums:
Part of the problem is the main content overlays a fair part of the header…6 days ago
-
Posted a reply to How to search author in search form and without accent, on the site WordPress.org Forums:
Author queries would be for an entirely different object type so you need a separate…6 days ago
-
Posted a reply to How to load content via Javascript in WordPress template, on the site WordPress.org Forums:
There's no way for PHP to know a device's width on the initial request, you'd…6 days ago
-
Posted a reply to Custom WP search not looking at page tags, on the site WordPress.org Forums:
Sorry, I don't understand your precise goals so I'm not sure how to advise further.…6 days ago
-
Posted a reply to Display name in user error when updating user, on the site WordPress.org Forums:
Core WP doesn't actually restrict display name reuse, at least when set by an admin.…7 days ago
-
Posted a reply to Changing site address URL breaks saving posts, on the site WordPress.org Forums:
If https://example.com/ ends up serving your WP content, it ought to work for API requests…7 days ago
-
Posted a reply to How to set up menus after import programmatically, on the site WordPress.org Forums:
The menu order is established with the "menu_order" property of each "nav_menu_item" post type. The…7 days ago
-
Posted a reply to pages not updating on site when clicking update, on the site WordPress.org Forums:
Check the Tools > Site Health screen in the site's admin for any critical issues.…7 days ago
-
Posted a reply to How to Fix Canonical issue for my Site, on the site WordPress.org Forums:
You want the www as part of the canonical link, right? And the www exists…7 days ago
-
Posted a reply to Content shifts to left on certain pages with blank space on right on mobile view, on the site WordPress.org Forums:
Because your theme is not fully responsive, we cannot easily analyze the applicable CSS using…7 days ago
-
Posted a reply to Suppress Gallery Captions, on the site WordPress.org Forums:
It's possible to strip out captions as they are output with "the_content" filter in PHP,…7 days ago
-
Posted a reply to Main menu cumulative layout shift problem, on the site WordPress.org Forums:
Sorry for the slow reply. If you've not already figured out a solution by now,…7 days ago
-
Posted a reply to How to load content via Javascript in WordPress template, on the site WordPress.org Forums:
You don't really need Aim's mobile detect library, though it appears to work fine. The…7 days ago
-
Posted a reply to Custom WP search not looking at page tags, on the site WordPress.org Forums:
You need to add the "tax_query" argument to WP_Query instantiation. Find the "taxonomy parameters" section…7 days ago
-
Posted a reply to Broken Pagination, on the site WordPress.org Forums:
WP_Query will not pick up the URL paged parameter on its own. You need to…7 days ago
-
Posted a reply to Re-Register a Custom Post Type, on the site WordPress.org Forums:
You've exported a WP_Post object. You need a WP_Post_Type object. Try exporting something similar to…7 days ago
-
Posted a reply to custom currency converter, on the site WordPress.org Forums:
Such a thing isn't that complicated to custom code, but if you don't code it's…1 week ago
-
Posted a reply to How to expand lines by default in “All posts” list (mobile) ?, on the site WordPress.org Forums:
You could add some admin jQuery which adds the is_expanded class to all "#the-list tr"…1 week ago
-
Posted a reply to Suppressing login error reporting, on the site WordPress.org Forums:
FWIW you could instead do add_filter('login_errors', function() { return ''; }); as long as PHP…1 week ago
-
Posted a reply to How can I write hook that receives AJAX call from button click?, on the site WordPress.org Forums:
You don't have to enqueue, but it's " The WordPress Way™ " of doing things.…1 week ago
-
Posted a reply to Delete html in the menu navigation label, on the site WordPress.org Forums:
I have something very similar in my menu and it doesn't get stripped out. It's…1 week ago
-
Posted a reply to How To Fix Preload key requests, on the site WordPress.org Forums:
It depends on how the font links are generated. If you are using a plugin…1 week ago
-
Posted a reply to mkdir_p triggering is_dir warning, on the site WordPress.org Forums:
Something is misusing wp_mkdir_p() if the path/file / is being used in is_dir(). So likely…1 week ago
-
Posted a reply to wpab_postmeta and wpab_options, on the site WordPress.org Forums:
Try using the Better Search and Replace plugin to seek out the wrong title in…1 week ago
-
Posted a reply to Add users using a distribution list, on the site WordPress.org Forums:
As there seem to be no plugin suggestions forthcoming, this may need to be custom…1 week ago
-
Posted a reply to Collapse Submenus by Default, on the site WordPress.org Forums:
Have you resolved this since the time you've posted this topic? The sub-menu is only…1 week ago
-
Posted a reply to How to add this into my page(chrome dinosaur game but i have change the style), on the site WordPress.org Forums:
One way would be to add your code to a custom page template. Start with…1 week ago
Contributor
-
Contact Form 7 email verification
Active Installs: 200+