shadow
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: WP forums need improvement..There is the option to click on your profile AND save favourites.
Forum: Everything else WordPress
In reply to: Page sections in navigationYou do not have to modify the templates. This can be included in your post. This happens within the interface.
Forum: Fixing WordPress
In reply to: Title unwantedly changed and time zone oddityAnd number 2 – not sure of the reason but why not simply adjust by another hour to solve the issue.
Forum: Fixing WordPress
In reply to: Title unwantedly changed and time zone oddityIs it the same issue as discussed here?
Forum: Installing WordPress
In reply to: Problem with wordpress table errorYes that is my email. Email me and I will reply with what we need to do.
Forum: Installing WordPress
In reply to: Problem with wordpress table errorA quick look over your site gives me the impression that your siteurl/home locations in your database are incorrect.
Additionally, you will probably need to turn off any plugins until you get this all sorted.
If you email me straight away, I will take a look at what is happening exactly.
shadow 12 gmail
Forum: Installing WordPress
In reply to: Problem with wordpress table errorHave a read through this sticky at the top of the forum – It may help.
Forum: Everything else WordPress
In reply to: Page sections in navigationIn the code you can add links to each section such as this
at the top:<a title="linktop" name="linktop"></a><a href="#link1">Link 1</a>And then at whatever section youwant to link to, you can have the following:
<a title="link1" name="link1"></a><a href="#linktop">Top</a>You can set all this up anywhere on the page and have as many links as you wish to as many section as as you need
Forum: Installing WordPress
In reply to: Links not showing upAs Michael has mentioned, try to call your links with
<?php wp_list_bookmarks(); ?>and call your pages with<?php wp_list_pages(); ?>Forum: Fixing WordPress
In reply to: No images in subdomain installIf you would like to email me, I will give you a hand.
shadow12 gmail
Forum: Installing WordPress
In reply to: to retrieve wp-contentWhat do you mean when you say you deleted them? Manually deleted from the site itself?
Forum: Installing WordPress
In reply to: Fatal error where tags should show upWhere are you placing this:
<?php the_tags(); ?>Forum: Requests and Feedback
In reply to: Help pleaseThe site in question is hosted on a private domain and we have absolutely no control over it whatsoever.
The fact it is using this software is irrelevant in this instance.
The only people who can take action are the owners of the domain or the webhosting company.
It is not a matter of us just letting it go,we simply do not have any control over it in any form.
Forum: Fixing WordPress
In reply to: No images in subdomain installThe safest way to go is to backup your current database – the one you want to keep – and then do the upgrade to 2.3 as directed.
If you make sure you backup first – the very worst that could happen is that you may need to reinstall, but you will not lose your content. [Please note: This a worst case scenario and I doubt it will happen]
Forum: Fixing WordPress
In reply to: Specific PrintYou can have several calls to your category lists, so you could use the exclude/include functions as you need to gain the desired result.
For instance, the following would call any categories other than 1 and 2. [Add as many categories excludes as required]
<?php wp_list_categories('exclude=1,2&title_li='); ?>You could tehn creatthis againand again as needed, excluding whichever categories you do not wish to show in that particular list.