Installation Coordinator

Mexico | Argentina | Colombia | Brazil | Chile | Peru | Costa Rica
Asana, Communication, Solar, Organization, Excel, Scheduling

Job Duties:

The Solar Installation Coordinator will be responsible for reviewing the scope of work, putting together contract, confirming equipment with the warehouse for delivery, manage the scheduling and execution of solar panel installations, working closely with installation teams, customers, and vendors to ensure successful project delivery. The ideal candidate will have strong project management skills, a solid understanding of solar systems, and excellent communication abilities.

Key Responsibilities:

· Project Coordination: 

Schedule installation projects and allocate resources effectively.

Monitor project timelines and deliverables to ensure on-time completion.

· Customer Communication:

Serve as the main point of contact for customers throughout the installation process.

Provide updates to customers regarding project status and address any questions or concerns.

· Team Management:

Coordinate installation teams, including electricians, technicians, and subcontractors.

Facilitate clear communication among team members to ensure a cohesive workflow.

· Logistics Planning:

Order and manage the inventory of solar panels, inverters, and other necessary materials.

Ensure all required permits and approvals are obtained before installation.

· Quality Assurance: 

Monitoring installation quality and ensuring that all work meets company standards and client expectations.

· Troubleshooting:

Address any problems that arise during the installation process quickly and efficiently.

Liaise with technical support to resolve technical issues as needed.

· Documentation:

Maintain accurate records of project details, including timelines, budgets, and changes.

Prepare reports on project progress and performance metrics for management review.

 

 

Qualifications:

· Education: 

Bachelor’s degree in a relevant field (e.g., engineering, environmental science, project management) is preferred.

· Experience:

Proven experience in project coordination or management, preferably in the renewable energy or solar industry.

Familiarity with solar installation processes and technology.

· Skills:

Strong organizational and multitasking skills.

Excellent verbal and written communication skills.

Fluent in English and comfortable talking on the phone.

Proficient in project management software and tools.

 

Work Schedule

· 9am - 5pm EST time

· Up to 40hrs a week depending on available workload

Skill Requirements:

Nice to have knowledge in Asana
Nice to have knowledge in Communication
Nice to have knowledge in Solar
Nice to have knowledge in Organization
Nice to have knowledge in Excel
Nice to have knowledge in Scheduling

Refer

/** * Common Author Schema Enhancer for Yoast SEO * Adds jobTitle, knowsAbout, and extra sameAs links to Yoast's * existing Person schema node — no duplicate schema created. */ // STEP 1: Add custom fields to WordPress user profile add_action('show_user_profile', 'author_schema_extra_fields'); add_action('edit_user_profile', 'author_schema_extra_fields'); function author_schema_extra_fields($user) { $job_title = esc_attr(get_the_author_meta('job_title', $user->ID)); $knows_about = esc_attr(get_the_author_meta('knows_about', $user->ID)); $extra_sameas = esc_textarea(get_the_author_meta('extra_sameas', $user->ID)); echo '

Author Schema / E-E-A-T Info

'; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '
'; } add_action('personal_options_update', 'author_schema_save_extra_fields'); add_action('edit_user_profile_update', 'author_schema_save_extra_fields'); function author_schema_save_extra_fields($user_id) { if (!current_user_can('edit_user', $user_id)) return; update_user_meta($user_id, 'job_title', sanitize_text_field($_POST['job_title'] ?? '')); update_user_meta($user_id, 'knows_about', sanitize_text_field($_POST['knows_about'] ?? '')); update_user_meta($user_id, 'extra_sameas', sanitize_textarea_field($_POST['extra_sameas'] ?? '')); } // STEP 2: Inject jobTitle + knowsAbout into Yoast's Person schema node add_filter('wpseo_schema_person', 'author_schema_enhance_person', 11, 2); function author_schema_enhance_person($data, $context) { $user_id = isset($context->indexable->author_id) ? $context->indexable->author_id : get_the_author_meta('ID'); if (!$user_id) return $data; $job_title = get_the_author_meta('job_title', $user_id); if (!empty($job_title)) { $data['jobTitle'] = $job_title; } $knows_about = get_the_author_meta('knows_about', $user_id); if (!empty($knows_about)) { $data['knowsAbout'] = array_map('trim', explode(',', $knows_about)); } return $data; } // STEP 3: Merge extra sameAs URLs into Yoast's social profiles array add_filter('wpseo_schema_person_social_profiles', 'author_schema_merge_sameas', 10, 1); function author_schema_merge_sameas($profiles) { $user_id = get_the_author_meta('ID'); $extra_raw = get_the_author_meta('extra_sameas', $user_id); $extra = array_filter(array_map('trim', explode("\n", $extra_raw))); return array_values(array_unique(array_merge($profiles, $extra))); }