Please or Register to create posts and topics.

how to add ads code to display in forum topic and comments

Please how can i display ads in topics and post?

Hello josephtersoo,

at the moment there is no backend-option to insert ads-code. But if you can tell me where exactly you want to display ads, I can post you some example-code to do it.

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

i wish to display them in between topics articles.

i also need help on social share as i have tried several but i wont share the post rather the page. please help me to fix this.

Hello again,

for example when you want to show an ad after the first post inside a topic, you can use the following code which you have to add to your themes functions.php file:

function my_ads() {
  echo 'your ads code';
}
add_action('asgarosforum_after_first_post', 'my_ads');

For implementing social sharing buttons for every post, you can use the following hook:

add_action('asgarosforum_after_post_message', 'my_function_share', 10, 2);

function my_function_share($author_id, $post_id) {
    echo 'Your code';  
}

You have to add the corresponing code of the extension you want to use. If you not sure about how it looks, feel free to ask the developer of the social sharing extension. 🙂

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!