bcworkz
@bcworkz on WordPress.org and Slack
Bio
WordPress Origin Story
Contributions
- Member Since: November 2nd, 2011
- GitHub: bcworkz-wp
Contribution History
bcworkz’s badges:- Core Contributor
- Documentation Contributor
- Meta Contributor
- Plugin Developer
- Support Contributor
- Support Team
-
Posted a reply to Hoping for answers that will save me, on the site WordPress.org Forums:
@unbroken1 - please do not cross post the same topic in multiple sub-forums. You've posted… -
Posted a reply to Hiding a top selector in admin, on the site WordPress.org Forums:
The latter is correct. Where did you place the CSS code? If in style.css or… -
Posted a reply to db tables prefix, on the site WordPress.org Forums:
Can you describe more specifically what you mean by "goes back to the website"? Do… -
Posted a reply to db tables prefix, on the site WordPress.org Forums:
If you alter all of your table prefixes and alter wp-config.php to match, you'll have… -
Posted a reply to Hiding a top selector in admin, on the site WordPress.org Forums:
It's infeasible to remove filtering elements from the posts list table using PHP. We can… -
Posted a reply to How to create dynamic menus in block theme, on the site WordPress.org Forums:
You could simply hide undesired menu items on particular pages with CSS alone. Most themes… -
Posted a reply to layout problems, on the site WordPress.org Forums:
Usually margin: 0 auto; centers things, but it's not working here. This could work for… -
Posted a reply to Displaying blog posts based on simple numbers, on the site WordPress.org Forums:
You're saying that with the unusual URL, subsequent pages don't show the correct number of… -
Posted a reply to layout problems, on the site WordPress.org Forums:
That CSS hides whatever button has the .wp-call-button-in-btn class attribute. Sometimes buttons are initially hidden,… -
Posted a reply to Displaying blog posts based on simple numbers, on the site WordPress.org Forums:
The WP editor has a native custom field feature. It might be hidden from your… -
Posted a reply to How to prevent editing of comments (as admin) from stripping images, on the site WordPress.org Forums:
Not at all, my intention was to let you know that you're free to pursue… -
Posted a reply to Plugin Auto Updates Failing, on the site WordPress.org Forums:
I cannot be sure if the following matches your situation, but incomplete updates can occur… -
Posted a reply to Displaying blog posts based on simple numbers, on the site WordPress.org Forums:
WP can generate index pages automatically. The default front page is an index page. If… -
Posted a reply to How to create an advanced custom made registration wizard?, on the site WordPress.org Forums:
You can place all elements on a single page, then add JavaScript event listeners to… -
Posted a reply to layout problems, on the site WordPress.org Forums:
You can copy/paste move the entire Additional CSS content to your theme's style.css. Or instead,… -
Posted a reply to How to prevent editing of comments (as admin) from stripping images, on the site WordPress.org Forums:
You're right that HTML filtering is based upon the comment author's capability (or lack) regardless… -
Posted a reply to WordPress Forced Redirection ‘301’, on the site WordPress.org Forums:
You're welcome. I hope you find a better solution. Regarding: I left out an important… -
Posted a reply to Linking is prioritising attachments instead of posts, on the site WordPress.org Forums:
I don't think it's really "prioritizing" per se, rather it's listing whichever data comes back… -
Posted a reply to How to prevent editing of comments (as admin) from stripping images, on the site WordPress.org Forums:
You might try altering the array passed in "wp_kses_allowed_html". You'll want to first dump out… -
Posted a reply to layout problems, on the site WordPress.org Forums:
You have a syntax error in this rule: @media only screen and (min-width: 769px){.home #primary… -
Posted a reply to WordPress Forced Redirection ‘301’, on the site WordPress.org Forums:
WP doesn't do anything to verify if it's behind a reverse proxy. It's agnostic to… -
Posted a reply to Attempt to assign property “domain” on null, on the site WordPress.org Forums:
I understand about sunrise.php now. Thanks for the direction. It's not a default WP file,… -
Posted a reply to Attempt to assign property “domain” on null, on the site WordPress.org Forums:
This is because $dm_domain is null or unassigned. You've not provided enough context for me… -
Posted a reply to WordPress Forced Redirection ‘301’, on the site WordPress.org Forums:
Sorry for my confusion causing your confusion. Please disregard my earlier paragraph that you quoted.… -
Posted a reply to Choosing a category name in WordPress that I am on the archive page, on the site WordPress.org Forums:
Do you mean your question about "date_query"? It should work as expected. You can check… -
Posted a reply to Query loop can’t display multiple post types, on the site WordPress.org Forums:
Nothing more than basic debugging really. Verify the query var "custom_query_loop" that you're checking for… -
Posted a reply to Receiving subscribers without subscription button, on the site WordPress.org Forums:
Deactivating the subscription button does not necessarily deactivate the handler code. While I'm unfamiliar with… -
Posted a reply to WordPress Forced Redirection ‘301’, on the site WordPress.org Forums:
As your solution implies, WP is redirecting to the post's canonical URL. While preventing canonical… -
Posted a reply to Choosing a category name in WordPress that I am on the archive page, on the site WordPress.org Forums:
If you want only posts with comments, you need to add a WP_Query arg similar… -
Posted a reply to Query loop can’t display multiple post types, on the site WordPress.org Forums:
Query loop queries are generally not main queries, so || !$query->is_main_query() is preventing your code… -
Posted a reply to Logging in via alternate URL?, on the site WordPress.org Forums:
FYI the constants I mentioned earlier are typically defined in wp-config.php. It might work if… -
Posted a reply to redirect to the wordpress category IF folder name on webspace = category name, on the site WordPress.org Forums:
You want domain.com/ideas/ to go to the WP category archive while your server has a… -
Posted a reply to Receiving subscribers without subscription button, on the site WordPress.org Forums:
Hello marseem, No one here is familiar with how Fluent CRM works, so it's not… -
Posted a reply to Logging in via alternate URL?, on the site WordPress.org Forums:
You can remove any redirect_to query string that might be in place. You should especially… -
Posted a reply to Child Theme – Enqeue conditional sub functions.php, on the site WordPress.org Forums:
I hear you, it's annoying. Part of the problem is these plugins add HTML content… -
Posted a reply to Autenticação usando API Externa, on the site WordPress.org Forums:
Added filter callbacks are only effective for the current HTTP request. Since installing and uninstalling… -
Posted a reply to Logging in via alternate URL?, on the site WordPress.org Forums:
An alternate, valid URL would normally automatically redirect to the configured site URL site. If… -
Posted a reply to JQuery code execution timing changes, WP 6.7, Navigation Block, on the site WordPress.org Forums:
If your code cannot find nav elements even though it uses .ready(), that indicates the… -
Posted a reply to Child Theme – Enqeue conditional sub functions.php, on the site WordPress.org Forums:
Full disclosure -- I have limited experience with children of block themes. Regardless, your font… -
Posted a reply to Autenticação usando API Externa, on the site WordPress.org Forums:
I'm sorry, I'm unable to debug your code for you. wp_create_user() is fine to use.… -
Posted a reply to switch for german/ english links, on the site WordPress.org Forums:
It's ill advised to alter Yoast meta box PHP. You're better off placing the selector… -
Posted a reply to JQuery code execution timing changes, WP 6.7, Navigation Block, on the site WordPress.org Forums:
If you wrap you code in $(document).ready( /* your function here */ );, the nav… -
Posted a reply to Child Theme – Enqeue conditional sub functions.php, on the site WordPress.org Forums:
To explain the strange font behavior, I'd normally suspect caching, but you say you've purged… -
Posted a reply to Autenticação usando API Externa, on the site WordPress.org Forums:
Hook "authenticate" with a $priority arg greater than 20, the default authentication priority. Thus WP… -
Posted a reply to switch for german/ english links, on the site WordPress.org Forums:
Where are you seeing a shortlink (with a "p=" query string)? Normally, when you have… -
Posted a reply to Onclick for hamburger menu seems to be activating every other click, on the site WordPress.org Forums:
I suspect there's a conflict between your listeners and your theme's listeners. Even if they… -
Posted a reply to Child Theme – Enqeue conditional sub functions.php, on the site WordPress.org Forums:
Hiya hebhansen, Yes, if a required file is inaccessible, it'll cause a fatal error. I… -
Posted a reply to no right click on a specific text, on the site WordPress.org Forums:
Reply added to your other topic. -
Posted a reply to switch for german/ english links, on the site WordPress.org Forums:
There are a number of possible solutions. Which to use depends on what your typical… -
Posted a reply to Редактирование блочных сайтов, on the site WordPress.org Forums:
There are a number of variables to consider before a reasonable answer can be suggested.…
Contributor
-
Contact Form 7 email verification
Active Installs: 100+