Please or Register to create posts and topics.

Help with integration with Front End PM

PreviousPage 2 of 2

Hallo @dimendia

Für Front End PM ist mir kein Integrations-Code bekannt. Ich habe dieses Plugin auch nie benutzt, weshalb ich jetzt auch leider keinen Code aus dem Hut zaubern kann.

Der Beispiel-Code sollte allerdings noch funktionieren und müsste dementsprechend angepasst werden, so dass die API von Front End PM die entsprechenden Links generiert.

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

Hi @asgaros,

mir wird der Link im Profil des Users angezeigt, aber leider nicht links unter seinem Avatar bei einem Beitrag.

Auch wenn ich dann auf den Link klicke, wird nicht der User ausgewählt für eine neue PN sondern immer der User mit der ID1, also der admin.

Hallo @dimendia

Ja, der Code war etwas wirr. Versuche es mal hiermit und passe es entsprechend an:

 

add_action('asgarosforum_custom_profile_content', 'my_function_asgaros_cabinet2', 30, 1);
function my_function_asgaros_cabinet2($data) {
echo '<a href="http://your_site.com/messages/?fepaction=newmessage&fep_to='.$data->ID.'" title="'.__('Message Privé','rcl-asgaros').'">Message Privé</a>';

}

add_action('asgarosforum_after_post_author', 'my_function_asgaros_cabinet', 30, 1);
function my_function_asgaros_cabinet($author_id) {
  echo '<a href="http://your_site.com/messages/?fepaction=newmessage&fep_to='.$author_id.'" title="'.__('Message Privé','rcl-asgaros').'">PM</a>';
}

 

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

Vielen Dank, so klappt es nun 🙂

Quote from Asgaros on July 5, 2018, 9:36 am

Hallo @dimendia

Ja, der Code war etwas wirr. Versuche es mal hiermit und passe es entsprechend an:

 

add_action('asgarosforum_custom_profile_content', 'my_function_asgaros_cabinet2', 30, 1);
function my_function_asgaros_cabinet2($data) {
echo '<a href="http://your_site.com/messages/?fepaction=newmessage&fep_to='.$data->ID.'" title="'.__('Message Privé','rcl-asgaros').'">Message Privé</a>';

}

add_action('asgarosforum_after_post_author', 'my_function_asgaros_cabinet', 30, 1);
function my_function_asgaros_cabinet($author_id) {
  echo '<a href="http://your_site.com/messages/?fepaction=newmessage&fep_to='.$author_id.'" title="'.__('Message Privé','rcl-asgaros').'">PM</a>';
}
  1. add_action(‘asgarosforum_custom_profile_content’, ‘my_function_asgaros_cabinet2’, 30, 1);
  2. function my_function_asgaros_cabinet2($data) {
  3. echo ‘<a href=”http://your_site.com/messages/?fepaction=newmessage&fep_to=’.$data>ID.‘” title=”‘.__(‘Message Privé’,‘rcl-asgaros’).‘”>Message Privé</a>’;
  4. }
  5. add_action(‘asgarosforum_after_post_author’, ‘my_function_asgaros_cabinet’, 30, 1);
  6. function my_function_asgaros_cabinet($author_id) {
  7. echo ‘<a href=”http://your_site.com/messages/?fepaction=newmessage&fep_to=’.$author_id.‘” title=”‘.__(‘Message Privé’,‘rcl-asgaros’).‘”>PM</a>’;
  8. }
add_action('asgarosforum_custom_profile_content', 'my_function_asgaros_cabinet2', 30, 1);
function my_function_asgaros_cabinet2($data) {
echo '<a href="http://your_site.com/messages/?fepaction=newmessage&fep_to='.$data->ID.'" title="'.__('Message Privé','rcl-asgaros').'">Message Privé</a>';

}

add_action('asgarosforum_after_post_author', 'my_function_asgaros_cabinet', 30, 1);
function my_function_asgaros_cabinet($author_id) {
  echo '<a href="http://your_site.com/messages/?fepaction=newmessage&fep_to='.$author_id.'" title="'.__('Message Privé','rcl-asgaros').'">PM</a>';
}

 

Thanks a lot !

PreviousPage 2 of 2