Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bermudacloud

    (@bermudacloud)

    I’ve read wordpress.org/support/topic/742858 and wordpress.org/support/topic/missing-countries but I’m not clear on how I can do this.

    Hi,

    you can try to hook into em_get_countries filter.

    (should be added in your theme functions.php)

    e.g.

    function em_my_mod($em_countries_array){
     /*START*/
     //add snippet here
     /*END*/
     return $em_countries_array;
    }
    add_filter('em_get_countries','em_my_mod',10,1);
    
    /*please see em-functions.php at around line 142 to see how it works*/

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    I’ll add Bermuda in the next update, sorry we missed you!

    Thread Starter bermudacloud

    (@bermudacloud)

    @marcus Thx so much 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Country’ is closed to new replies.