Help With {$Product_Data.full_Description}

I am trying to edit this file

/design/backend/templates/addons/ebay/hooks/products/tabs_content.post.tpl

and this is my main interest {$product_data.full_description}

       {if $product_data.override == "Y" || !empty($product_data.ebay_description)}
             {$product_data.ebay_description}
       {else}
             {$product_data.full_description}
       {/if}

I with to add to {$product_data.full_description} some additional data like weight and additional description that is not in normal product description.

So far I have something like this

       {if $product_data.override == "Y" || !empty($product_data.ebay_description)}
             {$product_data.ebay_description}
       {else}
             {$product_data.full_description}
            {__("weight")}: {$product_data.weight} ({$settings.General.weight_symbol})
   {/if}

but before uploading this to ebay I have to checkbox (in admin product details page ebay tab) and save

now I get weight added and then I can upload with weight data to ebay. But I wish for some more automatic solution.

For example you can try

{$product_data.full_description}
{if strpos($product_data.full_description, __('weight')) === false && strpos($product_data.full_description, $settings.General.weight_symbol) === false}
{__("weight")}: {$product_data.weight} ({$settings.General.weight_symbol})
{/if}

(!) Not tested, but I think the idea is clear

I am no coder but I do not think this will work.

{$product_data.full_description}

is greyed out text field, editable only if you checkbox "Redefinition of the product name and description on eBay" so unless you check it and save changes none of weigh parameters would be taken in to account.

basically I need some hook that would add additional data to {$product_data.full_description} for ebay addon.

If you want to add weight to all items, may be it is better to update the eBay script?

I do not want to modify description for cs-cart store, but it would be good to modify data that is passed on to ebay from {$product_data.full_description} so it would be description + weight + some additional text.

If you want to add weight to all items, may be it is better to update the eBay script?

Try to edit the app/addons/ebay/Ebay/Product.php file

        if (isset($data['full_description'])) {
            $this->description = $data['full_description'];
        }

and

            if (!empty($data['ebay_description'])) {
                $this->description = $data['ebay_description'];
            }