What's new

Closed About copyright footer credits ni template market.

Status
Not open for further replies.

AnnBMateo

Forum Veteran
Elite
Joined
May 27, 2017
Posts
1,356
Reaction
511
Points
591
1592717689314.png


Paano tanggalin ang copyright credit nito mga paps?

diko kasi siya makita sa html file nag end nalang ng ganto



<footer id='footer-section'>
<div id='footer-credit'>
<div class='mmmscredit' id='mmmscredit'>
Copyright &#169; <script type='text/javascript'>var creditsyear = new Date();document.write(creditsyear.getFullYear());</script> <a expr:href='data:blog.homepageUrl' itemprop='creator' itemscope='itemscope' itemtype='You do not have permission to view the full content of this post. Log in or register now.'><span itemprop='name'><data:blog.title/></span></a> All Right Reserved - <div id='mscontent'/>
</div>
</div>
</footer>
<div class='clear'/>
<div class='smoothscroll-top'>
<span class='scroll-top-inner'>
<i aria-hidden='true' class='fa fa-chevron-up'/>
</span>
</div>

ayan diko na ma gets parang encrypted pero need kopa i buy yung ρrémíùm template pero nagtitipid ako pang domain...

sana may makasagot salamat mga paps...
 

Attachments

tsaka kahit pala nag palit nako favicon sa blogger diparin umaafect ... diko ma gets wala naman si favicon.ico sa script.
 
TS, i think, js generated yung copyright. Kaya di mo makita sa HTML.

What i suggested, hide the copyright html tag using js as well.

1. Hanapin mo yung parent element, which naka wrap yung copyright.
2. Query yung html using js DOM selector.
3. then add styles with a diplay none CSS property, with !important.
4. Load the js script before body tab, this should ensure we can hide the target element after html has been loaded.

Sana makatulong.
 
TS, i think, js generated yung copyright. Kaya di mo makita sa HTML.

What i suggested, hide the copyright html tag using js as well.

1. Hanapin mo yung parent element, which naka wrap yung copyright.
2. Query yung html using js DOM selector.
3. then add styles with a diplay none CSS property, with !important.
4. Load the js script before body tab, this should ensure we can hide the target element after html has been loaded.

Sana makatulong.
ay paktay una palang dikona gets. pagbabalik loob lang kasi paps niyahha pati html dikopa kabisado.
 
ay paktay una palang dikona gets. pagbabalik loob lang kasi paps niyahha pati html dikopa kabisado.
TS, mahirap tulongan ka nang ganyan sitwasyon mo. Pero try to attach the actual template for us to see a better solution and naka generate a script instead.
 
Tanggalin mo 'to:
HTML:
<div id='mscontent'/>

Mukhang may javascript na nagru-run at mina-manipulate yung dom kapag nag load yung page. Normally, kapag ganyan yung blogger template encrypted yang footer credits at kapag tinaggal mo mag re-redirect yan sa site nung nagdesign.
 
Tanggalin mo 'to:
HTML:
<div id='mscontent'/>

Mukhang may javascript na nagru-run at mina-manipulate yung dom kapag nag load yung page. Normally, kapag ganyan yung blogger template encrypted yang footer credits at kapag tinaggal mo mag re-redirect yan sa site nung nagdesign.
oo nga paps pag tinangal ko fotter credits footer* nag pupunta siya sa credited ng template. try ko paps
 
Tanggalin mo 'to:
HTML:
<div id='mscontent'/>

Mukhang may javascript na nagru-run at mina-manipulate yung dom kapag nag load yung page. Normally, kapag ganyan yung blogger template encrypted yang footer credits at kapag tinaggal mo mag re-redirect yan sa site nung nagdesign.
ayaw paps nang tinangal ko yang ganiyan pinababa ko tas nag redirect sa templatemarket ...
 
ayaw paps nang tinangal ko yang ganiyan pinababa ko tas nag redirect sa templatemarket ...
Copyright protection nila yun, try mo i-set yung visibility to hidden. Di mo kasi pwede i-display none yan kasi made-detect nung encryted code at magre-redirect padin.
 
Copyright protection nila yun, try mo i-set yung visibility to hidden. Di mo kasi pwede i-display none yan kasi made-detect nung encryted code at magre-redirect padin.
ay eto paal paps kita kona di parin siya gumagana
Code:
.smoothscroll-top.show {visibility:visible; cursor:pointer; opacity:1; bottom:25px; }

chinange kosiya to hidden. pero nang binaba ko wala pero nag redirect sa template market.
 
Eto try mo ilagay sa ibabaw ng </head> tag:
HTML:
<script>
    $("#mscontent, #mscontent a").css("visibility", "hidden");
</script>
 
You can inject CSS or JavaScript on your website para manipulate yung page.
something like:
Code:
<script type="text/javascript">
    $(window).bind("load", function() {
        $('footer').remove();
    });
</script>
 
You can inject CSS or JavaScript on your website para manipulate yung page.
something like:
Code:
<script type="text/javascript">
    $(window).bind("load", function() {
        $('footer').remove();
    });
</script>

This won't work, the encrypted code always checks the credits if it was removed or not. You can't simply remove it from the document or set to display:none.
 
This won't work, the encrypted code always checks the credits if it was removed or not. You can't simply remove it from the document or set to display:none.
aight. so you should edit the source of the theme. if injections doesn't work and no ones can fully encrypt front-end, madali lang imodify yan
 
The code is an obfuscated JavaScript, it includes some important theme functions. Removing it might break the theme functionality.
like I said you can inject code that can manipulate that code checking, unobfuscate the code and find the function that checks for theme modification. inject a code that block it from executing or just simply buy the full version of the theme to reduce lots of effort 🤦🏻‍♂️
 
Status
Not open for further replies.

Similar threads

Back
Top