![]() |
| ||||||||
|
|||||||
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
|
HyperActive Warrior
War Room Member
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 240
Thanked 33 Times in 25 Posts
|
Hey guys,
I've noticed that in the Flexibility theme for Wordpress, in the footer it says; Code:
This blog copyright © 2009 YourSiteUrlHere.com Code:
<div style="clear:both;"></div>
</div>
</div>
<?php } ?>
<div id="footerdark">
<p>This blog copyright ©
<script type="text/javascript" language="JavaScript"><!--
I have absolutely no idea when it comes to php... Thanks in advance! |
|
|
|
|
|
#2 |
|
HyperActive Warrior
War Room Member
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 240
Thanked 33 Times in 25 Posts
|
Any help with this one guys?
|
|
|
|
|
|
#3 |
|
Active Warrior
Join Date: Oct 2009
Location: NSW, Australia
Posts: 31
Thanks: 0
Thanked 5 Times in 5 Posts
|
Pat if show us the script, so that we could see what it does it would be easier to answer it. I mean post the bit that comes directly after after the bit you have posted ... right up to the "</script>
But I assume its getting the name from somewhere within the normal admin info. Have a look for a box asking for your URL. |
|
|
|
| The Following User Says Thank You to Susan Stones For This Useful Post: |
|
|
#4 |
|
Warrior Member
Join Date: Jul 2007
Location: , , United Kingdom.
Posts: 14
Thanks: 0
Thanked 2 Times in 2 Posts
|
Yea, there's going to be something in the script that asks for your site URL, and then it should automatically input it into the footer.
|
|
|
|
|
|
|
| The Following User Says Thank You to Taiyab For This Useful Post: |
|
|
#5 | |
|
HyperActive Warrior
War Room Member
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 240
Thanked 33 Times in 25 Posts
|
Quote:
Here it is; Code:
<div style="clear:both;"></div>
</div>
</div>
<?php } ?>
<div id="footerdark">
<p>This blog copyright ©
<script type="text/javascript" language="JavaScript"><!--
var today = new Date();
document.write(today.getFullYear());
//--></script>
<a href="<?php echo get_option('home'); ?>/">
<?php bloginfo('name');?>
</a></p>
<p>Powered by <a href="http://www.flexibilitytheme.com" rel="nofollow">Flexibility Theme</a> for WordPress</p>
</div>
</div>
<!-- footer close -->
| |
|
|
|
|
|
#6 |
|
Advanced Warrior
Join Date: Aug 2006
Location: The Midwest
Posts: 961
Thanks: 1
Thanked 59 Times in 49 Posts
|
You can just remove the script code and hard code your link into it.
|
|
Jeff Houdyschell
WordPress Guides | WordPress Installation WordPress Powered PIPS Run your site on WordPress. Work At Home Business Blog | Proven Income Opportunities | Best Work At Home Jobs |
|
|
|
|
| The Following User Says Thank You to houdy For This Useful Post: |
|
|
#7 |
|
Portuguese Warrior
War Room Member
Join Date: Nov 2008
Location: Good Old Europe
Posts: 1,095
Blog Entries: 1
Thanks: 348
Thanked 131 Times in 93 Posts
|
Hey pat,
This bit of code should grab your site name and place if with a link. Code:
<a href="<?php echo get_option('home'); ?>/">
<?php bloginfo('name');?>
Check Theme Options and/or Settings |
|
Discover MiniSiteBox -- Yes, You get Professional Minisites... but you don't have to spend what others charge you for a "I've seen it before!!" sales page.
We just do our stuff from scratch. You just sit and cash in. |
|
|
|
|
| The Following User Says Thank You to Fernando Veloso For This Useful Post: |
|
|
#8 |
|
HyperActive Warrior
Join Date: Oct 2009
Posts: 160
Thanks: 9
Thanked 5 Times in 5 Posts
|
Hey pat, you can remove the link and write HTML link of your own inside it.
|
|
|
|
| The Following User Says Thank You to robfoster For This Useful Post: |
|
|
#9 | |
|
HyperActive Warrior
War Room Member
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 240
Thanked 33 Times in 25 Posts
|
Quote:
Is this what you mean? Code:
<div style="clear:both;"></div>
</div>
</div>
<?php } ?>
<div id="footerdark">
<p>This blog copyright © 2009 <a href="http://www.mysite.com">My Anchor Text</a>
<a href="<?php echo get_option('home'); ?>/">
<?php bloginfo('name');?>
</a></p>
<p>Powered by <a href="http://www.flexibilitytheme.com" rel="nofollow">Flexibility Theme</a> for WordPress</p>
</div>
</div>
<!-- footer close -->
| |
|
|
|
|
|
#10 |
|
Portuguese Warrior
War Room Member
Join Date: Nov 2008
Location: Good Old Europe
Posts: 1,095
Blog Entries: 1
Thanks: 348
Thanked 131 Times in 93 Posts
|
Pat,
That way ^^ you can to delete this part of code: Code:
<a href="<?php echo get_option('home'); ?>/">
<?php bloginfo('name');?>
You can edit the "This Blog Copyright" just to "Copyright" |
|
Discover MiniSiteBox -- Yes, You get Professional Minisites... but you don't have to spend what others charge you for a "I've seen it before!!" sales page.
We just do our stuff from scratch. You just sit and cash in. |
|
|
|
|
| The Following User Says Thank You to Fernando Veloso For This Useful Post: |
|
|
#11 |
|
HyperActive Warrior
War Room Member
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 240
Thanked 33 Times in 25 Posts
|
Ok, great. I just tried it then and it worked fine.
Thanks for your help, Fernando and everyone else! |
|
|
|
|
|
#12 |
|
Portuguese Warrior
War Room Member
Join Date: Nov 2008
Location: Good Old Europe
Posts: 1,095
Blog Entries: 1
Thanks: 348
Thanked 131 Times in 93 Posts
|
No worries Pat, all the best to your new project.
|
|
Discover MiniSiteBox -- Yes, You get Professional Minisites... but you don't have to spend what others charge you for a "I've seen it before!!" sales page.
We just do our stuff from scratch. You just sit and cash in. |
|
|
|
|
|
|
#13 |
|
Active Warrior
Join Date: Oct 2009
Location: NSW, Australia
Posts: 31
Thanks: 0
Thanked 5 Times in 5 Posts
|
Seems like you have your solution Pat. Just let me know if it is working now?
|
|
|
|
| The Following User Says Thank You to Susan Stones For This Useful Post: |
|
|
#14 |
|
HyperActive Warrior
War Room Member
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 240
Thanked 33 Times in 25 Posts
|
Yep, Susan, it is.
Thanks for your help. |
|
|
|
![]() |
|
| Tags |
| flexibility, question, theme, wordpress |
| Thread Tools | |
|
|
![]() |