jQuery Autocomplete in WordPress

I’m using this autocomplete script https://github.com/agarzola/jQueryAutocompletePlugin within my wordpress theme. I have a form in a page where the user could specify some tags. Actually, this is the code I’m using and it’s working good. <script> jQuery(function() { var data=”<?php global $wpdb; $search_tags = $wpdb-> get_results(“SELECT name FROM $wpdb->terms”); foreach ($search_tags as $mytag){ echo $mytag->name. … Read more

Can I disable the auto complete?

I’ve recently upgraded to WordPress 3.0, and am having a lot of problems with the autocomplete function when editing posts via ‘quick edit’ (e.g. /wp-admin/edit.php) – for example, editing tags. The autocomplete box often obscures the textbox I’m trying to enter text into, and sometimes gets ‘left behind’ once the ‘update’ button has been clicked. … Read more

Custom taxonomy only shows 0 in autocomplete for terms and “Choose from the most used tags”

I have a custom post type (rezept that I added a custom taxonomy Allergiefrei to. I got this working so far. Adding terms to the custom taxonomy’s box works, too, but autocomplete and ‘Choose from the most used tags’ only shows “0”. Here’s the code where I register the custom taxonomy: function register_rezept_taxonomies() { register_taxonomy( … Read more

Disable browser ‘Save Password’ functionality

One of the joys of working for a government healthcare agency is having to deal with all of the paranoia around dealing with PHI (Protected Health Information). Don’t get me wrong, I’m all for doing everything possible to protect people’s personal information (health, financial, surfing habits, etc.), but sometimes people get a little too jumpy. … Read more

ACF Relationship Field Search Filtering [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 5 years ago. Improve this question I am trying to assign relate posts using the ACF relationship field. It has typeahead search to search by post titles. … Read more

add_filter the_content str_replace after shortcode

I want to add a PHP str_replace to the add_filter(‘the_content’) function. I believe my problem is that the shortcodes are loading after the str_replace is called. I have a shortcode that outputs a form, i want to make it that in all HTML form tags, the attribute autocomplete=”off”. Heres the code i have. add_filter(‘the_content’, ‘disable_autocomplete’); … Read more

jQuery autocomplete tagging plug-in like StackOverflow’s input tags? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 5 years ago. Improve this question What solutions accomplish the same auto-completion that SO uses for entering tags? There are plugins that can handle one … Read more

Disabling Chrome Autofill

This question’s answers are a community effort. Edit existing answers to improve this post. It is not currently accepting new answers or interactions. I have been running into issues with the chrome autofill behavior on several forms. The fields in the form all have very common and accurate names, such as “email”, “name”, or “password”, … Read more