The Autocomplete widgets provides suggestions while you type into the field. The datasource is a simple JavaScript array, provided to the widget using the source-option.
0
votes
1answer
27 views
Custom taxonomy auto suggest not working in wordpress admin
I've added to my theme a new custom taxonomy in order to add future filtering capabilities to a custom post type called 'product' (I use the wooCommerce plugin which defines this custom post type).
...
0
votes
0answers
219 views
Jquery UI Autocomplete from remote source
I've used JQuery UI autocomplete in the past, with a remote php source, but now I'm trying to do the same in WordPress and have come unstuck!
UPDATE
I'm really close to getting this working, albeit ...
0
votes
2answers
118 views
Allow AJAX call to other roles than admin
On my website, registered users (subscriber role) can send drafts and, if admins validate them, they are published.
I'm trying to add a tag box to frontend editor used to send new posts. To implement ...
0
votes
0answers
192 views
Jquery autocomplete not working on Wordpress post edit screen, (conflict with tinymce scripts)
TOday i did a lot of googling to find the solution to my jquery autocomplete issue. Finaly i am here to find help... The issue is...
On my wordpress admin side (on post edit screen) I am using jquery ...
0
votes
1answer
445 views
jQuery drop down not appearing for autocomplete/autosuggest
I have set a field to autocomplete/autosuggest but the drop down isn't appearing as I type. I can see the admin-ajax.php requests and the data returned in the Network tab of Chrome Developer Tools so ...
1
vote
0answers
117 views
Append Auto Suggest list to specific html tag?
Right now I have a script that auto suggests some post titles, using wordpress' suggest.js
<script type="text/javascript">
var se_ajax_url = '<?php echo admin_url('admin-ajax.php'); ...
1
vote
0answers
86 views
Placing auto-complete results Where I want them in my HTML [closed]
I have some code in my functions.php that creates a list of auto-suggested items based on a form's text:
<?
add_action('wp_enqueue_scripts', 'se_wp_enqueue_scripts');
function ...
0
votes
1answer
173 views
Auto-suggest to display meta-data, but not to include it upon click
I'm using wordpress' built in suggest scripts to create an auto-suggest form based on custom post titles...
add_action('wp_enqueue_scripts', 'se_wp_enqueue_scripts');
function se_wp_enqueue_scripts() ...
5
votes
1answer
1k views
Auto-complete or auto-suggest from list of post titles
I want to have an auto-complete or auto-suggest function on a (search) form:
When a user begins to type, it suggests post titles that have matching text.
I'd also like it to display some meta-data ...
0
votes
1answer
87 views
Take excerpt of the content of the post and send it as the title to create new post
Explaining my goal: I would create the title by taking the first words of the post content. Ex: In the Admin interface would be the title field blank and the first 10 words of content would be sent as ...
0
votes
2answers
1k views
How to implement jquery-ui autocomplete into custom fields?
I currently have a custom fields for enter State name. I want to use the autocomplete from jquery-ui in this fields. However, I failed.
This is the first time I using jquery-ui, and I am not so ...
1
vote
1answer
448 views
jQuery ajax call throws an HTTP 302
I'm trying to implement a jQuery Autocomplete where the Autocomplete gets its data from a ajax source. However, for some reason when I make the call it results in a 302 which in turn results in a 404.
...
2
votes
2answers
506 views
Autocomplete for taxonomy input boxes on a front end form
I have created a simple frontend form to allow users to submit posts - similar to the tutorial here - http://voodoopress.com/ . I also have a couple of custom taxonomies which i have as text input ...
1
vote
1answer
1k views
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 ...
3
votes
1answer
130 views
How would implement StackExchange 'Questions with similar titles' for the FAQ on my wordpress site
I want to have a FAQ page on my site which has a search box. As the user types in their question, a field below the search box is populated with FAQ answers with similar titles.
The exact same ...
0
votes
1answer
492 views
Tags as autocomplete values
How can I load regular post tags as values for autocomplete field? What I have now is pretermined values like this:
var data = {items: [
{value: "1", name: "Siemens"},
{value: "2", name: "Phillips"},
...
1
vote
1answer
3k views
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 ...
3
votes
4answers
1k views
Can I disable the autocomplete?
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 ...