Help with integration with Front End PM
Quote from Asgaros on July 1, 2018, 12:14 pmHallo @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.
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.
Quote from dimendia on July 2, 2018, 11:28 amHi @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.
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.
Quote from Asgaros on July 5, 2018, 9:36 amHallo @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>'; }
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>'; }
Quote from TOF on July 27, 2018, 9:34 amQuote from Asgaros on July 5, 2018, 9:36 amHallo @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>'; }
- 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>’;
- }
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 !
Quote from Asgaros on July 5, 2018, 9:36 amHallo @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>'; }
- 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>’;
- }
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 !