Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Johann Heyne

    (@jonua)

    Do you mean on an edit page of a taxonomy term or in a post/posttype/page by an active term? Both should work. But these are different rule options. Maybe there is an mistake or I have an issue with it but I can not replicate it for now and need more specific informations.

    Plugin Author Johann Heyne

    (@jonua)

    Ok, I found an issue and I will fix it in the next release.

    Plugin Author Johann Heyne

    (@jonua)

    Should be working now in version 1.1.12.

    Thread Starter gaoupiou

    (@gaoupiou)

    i updated the plugin and it is still not working.
    I mean on an edit page of a taxonomy term.
    Inside the .acf-input-wrap element there is only the hidden input.

    dbalconi

    (@dbalconi)

    I’ve the same problem. Did you find a workaround?
    thanks

    • This reply was modified 8 years ago by dbalconi.
    dbalconi

    (@dbalconi)

    HardFix :

    /js/input-v4.js:131
    (I use Acf v4)
    form:

    		t.is_ajax = function() {
    			if (
    				t.obj.body.hasClass( t.param.classes.admin_page_profile )
    				|| t.obj.body.hasClass( t.param.classes.admin_page_user_edit )
    			) {
    
    				t.var.ajax = true;
    			}
    		};

    to:

    		t.is_ajax = function() {
    			t.var.ajax = true;
    			if (
    				t.obj.body.hasClass( t.param.classes.admin_page_profile )
    				|| t.obj.body.hasClass( t.param.classes.admin_page_user_edit )
    			) {
    
    				t.var.ajax = true;
    			}
    		};

    basically ajax true always ??

    Plugin Author Johann Heyne

    (@jonua)

    Setting t.var.ajax = true; always may have an performance impact. I investigated that issue in an taxonomy term edit page and may version 1.1.14 fix it.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Table field in taxonomy term not showing’ is closed to new replies.