More on the "Attribute Sub Tag Issue" above:

With the TPP Config set with "TPP - Global Attributes on Tab" as 0:
The Attributes shows as a Sub Tag Tag IF I have both codes in the Description:
<!--#AttributeOptions#-->
AND
<!--*sub_AttributeOptions(#)*-->

But if I only have <!--*sub_AttributeOptions(#)*-->, Attributes moves out of TPP.

With the TPP Config set with "TPP - Global Attributes on Tab" as 1:
The Attributes shows as a Sub Tag Tag BUTI have a Duplicate (as stated in my previous post).

In the tabbed_products_pro.php file, there is this section:
PHP Code:
//Check if Product Description already has a tag so it doesn't create another one with the Global tag, otherwise add the tag
        
$first_char_tag strpos($proddata"<!--%");
        if (
intval($first_char_tag) != || strval($first_char_tag) == '') {
            if (
$bGblProdDescTab == true) {
                
$proddata '<!--%'$gbl_proddesc_tab_name '%-->'$proddata;
            }
        } 
Call me crazy but that part should avoid duplicates, no?

If anyone has an idea on how to get the Attributes as a Sub Tag, please feel free to share.

TIA

Damien