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 Record referrer and send the value in the url, on the site WordPress.org Forums:
The referrer URL is available in PHP from $_SERVER['HTTP_REFERER']. It can be appended to subsequent… -
Posted a reply to custom plug-in for taxonomies, on the site WordPress.org Forums:
What's the critical error? If there is a PHP error in your plugin, you wouldn't… -
Posted a reply to I’ve added SKU to Woocommerce products permalinks, but I have a small issue, on the site WordPress.org Forums:
Remove the hash mark in append_sku_string() by changing the if() conditional to this: if (… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
:) Thank you my new friend for the vote of confidence. I hope your site… -
Posted a reply to switching from an inner page in italian into an inner page into i.e english, on the site WordPress.org Forums:
You can manage all possible variants of search and replace by passing arrays to str_replace().… -
Posted a reply to I’ve added SKU to Woocommerce products permalinks, but I have a small issue, on the site WordPress.org Forums:
Don't use it in your append_sku_string() function :) $link = $link . $post_meta; I'm sure… -
Posted a reply to Optimal Icon Usage in Gutenberg, on the site WordPress.org Forums:
The word "icon" covers a lot of territory, from large, elaborate favicons to basic font… -
Posted a reply to speed up the opening of an element, on the site WordPress.org Forums:
It loads late because its HTML occurs after all the apartment thumbnails. Images always take… -
Posted a reply to is_page always evaluates to false, on the site WordPress.org Forums:
It's certainly an issue with variable or property scope. Using a global variable or object… -
Posted a reply to Filtering the category terms in the search box (german and english), on the site WordPress.org Forums:
Great! You're getting better at debugging :) It's not something easily learned in a class,… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
Don't let my replies' moderator flag or my confident writing style lend any more authority… -
Posted a reply to switching from an inner page in italian into an inner page into i.e english, on the site WordPress.org Forums:
Great! Whatever gets it done :) There are two or three possible approaches. I'm not… -
Posted a reply to Permalinks problem, on the site WordPress.org Forums:
index.php in permalinks is normally hidden because it should be the default file for HTTP… -
Posted a reply to Administrative panel available only in HTML and hyperlinks, on the site WordPress.org Forums:
I understand your site's front end is working but you have issues viewing the back… -
Posted a reply to Default Search Query, on the site WordPress.org Forums:
The syntax used in that code is unfamiliar to me. It's not normal PHP though… -
Posted a reply to Filtering the category terms in the search box (german and english), on the site WordPress.org Forums:
¯\_(ツ)_/¯ Works for me. You use wp_dropdown_categories() to display the field? You have translations saved… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
If you database is maintained on the server of a reputable host and you don't… -
Posted a reply to Archive with taxonomy hierarchies – IS IT POSSIBLE?, on the site WordPress.org Forums:
The hierarchical post type approach does not necessarily require custom coding. You could us the… -
Posted a reply to switching from an inner page in italian into an inner page into i.e english, on the site WordPress.org Forums:
That code is fine, while it's locale related, it has nothing to do with the… -
Posted a reply to changing the layout, on the site WordPress.org Forums:
You could modify your theme's CSS. In its style.css at line 681 you have this:… -
Posted a reply to hyphen has a negativ impact on SEO?, on the site WordPress.org Forums:
I really doubt it, but I'm not a SEO expert. I suggest asking in a… -
Posted a reply to Issue embedding Microsoft Bot-Framework into website, on the site WordPress.org Forums:
That kind of error that only occurs on a specific installation is often due to… -
Posted a reply to is_page always evaluates to false, on the site WordPress.org Forums:
For is_page() to work as expected, it must be called within the conventional WP loop… -
Posted a reply to Default Search Query, on the site WordPress.org Forums:
Either your theme or a plugin is causing {{9*9}} to be evaluated. Probably not your… -
Posted a reply to Filtering the category terms in the search box (german and english), on the site WordPress.org Forums:
The code is flawed. Try this in functions.php: add_filter('list_cats', 'modify_list_cats_defaults', 10, 2); function modify_list_cats_defaults (… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
The issue with data theft is if something appears on the front end of a… -
Posted a reply to switching from an inner page in italian into an inner page into i.e english, on the site WordPress.org Forums:
The filtering for titles is independent of filtering for language switcher URLs. Title filtering is… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
You wouldn't be the first person to consider leaving Wix for another CMS :) There… -
Posted a reply to Filtering the category terms in the search box (german and english), on the site WordPress.org Forums:
Well, it's a start. I'd advise that you not pass an entire function to add_filter(),… -
Posted a reply to switching from an inner page in italian into an inner page into i.e english, on the site WordPress.org Forums:
Yes, but we're getting closer to a solution. There are two or three ways to… -
Posted a reply to Unable to assign as page author an account with author role, on the site WordPress.org Forums:
Authors by default do not have "edit_pages" capability, only "edit_posts". For authors to be assigned… -
Posted a reply to error in PHP conditional, on the site WordPress.org Forums:
You've nested the if conditionals, that will not work in this situation. Instead use completely… -
Posted a reply to removing hover effect on specific pages, on the site WordPress.org Forums:
Add this to Additional CSS: .page-id-14087 .wp-block-image:hover { border-color: lightgray; background-color: transparent; } There is… -
Posted a reply to update information, on the site WordPress.org Forums:
"page=wpseo_dashboard" indicates you're using the Yoast SEO plugin. Most of what Yoast does is not… -
Posted a reply to Filtering the category terms in the search box (german and english), on the site WordPress.org Forums:
You can use the "list_cats" filter to alter each category's name when the locale is… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
Inability to search iframes is not unique to Wix. No CMS will be able to… -
Posted a reply to switching from an inner page in italian into an inner page into i.e english, on the site WordPress.org Forums:
The different page slugs for each language only applies to main menu item pages like… -
Posted a reply to Filtering the category terms in the search box (german and english), on the site WordPress.org Forums:
I want to be sure I understand what you want. You want all the location… -
Posted a reply to Phone authentication, on the site WordPress.org Forums:
Don't forget that not all valid phone numbers can handle SMS messages, land lines for… -
Posted a reply to I cant find the php error, on the site WordPress.org Forums:
Assuming "tipologia" is spelled correctly, your code appears to be correct. I tested it on… -
Posted a reply to Trying to hook into comment_post—fail!, on the site WordPress.org Forums:
@threadi -- looks like it's the plugin for this knowledgebase. Business Directory Plugin. -
Posted a reply to Trying to hook into comment_post—fail!, on the site WordPress.org Forums:
It looks like wpbdp_get_form_field() gets data regarding the form field object itself, not the field's… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
If the iframe data you'd like to search is within your site's "classic showroom" page,… -
Posted a reply to File Block: Button and Title Aligning to the Right After Saving, on the site WordPress.org Forums:
I'm unsure what the default design looks like, but I'll take a guess. Change flex-direction… -
Posted a reply to switching from an inner page in italian into an inner page into i.e english, on the site WordPress.org Forums:
Using "REQUEST_URI" in str_replace() will not accomplish anything. Replace it with $item_post->url. Assign the return… -
Posted a reply to My plugin won’t install., on the site WordPress.org Forums:
There are a number of online PHP code checkers. Try searching for "PHP Linter". Software… -
Posted a reply to Trying to hook into comment_post—fail!, on the site WordPress.org Forums:
When checking your email account for contact notifications, don't forget to check your spam folder.… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
Don't put too much importance in that moderator flag. Unless we're actually taking moderator actions… -
Posted a reply to switching from an inner page in italian into an inner page into i.e english, on the site WordPress.org Forums:
Checking locale is inappropriate in this situation. Anything locale related should be removed. Instead you… -
Posted a reply to iFrame Internal Searchability with WordPress or Plug-Ins, on the site WordPress.org Forums:
Assuming WP and its PHP has proper access permissions to the external DB, getting data…
Contributor
-
Contact Form 7 email verification
Active Installs: 100+