Lorelle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Need to find link to make new blog postFirst, don’t mess with things. 😉
If you are using WordPress as your site’s blog, then you should not even have an
index.htmlfile. It is now replaced by theindex.php. You have two of them. One is in the root directory of your WordPress installation. If you have made a change in that file REPLACE IT with the original immediately. The only one you should mess with, if you mess with it at all, is theindex.phplocated in your Theme folder under/wp-content/themes/yourtheme.Second, if your Theme is working right and has the feature, there may be a link in the sidebar under
metawhich will saySite AdminorAdminorLogin. That link will take you to your administration panel’s login screen.If you have set up the options to show only one post on the front page, then all the others will be viewable and accessible through your archives or categories links. This is set up under Options > Reading.
Does this help?
Forum: Fixing WordPress
In reply to: Content-DispositionHave you contacted the plugin author? He’s really helpful and has a lot of information on his website concerning different issues with the plugin.
Forum: Themes and Templates
In reply to: Fine tuning postsCSS
Finding Your CSS Styles
Blog Design and LayoutAnd from there, you will find plenty more information. Links are known as
a, a:link, a:visited, a:hoverand they come in different flavors in different parts of your WordPress Theme depending upon the Theme’s design.Forum: Plugins
In reply to: Change checkbox to radio buttonWe do not recommend changing the core programming files, which would need to be changed in order to make this modification. Is there a specific reason for such a change? Clicking a box and clicking a circle isn’t much different in technique, just look.
Creating Admin Themes will help you with some of the CSS modifications of a WordPress Administration Theme, which might help.
Forum: Themes and Templates
In reply to: Keep left menu when viewing single posts1. Choose a Theme that has a sidebar on the single post view.
2. Edit the
single.phpto resembled theindex.phpin structure, so where it says “widecolumn” or something similar in the CSS class for the content area, change it to “narrowcolumn” or whatever your Theme is using. Then add the call to the sidebar, as you see on theindex.phptemplate file.For more information on the structure of typical WordPress Themes and editing Template files see:
Site Architecture 1.5
Stepping Into Templates
Templates
Theme DevelopmentForum: Fixing WordPress
In reply to: can search engine query future posts?The issue of future posts is that they aren’t “alive” on the blog until after they have been posted. Searching these and getting a result would only take people to a page not found.
Using WordPress as an event calendar, and posting about things in the future is different from “future scheduled posts”.
Am I on the right track?
Forum: Fixing WordPress
In reply to: Adding a category to a postForum: Plugins
In reply to: modifying cat2tag plugin to appear openHave you contacted the plugin author or visited their site to see if there are instructions there already for that plugin? That kind of change to the plugin requires someone familiar with it and PHP to make it work.
Forum: Everything else WordPress
In reply to: Getting RSS feeds only for the current monthInstructions for accessing feeds are found in WordPress_Feeds. Try one of those links to see if the results change. And let us know so we can investigate this further. We also need a link to your site to check this out.
The problem might be with what you are using to access the feeds and not with your feeds.
Forum: Installing WordPress
In reply to: comdev guestbookYour best bet is to contact the author of the guest book and ask them. Or try another guest book.
But in general, you can’t include PHP directly in a Page or a post without a special plugin like RunPHP or PHP Exec (see Plugins). You can put it on a template file and use that template as your Page. Did you go through the instructions on how to do that in the article on Pages?
Forum: Fixing WordPress
In reply to: Word Count while entering new post in admin interfaceDo you want to see them on your admin panel or do you want the user to see this information on your post? If you want to know how many words you entered in the Write Post panel, well, that’s something I’ve never heard of. If this is critical information for you, then I recommend that you write the post in a word processor (first turn off all the quote conversions) or find a good text editor with a word count and write your post in there and run it through the counter, then you would know. Then copy and paste it into WordPress. But MAKE SURE there are no curly quote marks and such as that will look weird on your blog.
If you would like to have this information available for readers to see, then there are some plugins that might help. Also, on occassion, I’ve been able to activate plugins and put their php template tags in my admin panels and have that information appear there but not on my site, so you might try that, too, if you are brave and know what you are doing. I explain one example of how to do that here.
Check out plugins that do this:
http://codex.wordpress.org/Plugins/Statistics
http://codex.wordpress.org/Plugins/Posts_MiscellaneousForum: Fixing WordPress
In reply to: How to make a simple list for sidebarYou have a couple of options. Using_Custom_Fields, you can set up your “mood” music with those examples. You could also use asides, which are explained in Adding_Asides to put posts in the sidebar which would highlight the music you are listening to, even with a link to an add to buy the music.
There are also a variety of plugins that might help you. Check out http://codex.wordpress.org/Plugins/Audio_Mood
Only if you put them there.
Now, let’s talk about how you can put them there. If you set WordPress Options to only show the Excerpt on the front page, then you can use the explicit EXCEPT section to put an excerpt in with a thumbnail version of the image. In the Write Post area, you can then put the full-size image and so on the front page, in the excerpt it would show the smaller image and then in the full page (single post view) view, it would show the large sized image.
I don’t know of a method to automatically do that for you.
Forum: Installing WordPress
In reply to: WordPress not pingingWhat does that mean “latest version”? Which version are you using?
Forum: Plugins
In reply to: php and javascript in postsFor information on running Javascript, see Using Javascript. In order to run PHP inside of posts, something not recommended, you can use RunPHP or PHPExec, both found here:
http://codex.wordpress.org/Plugins/Posts_Formatting