Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I really need this functionality too. It seems kind of difficult because the normal functionality is easy: get all terms for a particular taxonomy… whereas we need it to work in a more complex fashion: get all the terms for the items in the current category, grouped by taxonomy. While this seems very intuitive, it’s quite a deviation from the way it works out of the box. I’m just surprised no one has done it yet.

    If you figure it out, please post back here. I will do the same.

    I am investigating this same problem. The issue is that there is no 1-size-fits-all solution to fixing this problem due to the fact that not ALL plugins should run every time pageCreate gets fired (ex. plugins which act upon the header and footer).

    The easiest solution is to single out the plugins which need to run after pageCreate, and update them so that…

    $(function(...
    $(document).ready(function(...

    is updated to …

    $(document).on('ready pageCreate', function(...

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