This eBay module is not supported anymore. Please use eBay module version 2: https://addons.prestashop.com/en/marketplaces/27282-ebay-20-marketplace.html Or see a public fork of this code here: https://github.com/tarmogr/Prestashop-Ebay-Free
The product template inserts automatically a css reference to the template, you can not remove it.
This reference is http not https as required by ebay (as a result ebay hides your description and forces buyers to click "see full item description" button.
I think the css reference comes from this function in classes/tabs/EbayTabs.php
return Tools::getShopDomain(true).PS_BASE_URI.'modules/ebay/';
I changed it to
return Tools::getShopDomainSsl(true).PS_BASE_URI.'modules/ebay/';
The product template inserts automatically a css reference to the template, you can not remove it. This reference is http not https as required by ebay (as a result ebay hides your description and forces buyers to click "see full item description" button.
I think the css reference comes from this function in classes/tabs/EbayTabs.php return Tools::getShopDomain(true).PS_BASE_URI.'modules/ebay/'; I changed it to return Tools::getShopDomainSsl(true).PS_BASE_URI.'modules/ebay/';
But it has no effect