Jump to content

[SOLVED] Help with a footer


jiggaman15dg

Recommended Posts

i am fairly new to php and i got a real estate web template from a site and i really like the visual aspects

the only thing is that it wont allow me to change the footer

 

here is the little bit of code

<?php echo $SystemInfo->CreateCopyright("PHP RealEstate", 'txt_content01'); ?>

if i delete that line the website works fine just a notification box pops up and shows on every page

i dont want to delete the file i just want to change what it says

 

currently it says "Powered by Built2Go PHP RealEstate v1.4.4 © Big Resources, Inc."

 

ive looked in the language file and the func.php and nothing comes up

 

i would be more then glad to give the script to someone if they want to play with it

what are the possibilities of just changing what the actual footer says like Site Created by Me

 

any help would be greatly appreciated

Link to comment
Share on other sites

If there ar template files, check there. If not that is located in the SystemInfo class under the Copyright function. If it is encrypted than you cannot change it without doing some manipulation, but if it is not encrypted look for the class Systeminfo (or whatever that variable was instantiated to.)

 

--FrosT

Link to comment
Share on other sites

You can always do something like this:

 

<?php echo 
$copyRight = str_replace("<a href=\"theirsite.com\">Link Here</a>", "Link Title Here", $SystemInfo->CreateCopyright("PHP RealEstate", 'txt_content01'));

print $copyRight;

?>

 

On that note, this should not be used to remove copyright fully and if in the template it may check that string against the original so it may not work.

 

--FrosT

Link to comment
Share on other sites

 

<?php 

ob_start();
$SystemInfo->CreateCopyright("PHP RealEstate", 'txt_content01');
$copyRight = ob_get_contents();
ob_end_clean();

print str_replace("<a href=\"theirsite.com\">Link Here</a>", "Link Title Here", $copyRight);

?>

 

Like I said I do not condone removing copyright fully at all, this is strictly to help you remove the link back.

 

--FrosT

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.