• Resolved danpacey

    (@danpacey)


    Hey, firstly – great plugin, I’ve found to work well out of the box during dev using v3.2.2. However I’ve run into a problem on updating to 3.2.3:

    In version 3.2.2 the items in my nav that were empty were output wrapped in a <small> tag instead of an anchor. In 3.2.3 they are output as <a> with an active link. There are no attributes or classes I can use to disable these with eg CSS.

    Is this something overlooked perhaps? I could see from the recent commit that there were some considerable changes to the relevant function.

    FYI my list is displayed with query_posts() in this case.

    Also just to note that when rolling back to 3.2.2 I am getting Undefined property: WP_Post_Type::$taxonomy which I did not previously see. I wonder if there are some database changes that are persisting on rollback even when fully deactivating and deleting the plugin via WP.

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Fahad Mahmood

    (@fahadmahmood)

    function disable_ap_letters(obj){

    //console.log(obj);
    //alert(obj);
    //alert(jQuery(obj).length);
    if(jQuery(obj).length>0){
    var obj = jQuery(obj);

    var letter = obj.find('a').html();
    //alert(letter);
    //console.log(letter);
    if(typeof letter!='undefined'){
    obj.html('<small>'+letter+'</small>');
    }
    }
    }

    Actually it was a letter without any wrapper earlier, now it has small tag. It should not disturb anything because it only appears for the disabled letters. Let me know if I can help you further, you can reach me through the contact developer link available under the help tab on the settings page.

Viewing 1 replies (of 1 total)

The topic ‘3.2.3 Breaks “empty” items’ is closed to new replies.