Answer the question
In order to leave comments, you need to log in
How to add active fields from the "Counters" area to the "Menu" area in the WP-Recall plugin?
Is it possible, through the personal account tab manager, to add tabs to the MENU: subscriptions, subscribers, and rating?
So that the buttons: subscriptions, subscribers, and rating are also in the TAB menu, with the same ajax-loading as the tabs: profile and chats
Add them with additional active fields
The usual way to add an active field to these tabs does not work
. Is there a solution to this issue?
Thank you for your attention, Lord!
Answer the question
In order to leave comments, you need to log in
This snippet will answer your question:
function otfm_change_output_tab($tabs){
if($tabs['id'] === 'rating' || $tabs['id'] === 'subscriptions' || $tabs['id'] === 'followers'){
$tabs['output'] = 'menu';
}
return $tabs;
}
add_filter('rcl_tab','otfm_change_output_tab');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question