hilikus
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: posts_nav_link imagesthe reason this doesn’t work is cause when you use the quotes for ‘ . bloginfo(‘template_directory’) . ‘ it closes and re-opens the parameter for the posts_nav_link function.
Solution – hardcode the address instead of using the bloginfo function so posts_nav_link(”,’ ‘,'<img src=”/wp-content/themes/yourtheme/images/prevbttn.png” />’)
note: you can only use ” inside the parameters of posts_nav_link not just a single quote ‘
hope this helps.
Forum: Fixing WordPress
In reply to: Site Title doesn’t isn’t workingare you using an SEO plugin? they typically tag | Sitename onto the page title, go into the settings menu then to your seo plugin, you can probably remove then line ‘|’ here.
If your not using an SEO plugin, it’s likely that the line ‘|’ has been hardcoded into your sites template.
download and open your header.php file in you theme folder, few lines from the top look for the Title tag, something like this
<title><?php bloginfo('name'); ?> | <?php wp_title(); ?></title>
If the Line is present in the tag, then remove it. save and upload.
hope this helps you out this time ??
Forum: Fixing WordPress
In reply to: ftphi janie,
could you provide a little bit more detail…
What are you trying to upload, and where are you uploading it too?
Forum: Fixing WordPress
In reply to: Site Title doesn’t isn’t workingfirst thing to check is that your site title is filled in.
make sure site title is filled in here: dashboard > Settings > General
Upgrading removed my site title, easily resolved tho ??
Forum: Fixing WordPress
In reply to: Permalink is ErrorPermalink uses a module called called re-write to create the urls.
This needs access permissions to be able to create the urls, the warning message is telling you that you do not have access permissions.
You’d need to login to your server and add this to either the .htaccess file or the apache2.conf either will do.
<Directory “/var/www”>
AllowOverride All
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</Directory>If it still doesn’t work make sure the rewrite module is enabled in the server.
hope this helps
Yeah easy to do, when you know how..
Create the page in wordpress that you want to be your front page.
then go to your dashboard and go ‘Settings’ then ‘Reading’
Here’s an option called Front page displays:
Currently ‘Your latest posts’ is selected, but you can select ‘A Static Page’ and then select the page in the drop down box below!
To display your blog posts, post to a category and then point the blog link to that category url (if your not using permilinks it’ll be something like href=”/?cat=5″
‘5’ = your category id.
hope this helps
found a blog post explaining a really simple way of including your ftp login info in wp-config.php.
This way it never asks for the info again!