search4solar.com Open in urlscan Pro
2620:127:f00f:e::  Public Scan

Submitted URL: https://d2-mms04.eu1.hubspotlinks.com/Ctc/2N+113/d2-MmS04/VWZP_l1n8qyTW3nQTcv1S-v9XW6cqVBw5nFP7RN3S9PFY5kBVqW50kH_H6lZ3mzW7D8Nkd7PMnCG...
Effective URL: https://search4solar.com/collections/cecep-solar-container-deals/products/cecep-solar-410wp-silverline-cec6-54mhv?utm_med...
Submission: On November 23 via api from BE — Scanned from CA

Form analysis 5 forms found in the DOM

POST /localization

<form method="post" action="/localization" id="nav-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data" data-hs-cf-bound="true"><input type="hidden" name="form_type" value="localization"><input
    type="hidden" name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to"
    value="/collections/cecep-solar-container-deals/products/cecep-solar-410wp-silverline-cec6-54mhv?utm_medium=email&amp;_hsenc=p2ANqtz-9EBcKaGXtiS8FGWoGk9fXRr8OzUxbkg6IVF56h8aNC9-BFZnAV_0iQAX2N7hIOIL7F2nhI8mvdmzOo_O2Zk7zYTJQjRg&amp;_hsmi=99204841&amp;utm_content=99204841&amp;utm_source=hs_email">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="NL">
      <country-selector><label class="label visually-hidden no-js-hidden" id="nav-localization-country-label">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" aria-labelledby="nav-localization-country-label">
            <span class="text-start">Netherlands (EUR&nbsp;€)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="nav-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="nav-localization-country-opt-0" role="option" data-value="NL" aria-selected="true">
              <span class="pointer-events-none">Netherlands (EUR&nbsp;€)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="en">
      <custom-select id="nav-localization-language"><label class="label visually-hidden no-js-hidden" id="nav-localization-language-label">Language</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" aria-labelledby="nav-localization-language-label"
            style="--custom-select-button-width: -32px;">
            <span class="text-start">English</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="nav-localization-language-opt-0">
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-0" role="option" data-value="en" aria-selected="true">
              <span class="pointer-events-none">English</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-1" role="option" data-value="fr">
              <span class="pointer-events-none">Français</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-2" role="option" data-value="es">
              <span class="pointer-events-none">Español</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-3" role="option" data-value="de">
              <span class="pointer-events-none">Deutsch</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-4" role="option" data-value="pl">
              <span class="pointer-events-none">Polski</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="nav-localization-language-opt-5" role="option" data-value="nl">
              <span class="pointer-events-none">Nederlands</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('nav-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

GET /pages/search-results-page

<form class="search relative search--speech" role="search" action="/pages/search-results-page" method="get" data-hs-cf-bound="true">
  <label class="label visually-hidden" for="header-search">Search</label>
  <script src="//search4solar.com/cdn/shop/t/29/assets/search-form.js?v=43677551656194261111713945353" defer="defer"></script>
  <search-form class="search__form block">
    <input type="hidden" name="type" value="product,">
    <input type="hidden" name="options[prefix]" value="last">
    <input type="search" class="search__input w-full input js-search-input" id="header-search" name="q" placeholder="Search products..." data-placeholder-one="Discover hundreds of products..." data-placeholder-two="Search products..."
      data-placeholder-three="" data-placeholder-prompts-mob="false" data-typing-speed="100" data-deleting-speed="60" data-delay-after-deleting="500" data-delay-before-first-delete="2000" data-delay-after-word-typed="2400"><button
      class="search__submit text-current absolute focus-inset start"><span class="visually-hidden">Search</span><svg width="21" height="23" viewBox="0 0 21 23" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M14.398 14.483 19 19.514l-1.186 1.014-4.59-5.017a8.317 8.317 0 0 1-4.888 1.578C3.732 17.089 0 13.369 0 8.779S3.732.472 8.336.472c4.603 0 8.335 3.72 8.335 8.307a8.265 8.265 0 0 1-2.273 5.704ZM8.336 15.53c3.74 0 6.772-3.022 6.772-6.75 0-3.729-3.031-6.75-6.772-6.75S1.563 5.051 1.563 8.78c0 3.728 3.032 6.75 6.773 6.75Z">
        </path>
      </svg>
    </button>
    <button type="button" class="search__reset text-current vertical-center absolute focus-inset js-search-reset" hidden="">
      <span class="visually-hidden">Reset</span>
      <svg width="24" height="24" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5" fill="none" fill-rule="evenodd" stroke-linejoin="round" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path d="M5 19 19 5M5 5l14 14"></path>
      </svg>
    </button><speech-search-button class="search__speech focus-inset end" tabindex="0" title="Search by voice" style="--speech-icon-color: #ff580d">
      <svg width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path fill="currentColor"
          d="M17.3 11c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.49 6-3.31 6-6.72m-8.2-6.1c0-.66.54-1.2 1.2-1.2.66 0 1.2.54 1.2 1.2l-.01 6.2c0 .66-.53 1.2-1.19 1.2-.66 0-1.2-.54-1.2-1.2M12 14a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3 3 3 0 0 0-3 3v6a3 3 0 0 0 3 3Z">
        </path>
      </svg>
    </speech-search-button>
    <link href="//search4solar.com/cdn/shop/t/29/assets/speech-search.css?v=47207760375520952331713945353" rel="stylesheet" type="text/css" media="all">
    <script src="//search4solar.com/cdn/shop/t/29/assets/speech-search.js?v=106462966657620737681713945353" defer="defer"></script>
  </search-form>
</form>

POST /cart/add

<form id="51989241004415" method="post" action="/cart/add" data-hs-cf-bound="true"><input type="hidden" name="id" value="51989241004415"><button class="wk_button"><i class="fa fa-solid fa-cart-arrow-down" style="font-size:px;color:white;"></i>
    Add</button></form>

POST /cart

<form class="form" id="cart-drawer-form" action="/cart" method="post" data-hs-cf-bound="true">
  <cart-items id="cart-items" data-section="cart-drawer" data-empty="true">
    <div class="cart-empty flex flex-col justify-center items-center h-full js-cart-empty"><svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true" focusable="false" role="presentation" class="icon">
        <path
          d="M12 2c2.761 0 5 2.089 5 4.667V8h2.2a.79.79 0 0 1 .8.778v12.444a.79.79 0 0 1-.8.778H4.8a.789.789 0 0 1-.8-.778V8.778A.79.79 0 0 1 4.8 8H7V6.667C7 4.09 9.239 2 12 2zm6.4 7.556H5.6v10.888h12.8V9.556zm-6.4-6c-1.84 0-3.333 1.392-3.333 3.11V8h6.666V6.667c0-1.719-1.492-3.111-3.333-3.111z">
        </path>
      </svg>
      <p>Your overview is empty</p><a class="btn btn--primary" href="/collections/all">Start shopping</a>
    </div>
    <p class="visually-hidden" id="cart-live-region-text" role="status" aria-live="polite"> Subtotal:€0,00 EUR </p>
    <p class="visually-hidden" id="cart-line-item-status" role="status" aria-live="polite" aria-hidden="true">Loading...</p>
    <div class="alert mt-6 bg-error-bg text-error-text" id="cart-errors" role="alert" hidden=""></div>
  </cart-items>
</form>

POST /localization

<form method="post" action="/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data" data-hs-cf-bound="true"><input type="hidden" name="form_type" value="localization"><input
    type="hidden" name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to"
    value="/collections/cecep-solar-container-deals/products/cecep-solar-410wp-silverline-cec6-54mhv?utm_medium=email&amp;_hsenc=p2ANqtz-9EBcKaGXtiS8FGWoGk9fXRr8OzUxbkg6IVF56h8aNC9-BFZnAV_0iQAX2N7hIOIL7F2nhI8mvdmzOo_O2Zk7zYTJQjRg&amp;_hsmi=99204841&amp;utm_content=99204841&amp;utm_source=hs_email">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="NL">
      <country-selector><label class="label visually-hidden no-js-hidden" id="footer-localization-country-label">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" aria-labelledby="footer-localization-country-label">
            <span class="text-start">Netherlands (EUR&nbsp;€)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-country-opt-0" role="option" data-value="NL" aria-selected="true">
              <span class="pointer-events-none">Netherlands (EUR&nbsp;€)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="en">
      <custom-select id="footer-localization-language"><label class="label visually-hidden no-js-hidden" id="footer-localization-language-label">Language</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" aria-labelledby="footer-localization-language-label"
            style="--custom-select-button-width: 20px;">
            <span class="text-start">English</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-language-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-0" role="option" data-value="en" aria-selected="true">
              <span class="pointer-events-none">English</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-1" role="option" data-value="fr">
              <span class="pointer-events-none">Français</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-2" role="option" data-value="es">
              <span class="pointer-events-none">Español</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-3" role="option" data-value="de">
              <span class="pointer-events-none">Deutsch</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-4" role="option" data-value="pl">
              <span class="pointer-events-none">Polski</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-5" role="option" data-value="nl">
              <span class="pointer-events-none">Nederlands</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('footer-localization').addEventListener('change', (evt) => {
      const input = evt.target.previousElementSibling;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail.selectedValue;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

Text Content

Skip to content

More than 5.000 registered trade customers.

One of the largest online trading platforms for solar panels, inverters and
accessories in Europe!

Country/Region
Netherlands (EUR €)
 * Netherlands (EUR €)

Language
English
 * English
 * Français
 * Español
 * Deutsch
 * Polski
 * Nederlands

Search Search Reset

Log in Bag

Menu
 * Buy product
    * Back
    * Buy product
    * Solar energy
       * Solar panels
       * Accessories
       * Optimizers
       * Inverters
       * Inverters accessories
       * Mounting materials
       * Micro inverters
       * Charging stations
       * Batteries
       * Battery accessories
       * Cables and Connectors
       * Go to Solar energy
   
    * To notice
       * Aiko
       * Astronergy
       * Canadian Solar
       * CECEP Solar
       * Dah Solar
       * DMGEC
       * Eurener
       * HT-SAAE
       * HY Solar
       * Hyundai
       * YES Solar
       * Jinko Solar
       * Jolywood
       * LONGI Solar
       * Meyer Burger
       * Phono
       * QN Solar
       * REC Solar
       * Recom
       * ReneSola
       * Resun
       * Risen
       * Ronma Solar
       * SEG Solar
       * Slenergy
       * Suntech
       * Tongwei
       * Trina Solar
       * Go to To notice

 * Services
 * Become a vendor
 * Blog
 * Second hand

 * About Search4Solar
 * Contact
 * Register

 1. Home
 2. CECEP Solar | Container Deals
 3. CECEP Solar CEC6-54MHV 410W Silver Frame

 * 

Loading...


CECEP SOLAR CEC6-54MHV 410W SILVER FRAME


Availability
Available
Trusted Vendor 444

Netherlands
€22,55 /pc
0,055 €/Wp
Add

--------------------------------------------------------------------------------

Packaging
Container

Quantity per pallet: 36

Quantity per container: 936

Availability from: Now

Product variants
Container - €0,00

CECEP Solar CEC6-54MHV 410W Silver Frame - Container is backordered and will
ship as soon as it is back in stock.

Sales price excl. VAT

✓ Available from warehouse
✓ Premium manufacturer for reliable products
✓ Pay and order via Search4Solar

Barcode:


--------------------------------------------------------------------------------



CECEP Solar CEC6-54MHV 410W Silver Frame

From 0.055 €/Wp
Unit price /
Unavailable
Choose options
Downloads

Datasheet - Link


PRODUCT DETAILS

BRAND CECEP Solar NUMBER OF CELLS 108 QUANTITY PER PALLET 36 BACKSHEET COLOR
black WIDTH 1134 CELL TYPE Mono CONTAINER SIZE 936 FRAME COLOR black WEIGHT 21.5
FRAME THICKNESS 30 LENGTH 1722 MODULE EFFICIENCY 20.7 NOMINAL POWER (Wp) 410
OPTIMIZER No PALLET SIZE 36 PERCENTAGE 84.8 PERFORMANCE WARRANTY 25 PRODUCT
WARANTY 12 SNOW LOAD 5400 SYSTEM VOLTAGE 1000 PANEL TYPE window film SOLD PER
PALLET yes POWER TOLERANCE UNIT Watt POWER TOLERANCE MAX 5 POWER TOLERANCE MIN 0
WIND LOAD 2400




YOUR OVERVIEW

Close

Your overview is empty

Start shopping

Subtotal:€0,00 EUR

Loading...






Search4Solar


CECEP SOLAR CEC6-54MHV 410W SILVER FRAME

From 0.055 €/Wp
Unit price /
Unavailable


Packaging

 * Container

View product Remove
Back to top


NEWSLETTER

Stay up to date with the latest news in the world of Search4Solar.

Subscribe


BUY ON SEARCH4SOLAR

 * Register
 * Search product
 * Product purchases


ABOUT SEARCH4SOLAR

 * About Search4Solar
 * Terms and Conditions
 * Data protection
 * Contact


PERSONAL SUPPORT

+31 (0)180 - 810402

 * Facebook
 * Instagram
 * LinkedIn

Payment methods accepted
 * American Express
 * Apple Pay
 * Google Pay
 * iDEAL
 * Maestro
 * Mastercard
 * Shop Pay
 * Visa

Country/Region
Netherlands (EUR €)
 * Netherlands (EUR €)

Language
English
 * English
 * Français
 * Español
 * Deutsch
 * Polski
 * Nederlands

--------------------------------------------------------------------------------

© 2024 Search4Solar | Riga 4K, 2993 LW Barendrecht, Nederland.




Your quote is successfully added