• so I was having issues with getting this working right in wp 3.6. the jquery was old, the taxonomy autocompletion was not working, and it looked very different from what I wanted.

    so try this out:
    https://www.dropbox.com/s/glvho7plwqktqeg/gravity-forms-custom-post-types.zip

    your own theme:

    and by the way if you want to use your own theme with the taxonomy autocomplete feature where it makes those grey boxes you can make one at http://jqueryui.com/themeroller/
    and place it in your theme.

    to get yours working do this in functions.php:

    function change_styles(){
    
    wp_dequeue_style('gfcpt_jquery_ui_theme'); //use my own themeroller styles i enqueued 
    
    //my themeroller was placed in a fodler in theme called css hence-
    
     wp_register_style('jquery-ui-theme', get_template_directory_uri() . '/css/jquery-ui-1.10.3.custom.min.css');
    
     wp_enqueue_style('jquery-ui-theme');
    
    }
    
    add_action('gform_enqueue_scripts', 'change_styles', 99);

    I cant promise anything. I am only a front end developer…. 🙂

    http://wordpress.org/plugins/gravity-forms-custom-post-types/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘fixing this plugin for wp 3.6’ is closed to new replies.