Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi here is the solution

    in your plugins/user-access-manager/user-access-manager.php

    Found the code around line 1691-1695

    <?php
    $args = array( ‘numberposts’ => -1,
    ‘post_type’ => ‘attachment’);
    $files = get_posts($args);
    ?>

    Remove it

    now the whole page can displayed

    if you still having the problem

    Remove the line around 1595-1597

    <?php
    $args = array(‘numberposts’ => -1);
    $posts = get_posts($args);
    ?>

    This should solve your problem now

    Thanks

    Hi jasongeiger

    Thanks for the code i like it but i want to know one more thing.

    i m able to extract all tags within the category but what if someone wants custom taxonomy with the categories

    actually i have two section on my blog

    Brand Name – which is handled by tags
    Types – which is handles by custom taxonomy named TYPE

    so i want to list all the types within the category

    could you please provide me the modified code

    Thanks

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