Please help I thing I've commuted blogiside, I had set up a simple static site with an Artisteer template and it was looking quite nice.
But there is a bug in Artisteer that effects the footer making it impossible to make the links to Contact, Terms and so on work, on saving "\\\" slashes are inserted into the target URL and obviously they don't work.
I found a solution on the Artisteer forum edit the functions file:-
I did that saved the change and my blog is as dead as a kipper!!!
I'm hoping that if I FTP in I should be able to manually edit the file back to it's original state.
I've a couple of questions.
Where is the functions file located in the WP installation?
Should this approach work? It's only a small site I have the template so I can re-build in just a few hours.
Thanks for your help gents.
aamcle
But there is a bug in Artisteer that effects the footer making it impossible to make the links to Contact, Terms and so on work, on saving "\\\" slashes are inserted into the target URL and obviously they don't work.
I found a solution on the Artisteer forum edit the functions file:-
Code:
<textarea name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" style="width:100%;height:100px;"><?php
if( get_settings($value['id']) !== false) {
echo get_settings($value['id']);
}else{
echo $value['std'];
}?></textarea>
Change the forth line
from: echo get_settings($value['id']);
to: echo stripslashes(get_settings($value['id']));
note: the original line is enclosed by stripslashes()
<textarea name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" style="width:100%;height:100px;"><?php
if( get_settings($value['id']) !== false) {
echo stripslashes(get_settings($value['id']));
}else{
echo $value['std'];
}?></textarea>
I did that saved the change and my blog is as dead as a kipper!!!
I'm hoping that if I FTP in I should be able to manually edit the file back to it's original state.
I've a couple of questions.
Where is the functions file located in the WP installation?
Should this approach work? It's only a small site I have the template so I can re-build in just a few hours.
Thanks for your help gents.
aamcle