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 file_get_contents() in wp template, on the site WordPress.org Forums:
How "external" is this file? If still on your server you can use fopen()/fread(). If… -
Posted a reply to `save_post` action is triggered before term_relationships is updated, on the site WordPress.org Forums:
Good discovery! Thanks for sharing. -
Posted a reply to custom field for translating taxonomy terms, on the site WordPress.org Forums:
Code can go in functions.php. I don't see any taxonomy terms on the page of… -
Posted a reply to Facebook Post now at top of every page, on the site WordPress.org Forums:
It looks like you found out how to remove it? I don't see any FB… -
Posted a reply to Deadlock found when trying to get lock, on the site WordPress.org Forums:
There's a wp-cron task that's trying to remove a transient, but it cannot lock the… -
Posted a reply to Menu issue, on the site WordPress.org Forums:
The menu links are not working at all when I checked. All link URLs are… -
Posted a reply to Remove norefferer from external single product pages, on the site WordPress.org Forums:
How you would do this will depend on what function is used to generate the… -
Posted a reply to Transfering a website via FTP, on the site WordPress.org Forums:
You can export using the built-in export tool, then import using the WordPress Importer plugin.… -
Posted a reply to Render an HTML banner from a block, on the site WordPress.org Forums:
You can use has_block() to check if a specific block exists on a page, but… -
Posted a reply to `save_post` action is triggered before term_relationships is updated, on the site WordPress.org Forums:
If you look at the insert post source code, you can see the function to… -
Posted a reply to Adding “See all” link to Tag Cloud, on the site WordPress.org Forums:
Assuming they have a filter or action hook we can use, then generally yes. However,… -
Posted a reply to Enhancing Custom Posts in WordPress: Understanding User Needs, on the site WordPress.org Forums:
Sure, they are all potential features, but whether any one feature is needed for a… -
Posted a reply to custom field for translating taxonomy terms, on the site WordPress.org Forums:
Be sure caching is not confusing the test results. If you still do not see… -
Posted a reply to Exclude Child Category Posts from Appearing on Parent Category Archive Page, on the site WordPress.org Forums:
The code from that topic does not work from a template, it'll execute too late.… -
Posted a reply to Adding “See all” link to Tag Cloud, on the site WordPress.org Forums:
No, only "pluggable" functions can be overridden from functions.php. To alter any other functionality you… -
Posted a reply to Add notes/labels to titles on page list?, on the site WordPress.org Forums:
The elements you want to add are "Post states", usually labels like "Draft", "Private", etc.… -
Posted a reply to Gettext for the custom menu in the header, on the site WordPress.org Forums:
You have a trailing space in the meta key for your get_post_post_meta() call that does… -
Posted a reply to Application password issue, on the site WordPress.org Forums:
I'm not too familiar with cURL, but I think you'll want to send user:password base64… -
Posted a reply to Horizontal Sliding Menu, on the site WordPress.org Forums:
I think any slider that accepts arbitrary HTML should work for you. The problem is… -
Posted a reply to Adding sort order to main query, on the site WordPress.org Forums:
I take it your code occurs on a template? You would have to discard the… -
Posted a reply to Redirection, on the site WordPress.org Forums:
Your Más información links would need to pass information about which course the button relates… -
Posted a reply to Load custom posts and filter by taxonomy using Ajax, on the site WordPress.org Forums:
You can use wp_list_categories() to get the needed HTML. Use your own CSS to get… -
Posted a reply to Why nothing change after edited post based on my custom designed template?, on the site WordPress.org Forums:
Be aware that caching, both browser and server side, can confuse your efforts at seeing… -
Posted a reply to customizer dynamic stylesheet not showing live edits, on the site WordPress.org Forums:
Transport refresh is not the same thing. ...and can be impacted by browser caching. Selective… -
Posted a reply to Gettext for the custom menu in the header, on the site WordPress.org Forums:
You have $menu_item->ID, should be $item_post->ID -
Posted a reply to Is there a way to block vpn visitors ?, on the site WordPress.org Forums:
FWIW -- Much like the on going battle between ad blockers and ad servers, there's… -
Posted a reply to Blog “read more” buttons are disordered, on the site WordPress.org Forums:
Not only is a dedicated plugin forum a better place to ask, but we're unable… -
Posted a reply to FTP folders and WP pages, on the site WordPress.org Forums:
Either use a different permalink or different folder name. Physical files and folders cannot have… -
Posted a reply to customizer dynamic stylesheet not showing live edits, on the site WordPress.org Forums:
For the customizer preview to reflect current customizer changes, you need to use Selective Refresh.… -
Posted a reply to Post names (slugs) getting insufficient, on the site WordPress.org Forums:
Yes, I think it would be possible to reinstate the non-encoded URL. The URL would… -
Posted a reply to custom field for translating taxonomy terms, on the site WordPress.org Forums:
It'd be a good idea to confirm that "get_the_terms" is the right filter. Have your… -
Posted a reply to Gettext for the custom menu in the header, on the site WordPress.org Forums:
Please replace $title with $atts Some closing } are missing, should be: }} return $atts;… -
Posted a reply to Post names (slugs) getting insufficient, on the site WordPress.org Forums:
I'm afraid the slug length limitation is necessary to maintain full compatibility across the entire… -
Posted a reply to New to WordPress: Is This Possible with WP?, on the site WordPress.org Forums:
Blogging was the intended purpose of WP at its inception long ago, but it has… -
Posted a reply to i need some translation string for custom plugin, on the site WordPress.org Forums:
Curiously "Log in" and "Log out" will be translated, but not "Login/out". They all occur… -
Posted a reply to contenteditable=”false”, on the site WordPress.org Forums:
No worries at all. Thanks for taking the time to format the code and re-posting. -
Posted a reply to Create a new page using functions.php, page-mypage or plugin, on the site WordPress.org Forums:
Yes, your current code loads the files for every page whether it's applicable or not.… -
Posted a reply to Birthday Message to every Member, on the site WordPress.org Forums:
It would take some time for me to develop a solution, more time than I'm… -
Posted a reply to Gettext for the custom menu in the header, on the site WordPress.org Forums:
Changing variable names doesn't accomplish anything different. Names are arbitrary, but they need to be… -
Posted a reply to Where do I start to implement user registration?, on the site WordPress.org Forums:
Who is to decide what role to assign? The registrant? An administrator? Code based on… -
Posted a reply to contenteditable=”false”, on the site WordPress.org Forums:
Hello @jackbluehouse2019, I'm glad ChatGPT gave you a workable solution. Thanks for posting the solution,… -
Posted a reply to Create a new page using functions.php, page-mypage or plugin, on the site WordPress.org Forums:
I agree that it's a good idea to use separate files if the code they… -
Posted a reply to Birthday Message to every Member, on the site WordPress.org Forums:
The birthday data for users would most likely be saved in usermeta. You could query… -
Posted a reply to Gettext for the custom menu in the header, on the site WordPress.org Forums:
What code are you using now for the 'nav_menu_item_title' filter callback? Did you coordinate the… -
Posted a reply to How to validate phone numbers via a third party API?, on the site WordPress.org Forums:
No worries at all, you're in good company. It's a common occurrence. Like Steven said,… -
Posted a reply to Unknown CSS, mobile/tablet optimization?, on the site WordPress.org Forums:
You can use your browser's element inspector tool to learn which CSS is being applied… -
Posted a reply to CSS for a text, on the site WordPress.org Forums:
CSS can be applied to text regardless of what language the text represents. Gettext cannot… -
Posted a reply to Need help with embed code, on the site WordPress.org Forums:
Since you can apparently alter the page's HTML, instead of :has(), you can add a… -
Posted a reply to Redirect SKU from URL directly to specific product variation in WooCommerce, on the site WordPress.org Forums:
I'm assuming the implication is you'd develop your own custom function by that name. You… -
Posted a reply to Searching a certain portfolio widget/plugin, on the site WordPress.org Forums:
Hi Koopman, It's fine to ask for plugin suggestions in the general forums, however Elementor…
Contributor
-
Contact Form 7 email verification
Active Installs: 200+