@attractmore
This would require some custom coding, but can certainly be achieved.
The plugin code is open source so you have full access to it.
However, customizing the code directly in the plugin is not the best approach as updates to the plugin will wipe out your changes.
There is a filter called woocommerce_gtag_snippet
which could be used to modify the gtag that is written to the page.
You can find this filter here:
https://github.com/woocommerce/google-listings-and-ads/blob/bc7c54c01fdf7584c0a75962fc17219238473d63/src/Google/GlobalSiteTag.php#L92
This suggests that you could create a function in your themes functions.php
file that would add the additional gtag.
If you need help with this, I suggest you get help from:
* A local web developer
* [Codeable.io](https://woocommerce.com/codeable/)
* [WooExperts](https://www.woocommerce.com/experts/)
* [Stackexchange](https://wordpress.stackexchange.com/help/on-topic)
If you are comfortable with coding yourself and have questions, I would recommend that you join the [WooCommerce Slack Community](https://woocommerceslack.herokuapp.com), or the [Advanced WooCommerce Facebook group](https://www.facebook.com/groups/advanced.woocommerce).
I hope that helps you to figure it out.