dabbas
Forum Replies Created
-
Forum: Plugins
In reply to: [SearchWP Live Ajax Search] show post author in live searchgot it 🙂
<?php the_author_meta( 'display_name'); ?>in the theme files /search-results.php
Forum: Plugins
In reply to: [Authors List] User groups shortcodeIt’s working, it’s displing the users by custom taxonomy
I had another issue that was preventing from disabling the users
Forum: Plugins
In reply to: [Authors List] User groups shortcodethen when I but this
[authors_list roles="manager"]the plugin Display nothing even when I choseskip_empty=noForum: Plugins
In reply to: [Authors List] User groups shortcodeThanks for your help, Sure I tried this one but as I mentioned above it’s not working for custom user role I created the custom role basically by adding this code to theme function.php
function wps_add_role() { add_role( 'manager', 'Manager', array( 'read', 'edit_posts', 'delete_posts', ) ); } add_action( 'init', 'wps_add_role' );Forum: Plugins
In reply to: [Authors List] User groups shortcodeHi, I searched there is no Different plugin can give the same functionality,
Whoever, I create a custom user role instead of groups for users “it helps my purpose” also I’ve created a custom user taxonomy but I couldn’t list the attributed users.
can you help me to Display users by custom user role or by custom user taxonomy?