Difference between revisions of "TalentPiper"

From TempusServa wiki
Jump to navigation Jump to search
old>Admin
old>Admin
Line 23: Line 23:
     echo file_get_contents("https://talentpiper.com/demo/mainpublic?command=dk.p2e.blanket.codeunit.common.PagePublicRecordsListAndShow&AjaxMode=1");
     echo file_get_contents("https://talentpiper.com/demo/mainpublic?command=dk.p2e.blanket.codeunit.common.PagePublicRecordsListAndShow&AjaxMode=1");


This approach is sightly faster than JQuery (below) and is idexable by search engines.


=== Integrating with any CMS using JQuery ===
=== Integrating with any CMS using JQuery ===

Revision as of 12:31, 19 December 2019

Setting up outound emails

In the designer edit the following configurations

  • smtpServer
  • smtpUsername
  • smtpPassword

Displaying vacancy list in CMS

The following describes how to inject the list of vacancies created in TalentPiper directly into a web page.

This helps:

  • Reuse styling/layout from standard pages
  • Content is indexed properly with search engines

Integrating with WordPress using PHP

From the control panel of your WordPress site do the following to integrate the vacancy list from TalentPiper:

  1. Install and activate the plugin "Insert PHP Code Snippet"
  2. Add a new PHP code snippet as seen below
  3. Create a new page and add the snippet

Code example:

   echo file_get_contents("https://talentpiper.com/demo/mainpublic?command=dk.p2e.blanket.codeunit.common.PagePublicRecordsListAndShow&AjaxMode=1");

This approach is sightly faster than JQuery (below) and is idexable by search engines.

Integrating with any CMS using JQuery

In the CMS system insert the following code the place where you want to display the list.

<div id='tsContent'>Indhold hentes

 <script>
 jQuery.ajax(
 { 
    url: 'https://talentpiper.com/demo/mainpublic?command=dk.p2e.blanket.codeunit.common.PagePublicRecordsListAndShow', 
    success: function(data) { jQuery('#tsContent').html(data); } 
 });
 </script>