Results 1 to 2 of 2

Thread: Open external jobs apply link in new tab; Limit job descriptions

  1. #1
    Thread Starter
    sebet's Avatar
    Join Date
    Oct 2010
    Location
    Portugal
    Posts
    1,491
    Thanks
    138
    Thanked 207 Times in 182 Posts

    Open external jobs apply link in new tab; Limit job descriptions

    - To configure imported jobs apply link to open in a new tab just add the target="_blank" on the 'How To Apply' field in 'Go Fetch Jobs' import jobs page (note: this only applies to newly imported jobs. Previous imported jobs will open in the same tab).

    Captura de ecrã 2015-11-19, às 15.14.01.jpg


    - For external jobs sources that provide long job descriptions you can limit the content with this custom code (add it to your functions.php file).

    PHP Code:

    add_filter
    'the_content''_my_limit_content' );

    function 
    _my_limit_content$content ) {
        global 
    $post;

        
    $is_external get_post_meta$post->ID'_goft_jobs_is_external'true );

        if ( 
    $is_external ) {

                    
    // REPLACE '250' WITH YOUR MAX LENGTH
            
    $max_length 250;

            if ( 
    strlen$content ) > $max_length ) {
                
    $content substr$content0$max_length ) . '...';
            }

        }
        return 
    $content;

    Checkout my products on the Marketplace.

  2. #2
    jcblagos's Avatar
    Join Date
    Dec 2014
    Posts
    35
    Thanks
    2
    Thanked 1 Time in 1 Post
    You must be an AppThemes customer and logged in to view this response. Join today!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Change external links to open in new tab
    By dspjm28 in forum HireBee General Discussion
    Replies: 1
    Last Post: July 22nd, 2014, 10:43 PM
  2. Jomark External Link Plugin?
    By eilserus in forum Help Using JobRoller
    Replies: 1
    Last Post: April 2nd, 2014, 12:14 PM
  3. Replies: 1
    Last Post: January 21st, 2014, 01:08 PM
  4. Easy one... How do I allow an external link from an ad?
    By exoticvintage in forum Report ClassiPress Bugs
    Replies: 1
    Last Post: August 15th, 2011, 03:44 AM