Please help me with this filter...

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
Transit

Please help me with this filter...

Post by Transit »

Hello,

How I can make this filter work with all session ID-s, not just the current one? Here is the code:
something.com#A(href=index.php?page=payment&session=0a123bv3
OR:

How to block all links which contains word "payment"?

Thanks in advance
MonztA
ABP Developer
Posts: 3957
Joined: Mon Aug 14, 2006 12:18 am
Location: Germany

Re: Please help me with this filter...

Post by MonztA »

Transit wrote:How I can make this filter work with all session ID-s, not just the current one?

Code: Select all

something.com#A(href^=index.php?page=payment)(href*=&session=)
Transit wrote:How to block all links which contains word "payment"?

Code: Select all

something.com#A(href*=payment)
All you need to do is to delete the respective parts of the URL in the Element Hiding Helper.
Transit

Post by Transit »

Thank you MontzA, you made my life easier!!!
MonztA
ABP Developer
Posts: 3957
Joined: Mon Aug 14, 2006 12:18 am
Location: Germany

Post by MonztA »

You're welcome. ;)
Locked