How to locate any line of code in theme file

georgetoons

Elite Member
Jr. VIP
Joined
Feb 9, 2023
Messages
2,223
Reaction score
1,566
Hi BHW fam,

Okay so There is a line of code I can see in my page source when inspecting the page but I cant seem to locate it in the cpanel theme file.

Is there any way I can locate an exact line of code without searching through every folder one by one? (which i tried and failed lol)

Thank you all in advance
 
I don't see the code but.. the code rendered in your source and the code written in the theme files are probably not the same.

for example your theme file might show a variable post.id where as your source displays the value "1234"
 
<iframe src="mywebsite.player.php" webkitallowfullscreen="true" mozallowfullscreen="true" frameborder="0"></iframe>

This is the code if it helps atall, thank you for the reply
I don't see the code but.. the code rendered in your source and the code written in the theme files are probably not the same.

for example your theme file might show a variable post.id where as your source displays the value "1234"
 
"mywebsite.player.php" is probably a variable. Try searching he theme files for "<iframe" and see where that leads.
 
Last edited:
just write a simple bash/python script to goes through all .php files and find a line you need, if you dont know how probably chatgpt can help you
 
Back
Top