yeleek
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 2.6.3 – Multiple admin notification for new comments?Anybody? Please.
Forum: Fixing WordPress
In reply to: Can not change options777 is full permissions so if that didn’t work i don’t think its chmod perms.
I’m guessing you don’t get errors when posting? Seems to be an established site (nice theme by the way) so what changed?
Forum: Installing WordPress
In reply to: Database error after 2.3 installForum: Themes and Templates
In reply to: Getting titles from the loop into two columnsThese posts… Same categories or different categories? Know how i’d do it if they were different, but the same… interesting one.
If they are different look at https://www.ads-software.com/support/topic/128636?replies=8
Forum: Fixing WordPress
In reply to: Images are pushing over other postsHow about a clearing div? I had a similar issue on a theme, added a clearing div post the content worked like a charm… below from single.php but you get the idea, i use it in category view…
<?php the_content('<p class="serif">Read the rest of this entry » '); ?> <?php link_pages('<strong>Pages:</strong> ', ' ', 'number'); ?> <div class="clearing"></div> <h5><?php the_tags('Tags>> ', ' | ' , ''); ?></h5> <p class="postmetadata alt">
and in css my clearing has
.clearing { clear: both; height: 1px; margin-top: 1px; }
The_tags obviously being a 2.3 thing…
Forum: Your WordPress
In reply to: Static Homepage (WordPress as CMS)Gave the page to display posts a try, it displays from all categories. You’ll have to wait for Moshu to reply to see how you could get just blog posts to appear on that page. Unless of course you only have a blog category?
In the meantime I’d still go with a blog category link from the front page. Its what i’ve done on the CMS i’m working on.
Forum: Your WordPress
In reply to: Static Homepage (WordPress as CMS)How would the page get the posts for the blog category in this instance though if not via the use of tags? i.e. rather than pull in all posts, pulls in the blog posts?
Forum: Developing with WordPress
In reply to: Archive by year and categoryNot aware of that as a std tag…
However…
https://codex.www.ads-software.com/Displaying_Posts_Using_a_Custom_Select_Query#DescriptionForum: Fixing WordPress
In reply to: blog is double (everything duplicate) … have tried everything …Yeah i’d check contents of your php files then, i suspect you are calling the_content twice. Take a look at the documentation in the codex re the loop.
Glad its not more serious.
Forum: Your WordPress
In reply to: Static Homepage (WordPress as CMS)Its for a page that displays your posts – but you’d need to add the template tags to that specific template file so as to pull in your posts from the various categories – which could get complex.
Easier to have a link on your front page that links to https://domain/category/blog/
Read the codex – it will make sense.
Forum: Your WordPress
In reply to: Static Homepage (WordPress as CMS)Bugs – no.
https://codex.www.ads-software.com/Pages
https://codex.www.ads-software.com/TemplatesHome – home will not become a home.php file, it will be content pulled in directly from your wp database dynamically based on the template you use (see link).
Blog – Why create a page?? If you want a webpage to return all posts (and i’m guessing this is what you want) posted to the blog category. Then have a link for that category not a specific WP page.
https://codex.www.ads-software.com/Category_TemplatesForum: Fixing WordPress
In reply to: blog is double (everything duplicate) … have tried everything …err no you didn’t – https://codex.www.ads-software.com/Upgrading_WordPress
1. Get the latest WordPress (https://www.ads-software.com/download/). Either download and extract it to your computer or download it directly to the server.
2. Copy the new files to your server, overwriting old files. You may use FTP or shell commands to do so.Doubling the post? You’ve not got something silly in your index.php where its posting the_content() twice have you?
When you say double the blog – do you mean every thing? Images included? 2x header, 2x footer, etc?
How about using a different theme – does it occur then? That would rule out your index.php etc.
Forum: Fixing WordPress
In reply to: basic question about new postsThink you are bit confused ??
Pages are generally for static content…
Posts are for your blog posts/news posts etc…
https://codex.www.ads-software.com/PagesWhy not have a category template which displays all the posts posted to the blog category? That would provide a single webpage (note not wp page) from which to access all ‘blog’ posts.
https://codex.www.ads-software.com/Category_TemplatesForum: Fixing WordPress
In reply to: SmiliesForum: Your WordPress
In reply to: Hi….