transom
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post won't update when savedCan you add a photo via upload?
Forum: Fixing WordPress
In reply to: Pages Post Plug-in: home page title and menu bar css not working?There is a specific section of the Forums for that plugin – http://wordpress.org/tags/pages-posts?forum_id=10
Posting your question there will hopefully get you an answer from the plugin author or someone familiar with the plugin.
Forum: Fixing WordPress
In reply to: WP link on other site posts ALL CSS codeYou made an account at pastebin. Copy the contents of your header.php file from your theme and paste it on a page over there. Share the link to the page here and we might be able to help.
Forum: Fixing WordPress
In reply to: Page/Post editor pane (MCE) too smallIf you look carefully at the editor pane, you’ll see that the bottom right hard corner has a ripple in it (just like here in the forums). (You must be in Visual mode).
Grab that ripple with your mouse, and pull down and your pane will enlarge.
WordPress doesn’t sell a shopping cart. You may have downloaded one from the plugins directory. If so, on the right hand side of that page, you’ll find a link to “forum posts” related to the plugin.
Posting your question there will likely get you useful responses.
Forum: Fixing WordPress
In reply to: My blog only showing snippetMaking that change shouldn’t have affected your feed. But you can restore the copy of the file and verify that the feed is or is not working.
If the feed is still not working, you may want to open a new topic here on the forum.
Forum: Fixing WordPress
In reply to: Show thumbnail on the home page but not on the inner pagesSee if your theme supports Featured Images. This would allow you to include a thumbnail in the blog stream separately from the post content.
There are a number of plugins that also give you the same functionality.
Forum: Fixing WordPress
In reply to: How to output to the content part?Take a look in wp-admin at Appearance -> Widgets. Drag the Search widget to one of the widget areas on the right and “save”. This will add a search box to your pages.
There are many, many search plugins that will let you customize how search is handled on your site.
Directly adding code to your theme will be an exercise in frustration until you spend some time understanding how WordPress handles urls and queries.
Forum: Fixing WordPress
In reply to: Each post in its own frame…The first example is just the addition of the HTML tag <hr /> to the index.php file (probably in front of the the_title function).
The other examples would require more extensive editing.
If you are uncomfortable with editing your theme files, you can probably find asssistance on sites like wpquestions.com or jobs.wordpress.netForum: Fixing WordPress
In reply to: How to call drop down menu in custom themeWithout getting too deep in the “right” way to code the navigation, for the moment you can include the links in your header.php file.
Assuming your css and javascript are in css and js folders in your theme file, use these:
<link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/css/style.css” media=”screen” charset=”utf-8″><script src=”<?php bloginfo(‘template_url’); ?>/js/menu.js” type=”text/javascript” />
To learn how to the “right” way, read up on wp_enqueue_script and wp_enqueue_style functions.
Forum: Fixing WordPress
In reply to: Uploading files & .permalink issues 3.1.1It is almost certainly the installation program. If you set the permissions of wp-content and its sub-directories to 755, you should be good going forward.
To set your permalinks, upload an empty file and name it .htaccess. Set the permissions to 777, set your permalinks. Change the permission of the file to 755.
Forum: Fixing WordPress
In reply to: 403 Error, Can't find causeA link to the page in question would allow for a more definitive answer.
Forum: Fixing WordPress
In reply to: page titlesYep – that is why the theme is the place where you’ll have to make the changes. Another way would be to make a custom template to apply to the page where you don’t want the header to appear.
Copy page.php in your theme file to a new file such as no-header-page.php. Add a template name at the top of this new file per this codex example and then remove the part of the page that shows the_title
Forum: Fixing WordPress
In reply to: My blog only showing snippetMake a backup of the file and then,
Change line #13 from
the_excerpt(…..);
to
the_content(“[…]”);Forum: Fixing WordPress
In reply to: Error on page, Requires Removal of Codefirsttheme_posted_on looks like a custom function that came with your theme. It is not a standard WordPress function. Check the functions.php file of your theme to see if the function name has been mis-typed.