1 samredman Mar 04, 2007 18:39
3 samredman Mar 04, 2007 21:40
Thanks for that info... but I still need some help on this.
In which file do I find the code, which you described, where I make the change?
I found this in main.php (inside my skins folder)
<div class="bSmallPrint">
<?php $Item->permanent_link(); ?>
And I changed that to this:
<div class="bSmallPrint">
<?php $Item->permanent_link(Link); ?>
And, sure enough it changed it from Permalink to Link, just exactly at the place where I wanted it... but above the new word "Link," at the bottom of each blog entry, I see this:
Notice: Use of undefined constant Link - assumed 'Link' in /home/myusername/public_html/myblog/skins/nifty_corners/_main.php on line 107
Link • Leave a comment • Edit...
Is there another location in the php files (which php file is it?) where I should make the change, that won't do that error message?
4 topanga Mar 04, 2007 21:55
samredman wrote:
<div class="bSmallPrint"> <?php $Item->permanent_link(Link); ?>
<div class="bSmallPrint">
<?php $Item->permanent_link('Link'); ?>
5 samredman Mar 04, 2007 22:03
Success! That fixed it just like I needed. Thank you so very much for your help..
On the place where you want your permanent link to apear, use this code
This is the complete function