Map locations offshore

This topic contains 38 replies, has 3 voices, and was last updated by  Stiofan O’Connor 6 years, 10 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #384507

    John Marston
    Full Member
    Post count: 170
    This reply has been marked as private.
    #384532

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    i’ll be around tomorrow if u are?

    Stiofan

    #384543

    John Marston
    Full Member
    Post count: 170
    This reply has been marked as private.
    #384750

    John Marston
    Full Member
    Post count: 170
    This reply has been marked as private.
    #384775

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    You can test that button i added to your front page.

    For the gravatar thing u will need thses filters:

    
    
    apply_filters('sd_detail_author_name', $author_name);
    apply_filters('sd_detail_entry_author', $entry_author);
    apply_filters('sd_detail_author_link', $author_link);

    Stiofan

    #385993

    John Marston
    Full Member
    Post count: 170
    This reply has been marked as private.
    #386251

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Each filter above lets you edit the original values, you need to write a small function to change the value depending on the circumstances.

    Stiofan

    #386284

    John Marston
    Full Member
    Post count: 170
    This reply has been marked as private.
    #386285

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    You need to write a function to replace each element in certian circumstances.

    
    
    add_filter('sd_detail_author_name', '_my_change_author_name',10,1);
    function _my_change_author_name($author_name){
    
        if(1==1){
            $author_name = 'new author name';
        }
    
        return $author_name;
    
    }

    We can give you examples like above but we don’t do custom work, you would need to do it yourself or hire someone.

    Thanks,

    Stiofan

Viewing 9 posts - 31 through 39 (of 39 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket