• Resolved Sahil

    (@sahimepani)


    After I activate this plugin. All the Upload/Insert/Featured Link stopped working for Post/Pages/Custom Post Types. I have tried uninstalling all the other plugin and just had ACF activated. Still was facing this problem. After I deactivate the plugin. Everything works fine for me.

    http://ww.wp.xz.cn/extend/plugins/advanced-custom-fields/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Elliot Condon

    (@elliotcondon)

    Hi sahimepani,

    I’m currently working through this bug. For now, please edit your core/fields/wysiwyg.php file and replace

    function admin_print_styles()
    	{
      		wp_enqueue_style(array(
      			'editor-buttons',
    		));
    	}

    with

    function admin_print_scripts()
    	{
    		wp_enqueue_script(array(
    
    			'jquery',
    			'jquery-ui-core',
    			'jquery-ui-tabs',
    
    			// wysiwyg
    			'editor',
    			'thickbox',
    			'media-upload',
    			'word-count',
    			'post',
    			'editor-functions',
    			'tiny_mce',
    
    		));
    	}
    
    	function admin_print_styles()
    	{
      		wp_enqueue_style(array(
      			'editor-buttons',
    			'thickbox',
    		));
    	}
    Thread Starter Sahil

    (@sahimepani)

    Hello elliotcondon,

    I tried what you suggested, But still no luck. Please help me

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: Advanced Custom Fields] Upload/Inset/Featured Button stopped working for Post/Pages/Custom’ is closed to new replies.