How to Remove Footer Links from SMThemes?

Sorry if i am late, one solution would be :

edit index.css and add this line :

Code:
.smthemes{
display:none;
}

edit smthemes.js and add this to the end :

Code:
var text_to_remove = "Please return following links to the footer:";


function dom_walk( el ) {
    if( el.nodeType === 1 && el.childNodes.length ) {
        if( el.nodeName.toLowerCase() !== 'script' ) {
            for( var i = 0; i < el.childNodes.length; i++ ) {
                dom_walk( el.childNodes[ i ] );
            }
        }
    } else if( el.nodeType === 3 ) {
        if( el.data.indexOf( text_to_remove ) !== -1 ) {
            el.data = el.data.replace( text_to_remove, '' );
        }
    }
}
dom_walk( document.body );

I hope this works, i managed to remove the links from game template.
 
Got your PM but can't pm back quite yet.

got (I) (c) (q) in profi(le) to give you my login info or means of your choice

Thanks!
 
use simple tricks from me, you can download sublime text editor then install to your PC
klik file then open folder (choose your wp themes folder)
right click you open folder in sublime text "Find in folder..."
And try search with footprint like: "Copyright ©" etc
 
I have also SMTheme/GameZone, your method can hide the links, but they will be still visible to Google bots and will continue to hurt SEO. Anybody solved this?

Sorry if i am late, one solution would be :

edit index.css and add this line :

Code:
.smthemes{
display:none;
}

edit smthemes.js and add this to the end :

Code:
var text_to_remove = "Please return following links to the footer:";


function dom_walk( el ) {
    if( el.nodeType === 1 && el.childNodes.length ) {
        if( el.nodeName.toLowerCase() !== 'script' ) {
            for( var i = 0; i < el.childNodes.length; i++ ) {
                dom_walk( el.childNodes[ i ] );
            }
        }
    } else if( el.nodeType === 3 ) {
        if( el.data.indexOf( text_to_remove ) !== -1 ) {
            el.data = el.data.replace( text_to_remove, '' );
        }
    }
}
dom_walk( document.body );

I hope this works, i managed to remove the links from game template.
 
The first method just hides a portion of the text. The second option removes the text from the DOM. So i don't know if the bots will still be able to see the links.
 
I am working on it right now. When it cones to footer link removal I am pretty tough and smthemes is the first one ever that gave me a hard time but by later today I will figure out how to remove it. I am gonna report smthemes and those hclinjection pharmacy footer links to matt cutts team so they can get penalized for good as I feel they are causing innocent webmasters to get penalties. After they get penalized they will most likely not make themes with forced footer links again.
 
Hello.
I'm starting to make a website.
I have fetched SMThemes BlackPage.
Like I'm doing.
But when I make footer links, a red message comes up that I have to redo again.
Can you help me to redo it?
So the red message does not come up again, but I've changed the text.
Hope you can help me.
Thanks in advance.
With best regards
Mrx3D
Link to website I have downloaded:

smthemes.com/demo/blackpage/

Sorry, my bad English.
 
Back
Top