Social Share – Question Answer Plugin

0
Social Share - Question Answer Plugin 1
Anonymous
Oct 17, 2018 09:12 PM 1 Answers General
Member Since Jan 1970
Unsolved Solved Mark as Solved Mark as Unsolved
Subscribed Subscribe Not subscribe
Flag(0)

Hi.
How can I add more social share icons in Answer Page, in Question Answer Plugin?

2 Subscribers
Social Share - Question Answer Plugin 2
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
Social Share - Question Answer Plugin 3
PickPlugins
Oct 17, 2018
Flag(0)

 

there is an action hook for social buttons, you can remove first existing

remove_action( 'qa_action_single_question_main', 'qa_action_single_question_social_share_function', 0 );

then add your own function to the hook

add_action( 'qa_action_single_question_main', 'qa_action_single_question_social_share_function_custom', 0 );
function qa_action_single_question_social_share_function_custom(){

echo 'your HTML here';

}

 

Sign in to Reply
Replying as Submit