XF 2.2 [solved] How do I edit the cookie usage text?

FTL

Well-known member
Apologies if this has already been answered, but I've had a good Google and look around the forum, yet I can't find an answer to this one.

How do I edit the cookie usage text in the screenshot below? I need to customise it a bit.

I've found where to do this for the terms and rules and privacy policy (Appearance > Languages > English (UK) - Phrases) but looking in that section, I can't find the equivalent cookie usage text so can't modify it.


1630458788696.webp
 
The ACP quick-search will only match phrase titles. You can find the drop-down on the phrases list itself (Appearance > Languages and phrases > Phrases), and there's also a dedicated search page (Appearance > Languages and phrases > Search phrases or admin.php?phrases/search).
 
One more question if I may. The cookies list under third party cookies seems to be automatically populated. Eg Youtube is there on my site. Google Analytics disappeared when I removed it from the site. Is there any way of adding additional things manually to that list of third party cookies? I've just set up Amazon Affiliates so want to mention them as a third party cookie. And rather than edit the text, just have it listed, like youtube.
 
Is there any way of adding additional things manually to that list of third party cookies?
You can edit the _help_page_cookies template. Before the last line, something like:

HTML:
<xf:datarow rowclass="dataList-row--noHover">
    <xf:cell class="dataList-cell--min dataList-cell--alt">Amazon Affiliates</xf:cell>
    <xf:cell>Some description of the cookies and their purpose, with a link to the pertinent privacy policy.</xf:cell>
</xf:datarow>
 
You can edit the _help_page_cookies template. Before the last line, something like:

HTML:
<xf:datarow rowclass="dataList-row--noHover">
    <xf:cell class="dataList-cell--min dataList-cell--alt">Amazon Affiliates</xf:cell>
    <xf:cell>Some description of the cookies and their purpose, with a link to the pertinent privacy policy.</xf:cell>
</xf:datarow>
Thank you very much.
 
Back
Top Bottom