type-sharetwitter-text-before']); } else { $twitter_share_text_before = ""; } if(!empty($layer['settings']['link-type-sharetwitter-text-after'])){ $twitter_share_text_after = str_replace(array("%title%","%excerpt%"), array($title,$excerpt), $layer['settings']['link-type-sharetwitter-text-after']); } else { $twitter_share_text_after = ""; } $twitter_share_text = $twitter_share_text_before.$twitter_share_url.$twitter_share_text_after; $text = ''.$text.''; break; case 'likepost': if(!empty($this->post['ID'])) $text = ''.$text.''; //javascript-link else $text = ''; break; } if($link_to !== 'none') $do_display = true; //set back to true if a link is set on layer $text = trim($text); //check for special styling coming from post option and set css to the queue if(isset($layer['id'])) $this->set_meta_element_changes($layer['id'], $unique_class); $post_class = (!isset($post['ID'])) ? '' : ' eg-post-'.$post['ID']; if($base->text_has_certain_tag($text, 'a') && !$do_ignore_styles){ //check if a tag exists, if yes, class will be set to a tags and not the wrapping div, also the div will receive the position and other stylings // && @$layer['settings']['source'] !== 'text' if($is_woo_cats && strpos($text, 'class="') !== false || $is_woo_button || $is_filter_cat && strpos($text, 'class="') !== false){ //add to the classes instead of creating own class attribute if it is woocommerce cats AND a class can be found $text = str_replace('class="', 'class="'.$unique_class.$post_class.$lb_class.' ', $text); }elseif($is_html_source && strpos($text, 'class="') !== false){ $text = str_replace('', '', $text); //moved to more global css generation process @version: 2.0 //$this->add_css_wrap[$unique_class]['a']['display'] = $do_display; //do_display defines if we should write display: block; //$this->add_css_wrap[$unique_class]['a']['full'] = $do_full; //do full styles (for categories and tags separator) $unique_class .= '-a'; } if($do_ignore_styles) $unique_class = 'eg-'.esc_attr($this->handle).'-nostyle-element-'.$layer['id']; //replace all the normal shortcodes if(function_exists('qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')){ //use qTranslate $text = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($text); }elseif(function_exists('ppqtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')){ //use qTranslate plus $text = ppqtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($text); }elseif(function_exists('qtranxf_useCurrentLanguageIfNotFoundUseDefaultLanguage')){ //use qTranslate X $text = qtranxf_useCurrentLanguageIfNotFoundUseDefaultLanguage($text); } $text = do_shortcode($text); if($special_item == 'true' && $special_item_type == 'line-break'){ //line break element echo ' '."\n"; }elseif(trim($text) !== ''){ //}elseif(!empty($text)){ $use_tag = $base->getVar($layer['settings'], 'tag-type', 'div'); echo ' <'.$use_tag.' class="esg-'.$class.$post_class.$video_play.$ajax_class.' '.$hideunderClass.$unique_class.$transition.'"'.$ajax_attr.$transition_split.$delay.$hideunderHTML; echo ($demo == 'custom') ? $demo_element_type : ''; echo $data_transition_transition . '>'; echo $text; echo ''."\n"; } } /** * Retrieve the value of post elements */ public function get_post_value($handle, $separator, $function, $meta, $catmax = '-1', $taxonomy = ""){ $base = new Essential_Grid_Base(); $text = ''; /* 2.1.5 category max option */ $adjustMax = false; if( in_array( $handle, array( 'cat_list','tag_list','taxonomy') ) ) { if(!empty($catmax) && $catmax !== '-1' && is_numeric($catmax) && intval($catmax) > 0) { $catmax = intval($catmax); $adjustMax = true; } } switch($handle){ //Post elements case 'post_id': $text = $base->getVar($this->post, 'ID', ''); break; case 'post_url': $post_id = $base->getVar($this->post, 'ID', ''); $text = get_permalink($post_id); break; case 'title': $text = $base->getVar($this->post, 'post_title', ''); break; case 'caption': case 'excerpt': $text = trim($base->getVar($this->post, 'post_excerpt')); if(empty($text)){ //strip essential grid shortcode here $text = do_shortcode($base->strip_essential_shortcode($base->getVar($this->post, 'post_content'))); $text = preg_replace("/]*>(.*?)<\\/style>/s", "", $text); $text = preg_replace("/]*>(.*?)<\\/script>/s", "", $text); } $text = strip_tags($text); //,"

" break; case 'meta': $m = new Essential_Grid_Meta(); $text = $m->get_meta_value_by_handle($base->getVar($this->post, 'ID', ''),$meta); break; case 'likespost': $post_id = $base->getVar($this->post, 'ID', ''); if(!empty($post_id)){ $count = get_post_meta($post_id, "eg_votes_count", 0); if(!$count) $count[0] = 0; if(is_array($count)){ $text = ''.$count[0].''; } } else{ $text = ''; } break; case 'alias': $text = $base->getVar($this->post, 'post_name'); break; case 'content': $text = apply_filters('the_content', $base->getVar($this->post, 'post_content')); break; case 'link': $text = get_permalink($base->getVar($this->post, 'ID', '')); break; case 'date': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = $base->convert_post_date($postDate); break; case 'date_day': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('dd',strtotime($postDate)); break; case 'date_month': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('m',strtotime($postDate)); break; case 'date_month_abbr': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('M',strtotime($postDate)); break; case 'date_year': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('Y',strtotime($postDate)); break; case 'date_year_abbr': $postDate = $base->getVar($this->post, "post_date_gmt"); $text = date('y',strtotime($postDate)); break; case 'date_modified': $dateModified = $base->getVar($this->post, "post_modified"); $text = $base->convert_post_date($dateModified); break; case 'author_name': $authorID = $base->getVar($this->post, 'post_author'); $text = get_the_author_meta('display_name', $authorID); break; case 'author_posts': $authorID = $base->getVar($this->post, 'post_author'); $text = get_author_posts_url($authorID ); break; case 'author_profile': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_the_author_meta('url', $authorID); break; case 'author_avatar_32': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_avatar( $authorID, 32); break; case 'author_avatar_64': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_avatar( $authorID, 64); break; case 'author_avatar_96': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_avatar( $authorID, 96); break; case 'author_avatar_512': $authorID = $base->getVar($this->post, 'post_author'); $meta_value = get_avatar( $authorID, 512); break; case 'num_comments': $text = $base->getVar($this->post, 'comment_count'); break; case 'cat_list': $use_taxonomies = false; $postCatsIDs = $base->getVar($this->post, 'post_category'); if(empty($postCatsIDs) && isset($this->post['post_type'])){ $postCatsIDs = array(); $obj = get_object_taxonomies($this->post['post_type']); if(!empty($obj) && is_array($obj)){ foreach($obj as $tax){ if($tax == 'post_tag') continue; $use_taxonomies[] = $tax; $new_terms = get_the_terms($base->getVar($this->post, 'ID', ''), $tax); if(is_array($new_terms) && !empty($new_terms)){ foreach($new_terms as $term){ $postCatsIDs[$term->term_id] = $term->term_id; } } } } } /* 2.1.5 category max option */ if($adjustMax && is_array($postCatsIDs)) $postCatsIDs = array_slice($postCatsIDs, 0, $catmax, true); $text = $base->get_categories_html_list($postCatsIDs, $function, $separator, $use_taxonomies); break; case 'tag_list': if(!$adjustMax) { $text = $base->get_tags_html_list($base->getVar($this->post, 'ID', ''), $separator, $function); } else { $text = $base->get_tags_html_list($base->getVar($this->post, 'ID', ''), $separator, $function, $catmax); } break; case 'taxonomy': if(!$adjustMax) { $text = $base->get_tax_html_list($base->getVar($this->post, 'ID', ''), $taxonomy, $separator, $function); } else { $text = $base->get_tax_html_list($base->getVar($this->post, 'ID', ''), $taxonomy, $separator, $function, $catmax); } break; /* case 'iframe': print '

HELLO!

'; die(); break; */ default: $text = apply_filters('essgrid_post_meta_content', $text, $handle, $base->getVar($this->post, 'ID', ''), $this->post); break; } return $text; } /** * Retrieve the value of post elements */ public function get_custom_element_value($handle, $separator, $meta = ''){ $base = new Essential_Grid_Base(); $m = new Essential_Grid_Meta(); $text = ''; $text = $base->getVar($this->layer_values, $handle, ''); if($text == '' && $meta != '') $text = $base->getVar($this->layer_values, $meta, ''); if(intval($text) > 0){ //we may be an image from the metas $custom_meta = $m->get_all_meta(false); if(!empty($custom_meta)){ foreach($custom_meta as $cmeta){ if($cmeta['handle'] == $handle){ if($cmeta['type'] == 'image'){ $img = wp_get_attachment_image_src($text, $this->media_sources_type); if($img !== false){ $text = $img[0]; //replace with URL } } break; } } } } return $text; } /** * Retrieve the value of event elements */ public function get_event_manager_value($handle){ $base = new Essential_Grid_Base(); $text = ''; switch($handle){ //check for event manager case 'event_start_date': break; case 'event_end_date': break; case 'event_start_time': break; case 'event_end_time': break; case 'event_event_id': break; case 'event_location_name': break; case 'event_location_slug': break; case 'event_location_address': break; case 'event_location_town': break; case 'event_location_state': break; case 'event_location_postcode': break; case 'event_location_region': break; case 'event_location_country': break; } return $text; } /** * Retrieve the value of woocommerce elements */ public function get_woocommerce_value($meta, $separator, $catmax = false){ $text = ''; if(isset($this->post['ID'])){ if(Essential_Grid_Woocommerce::is_woo_exists()){ $base = new Essential_Grid_Base(); $m = new Essential_Grid_Meta(); /* 2.1.5 category max option */ $adjustMax = false; if($meta === 'wc_categories') { if(!empty($catmax) && $catmax !== '-1' && is_numeric($catmax) && intval($catmax) > 0) { $catmax = intval($catmax); $adjustMax = true; } } if($adjustMax) { $text = Essential_Grid_Woocommerce::get_value_by_meta($this->post['ID'], $meta, $separator, $catmax); } else { $text = Essential_Grid_Woocommerce::get_value_by_meta($this->post['ID'], $meta, $separator); } } } return $text; } } Dear Alyne's job list (BOOK MARK THIS!) - Dear Alyne

BOOK MARK THIS if you want an amazing job! Check back frequently and apply first! 

NEW LISTING: Travel for free with Dear Alyne (videographer – APPLY HERE)

Dear Alyne is searching for a videographer

Dear Alyne is searching for a videographer! APPLY HERE.

Join me on upcoming trips: Examples: Bangladesh, Bhutan, Bali. All of your expenses and travel will be covered. Let’s build a relationship and see if we can create a long term work partnership!

NEW LISTING: COPYWRITER FOR NAS DAILY (remote job)

Nas daily hiring copywriter
Nas daily hiring copywriter

This is a REMOTE POSITION.

We’re looking for an experienced copywriter/SCRIPT WRITER for NAS DAILY to write Facebook Video Ad Scripts 🙂

Your scripts should be to the point and be CONVERSION ORIENTED.
Every word counts!

The videos will be short, 30 seconds to 2 minutes.

Videos are either “talking head” — or some just B-roll text with overlays like “NowThis” or other viral video agencies.

If you don’t understand what that means, this job is probably not for you.

Experience with video scripts is NON-NEGOTIABLE; this is not an “I think I could do it if I only tried my very best!” type of project.

SOME OTHER DETAILS YOU SHOULD BE AWARE OF:

+ We’ve never worked with outside copywriters before.
You would need to be able to lead us through your process (and help them make their own stronger where you can), manage expectations, and stand up for yourself.

+ Our team of four shoots and edits in-house; we usually do everything (script included) in A SINGLE DAY — so expect to move fast.

+ The right applicant is conversion-oriented, knows the Facebook platform, and MUST have written video scripts before. If any of the above does NOT apply to you, DO NOT APPLY.

IF YOU ARE INTERESTED AND QUALIFIED, HERE IS WHAT TO DO:

Email dearalyne@gmail.com with all of the following…

+ Your name
+ A COMPELLING summary of your experience (why YOU?)
+ A RELEVANT sample of your work (or better yet, several)
+ Your availability
+ Consider sending a VIDEO pitch (use Loom)

(P.S. Thanks Joel Klottke for helping us write the job description).
________________________________________________________________________
Galton Voysey is looking for a Right-Hand to our CEO William Wolfram.

This is a company Nas Daily has worked with before, check out the video HERE

Our company just won the Great Place to work competition for Greater China and is one the fastest growing companies in Hong Kong.

The duties among other things are:
– Reading and replying to emails on behalf our CEO
– Managing our CEO’s schedule
– Transiting to and from work in private car with CEO going through the upcoming day and the previous days key take-aways
– Recruiting and interviewing talent
– Acting as the Chief of Staff between CEO and teams
– Filling in for CEO when CEO is on vacation
– Organizing and setting up company events
– Building strategy both long term and short term
– Following up with leaders in our company and managing teams
– Setting goals and objectives for teams and the company
– Finding, reminding and sending gifts to key partners
– Acting as a sounding board for CEO ranging from personal matters to managing talent to strategy and vision

The compensation is highly competitive with full healthcare coverage, 20 paid holidays, unlimited education budget and other benefits that can be learned about on our website https://www.galtonvoysey.com

The biggest benefit however is learning how to run a company of our size ($40M+ USD in revenue this year, growing 100% a year), meeting the most interesting business leaders through our partners, etc. and unlimited career opportunity in the years to come.

We intend to make the hiring within the next 2 weeks!

Let me know if you are interested in the role by sending me an email at marine.antikainen@galtonvoysey.com

 DREAM JOB! Travel full time with P.S. I’m On My Way!

 

P.S. I'm on my way is hiring a full time travel assistant!
P.S. I’m on my way is hiring a full time travel assistant!

Alyne says: Trisha is one of my favorite bloggers on earth and this is a dream job!! Learn from the best and get paid and travel!? Amazing! 

Join P.S. I’m On My Way’s Team!
⠀⠀
I have a small team at the moment and I’m always looking for more people as we grow. Check this list from time to time and see if anything below fits you. Please only apply if you are qualified.
⠀⠀
I’M LOOKING FOR AN ASSISTANT WHO CAN TRAVEL WITH ME STARTING MARCH 2019. THIS IS NOT A REMOTE POSITION.
⠀⠀
– Willing to travel 6-8 months without going home (starting March 2019)
– Must know how to travel backpacking style and can adapt to any living conditions
– Willing to learn new cultures as we are going to be with local families
– Not a picky eater. The person I am looking for should not have a dietary requirement
– Strangely independent. Here at P.S. I’m On My Way, we are all very independent and can go our own way
– Fearless as fck.
– Good writing and communication skills required
– Basic photo and video editing (not required but a huge plus!)
– Must know how to take videos and pictures (basic) and/or willing to learn how to
– Social media knowledge required
A bit of basic graphic design (not required but a huge plus!)
– Can work with minimal supervision
⠀⠀
THIS IS A PAID JOB WITH REGULAR INCOME. Travel perks included, of course! If traveling the world is the kind of job you want, check how to apply in the link on my bio! Good luck!

1.) 2-3 POSITIONS in MARKETING AND SALES FOR ACANELA (TRAVEL COMPANY)

acanela expeditions is hiring

WE’RE HIRING! We’ve had a stellar year this past year and we’re looking to bring on some additional talent! As many of you know my company Acanela Expeditions focuses on boutique travel experiences in international destinations around the world. We’re looking for part-time / full time sales, operations, & marketing talent to join our team!

The position(s) would be on-site with members of our Lehi, UT group. Sometimes the role will operate remotely when circumstances allow / dictate. we are looking to hire 2-3 people. Please let me know if you’re interested or know anyone who might be! If you do, please have them reach out to operations@acanela.com or via Facebook – thanks everyone! 🙂

Marketing & Partnerships Description:

As a part of the marketing team you will be responsible to organize (create and edit) email, blog, and website content – assisting our team in reaching out to companies who will help promote our trips & content.

*Detail oriented with great writing skills; preferably some editing background (email, blog, website, itineraries, etc…)

*Call and email brands about existing and new partnership opportunities

*Manage (and grow) our social media platforms and the associated content

Sales & Operations Description:

As part of the operations & sales team (client success team) you will be an integral part of our sales process – helping to contact people who have inquired about international trips, and working with our team to assemble the pieces of the trip together.

*Respond to email & phone booking inquiries about various Acanela destinations

*Call customers who have submitted booking inquiries

*Coordinate with our in-country team to organize various portions of the trip experience

*Travel experience is a plus but not necessary (we will provide training)

*Outgoing and energetic

*Able to think on your feet and problem solve

*Good listening / phone skills

*Ability to effectively multi-task

www.acanela.com

 TEAM NAS DAILY!!!  (2 POSITIONS) – JOBS FILLED

dear alyne nas daily and agon hare

I’m looking to add two people to the team. If you are THE BEST at what you do, please see below.

1. Team Assistant: I’m looking for a right hand man/woman. Someone to be available 24/7 to book flights or hotels, respond to emails, sales outreach, manage projects, manage teams, be a logistic wizard, and to love what they do. This position is open to anyone from anywhere in the world and the pay is 50% above market rate. So whatever the average salary, I’ll pay 50% more.

It’s a very tough job. You need to be on your feet all the time. The job includes a lot of not fun stuff like excel work and really fun stuff like travel and working with the team offline. We work 24/7 and we expect all of our teammates to do so well.

2. Designer: make us look pretty. This is a part-time position. But I need someone to make everything they touch pretty. Job includes: re-designing powerpoints, word docs, stickers, tshirts, website. Whatever needs to look pretty, they can do it. This is not 24/7 – this is more like 10 hours per week. Please only apply if you do this professionally. I am not interested in beginner stage at this point.

If you want to apply, please message helpnasdaily@gmail.com with a clear title as to what position you’re applying for. Make sure to send work experiences. Unfortunately, emails just expressing interest in travel / Nas Daily will not qualify. You need to be a pro. I look forward to working with you!! If you know any friends, feel free to tag them as well!

That’s 1 minute, see you soon!

3.) SNAPCHAT JOURNALIST (FOR HASHTAG OUR STORIES)

 

Hashtag our stories is hiring
HIRING: highly creative journalist for our daily Snapchat show.

 

At Hashtag Our Stories (HOS) we’re exploring the world through people’s perspectives.

Can you turn user-generated content (UGC) into professional quality journalism? As a curation partner with Snapchat, we can search through billions of Snaps from around the world to create amazing stories. Using only UGC, what video stories would you tell this week?

Send five (5) story ideas to info@hashtagourstories.com or pitch in the comments.

Tips:
-We love stories which challenge a prejudice or highlight solutions.
-Use Snap Maps and Instagram Stories to find videos and voices
-Our target audience are Americans aged 17-19.
-Stories should respond to current themes and trends. Why now?
-Btw, this position requires you to work remotely.

Goodluck!

4.) Writing Mentors!

PenMen is a digital writing agency that is looking for freelance writers from all industries.

Who can apply:
– Any professional from any field, as long as you have a flair in writing. You could be an IT professional or fashion designer. It doesn’t matter, as long as you can write!

How to apply:
– Send two of your best writing samples to Aradhita at penmendesk@gmail.com.

What is the pay:
– $11/USD per hour

This job listing is by Aradhita Saraf. Feel free to drop her any questions at penmendesk@gmail.com.

5) Work at one of the best hostels in Israel

This job posting is by Dear Alyne. Send your resume to jobs@abrahamhostels.com

Abraham Hostel is my FAVOURITE hostel in all of Israel and it’s the BEST, we always stay there!!!

The team is great and friendly and I think you would love working there, so go check out their vacancies on Abraham Hostels site. #AlyneApproved

Right now, there are positions for cooks, general managers, reception staff, and more.

Total
465
Shares

Leave a Reply

Your email address will not be published. Required fields are marked *

*
*