harryts
Forum Replies Created
-
Forum: Plugins
In reply to: A plugin to display my monthly archive of pagesThanks for the link. I use Page Attributes already – this helps me to organize my menus with submenus. Two things I’d like to have at the moment: Monthly dropdown Archive (like it exists for posts), and the way to convert Title Attributes into fixed Categories. Example: instead of 10 times filling in the Title Attribute form, say, Excursion, or, History, do it by one click – just to find in some dropdown menu words Excursion, History etc.
Forum: Plugins
In reply to: A plugin to display my monthly archive of pagesOr let me formulate it simpler. At the time being, for each page in my custom menus I fill Title Attribute, again and again. And these attributes are just 3 or 4. I’d like these Title Attributes to be sort of categories or so, in order not to fill again the same words into the menu form each time π Thanks.
Forum: Plugins
In reply to: A plugin to display my monthly archive of pagesAnd, in parallel, I’d like to have an opportunity to create categories for pages, like they were discussed here http://wordpress.org/extend/ideas/topic/categories-integration-with-pages.
The titles could be History, Excursions, Info etc.
Please don’t advice me to convert my pages into posts:-) It should be permalinks. Is there any plugin, please? I’m not a pro, but I could do some editing in my php-files in my child theme, if necessary. Thanks.Forum: Plugins
In reply to: A plugin to display my monthly archive of pagesThanks. I’ll try.
Forum: Fixing WordPress
In reply to: The post appears twice on the front page in twenty elevenConcerning the plugins I’ll check. But the idea about my reading setting in my dashboard was great. I’ve just switched my front page to my static page (instead of “my latest posts”) and I’ve chosen the right one. My question was exactly about it. I don’t need posts at the moment. In between I’ll continue trying to fix the issue about the posts if I’ll need them some day. Thanks. For the moment it’s enough
Forum: Fixing WordPress
In reply to: The post appears twice on the front page in twenty elevenThanks. Great idea. But probably not sidebar.php, since inside this file I can see nothing about posts.At the same time I can see no php-file which looks like content-post.php π Which file is responsible for posts, please?
Forum: Fixing WordPress
In reply to: How to remove comments block from the sidebar view in twenty elevenThanks. I sorted it out already. Much simpler. In Dashboard -> Pages -> Quick Edit you can check/uncheck Allow Comments box.
Forum: Fixing WordPress
In reply to: How can I hide post titles from status format postsStrictly speaking, “the first post” appears where it should be, and “the second” – below, on the fields. These are probably some wordpress settings I can easily change. Maybe I should start a new discussion about this? Thanks.
Forum: Fixing WordPress
In reply to: How can I hide post titles from status format postsWhat a mess. If a create post, on the front page I can see it twice. Upper and below. Why so? If I remove post – Nothing found. Could you please advice how can I copy (link) http://127.0.0.1:81/wordpress/?page_id=43 to
http://127.0.0.1:81/wordpress/ That will be OK. ThanksForum: Fixing WordPress
In reply to: How can I hide post titles from status format postsBy now, I put attention, if I remove (I did this) Home button and put as the first button let’s say “About me” button. And I have About me post and About me page.
On http://127.0.0.1:81/wordpress I can see them twice ! If I delete page or post I get troubles: if I delete post, “Nothing found” on my site (http://127.0.0.1:81/wordpress). If I delete page I cannot press on “About me” button πForum: Fixing WordPress
In reply to: How can I hide post titles from status format postsShortly, I’d like my site opens on “About me” page. I want no posts. About me page is ready and I want it to appear at http://127.0.0.1:81/wordpress, not only at http://127.0.0.1:81/wordpress/?page_id=43
Forum: Fixing WordPress
In reply to: How can I hide post titles from status format postsFor example on my localhost if I press Home button I get to
http://127.0.0.1:81/wordpress/?page_id=43 This is homepage and everything looks OKBut the site opens on
http://127.0.0.1:81/wordpress
which is post.Forum: Fixing WordPress
In reply to: How can I hide post titles from status format postsstill doesn’t work. How can I get rid of this Home post? I need only pages. I’d like to use Home page instead. But by default site opens on the Home post. If I remove this post I see on my homepage “Nothing found or so”? Is this possible to get the site open on the Home page, not post?
Forum: Fixing WordPress
In reply to: How can I hide post titles from status format poststwenty eleven (child, of course).
I added
?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?><div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php the_title(); ?>
<?php the_content(); ?>
</div> <!– closing the post class div –><?php endwhile; ?>
<?php endif; ?>at the bottom of my index.php – file. Nothing changes. BTW in functions.php I declared only aside, gallery and image view posts. Standard – by default.
Forum: Fixing WordPress
In reply to: How can I hide post titles from status format postsI guess, no. Could you please give me an example. Since I don’t understand where to put
<div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
from link you provided. Thanks