I have a preset that checks for multiple types of sites in Google search results that I need help with formatting the code properly.
Currently I check for the presence of forums using this code:
I want to add multiple footprints instead of just checking for "forum" in the url. Here are a few examples:
/threads/
/board/
index.php?topic=
viewtopic.php
board.
How would I add these to the existing code above? Thanks.
Currently I check for the presence of forums using this code:
Code:
FOREACH item IN p1.serp;
IF tools.js.strIndexOf('forum', item.link);
forumFound = 1;
BREAK;
END;
END;
I want to add multiple footprints instead of just checking for "forum" in the url. Here are a few examples:
/threads/
/board/
index.php?topic=
viewtopic.php
board.
How would I add these to the existing code above? Thanks.