• Resolved moatwork

    (@moatwork)


    Hi,

    is there an option to change the text from the “remote work” module, e.g. to Home Office. Background: most of the plugin is already showing headers etc in German, but the remote work part still is English. Would be great to edit it manually.
    Or any reason, e.g. from Google, not to change this wording?

    Thanks
    Michaela

Viewing 1 replies (of 1 total)
  • Plugin Author BlueGlass

    (@blueglassinteractive)

    Hi @moatwork

    theres php hooks available:

    add_filter('job-postings/JOB_POST_ID/remote-possible-text', function($text){
    $text = 'Home Office'; // Default: Remote work possible
    return $text;
    });

    and

    add_filter('job-postings/JOB_POST_ID/remote-from-text', function($text){
    $text = 'Home Office'; // Default: Remote work from
    return $text;
    });

    Add to function.php file of your theme

Viewing 1 replies (of 1 total)
  • The topic ‘Change text of module “remote work”’ is closed to new replies.