luckdragon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: add pagewhat do you mean? what happens when you try? i.e. when you go to pages and click “add new”
Forum: Fixing WordPress
In reply to: Adding to exsisting Home Page.sometimes the text on the front page appears in the theme options as opposed to the pages section, sometimes, it’s set to use blog posts, I would go to Settings->Reading to see what page is setup as the “home” page
Forum: Fixing WordPress
In reply to: Display ALL Thumbnails from Custom Post Types to Page template<?php $loop = new WP_Query("post_type=<custom_post_type>&post_status=publish"); while ( $loop->have_posts() ) : $loop->the_post(); ?> <div><? the_post_thumbnail(); ?></div> <? endwhile; ?>Forum: Fixing WordPress
In reply to: Plugin install or upgrade failureit depends on how the server is setup, if it’s running suPHP, then 775 should be fine, otherwise, it might need to be 777, and you might need to check the permissions on wp-content/ also, they also need to be corrected.
lastly, you can force it to not use FTP by adding to wp-config.php
define(‘FS_METHOD’,’direct’);
though if your permissions are wrong, it won’t be able to
Forum: Fixing WordPress
In reply to: Foreign characters show as question marksprobably because you don’t have the japanese language pack installed on your machine, so the default font that you are using doesn’t have characters equivelant to the japanese.
Forum: Fixing WordPress
In reply to: Plugin install or upgrade failureit sounds like a permission or ownership problem of the folder
Forum: Fixing WordPress
In reply to: Cannot modify header – premium theme issueit tells you:
/home2/theartsr/public_html/wp-content/themes/unspoken/core/theme_options.php
Forum: Fixing WordPress
In reply to: Cannot modify header – premium theme issueit says: headers already sent by (output started at /home2/theartsr/public_html/wp-content/themes/unspoken/core/theme_options.php:1)
which tells me that line 1 of that file has something on it, since that’s where it’s saying that the headers were started.
Forum: Fixing WordPress
In reply to: Cannot modify header – premium theme issueit looks like there is a blank line before the first line of theme_options.php <? just remove the blank line
Forum: Fixing WordPress
In reply to: CSS IncompatibilityI corrected all the errors, and the script still isn’t working how it’s supposed to, but I hacked a work around for ie, so I’m at least happy 🙂
Forum: Fixing WordPress
In reply to: Hemingway Theme-Number of posts on home pagedo you have a category set for the home page? maybe there are only 2 stories in that category?
Forum: Fixing WordPress
In reply to: grey photo border issue help!you would have to make it border:0px; to turn it off
Forum: Fixing WordPress
In reply to: Custom labels for the fields on the comment form?if you change the __(‘Name’) to “Name” it will override anything being set by your theme, otherwise, it might be in your theme, maybe your theme has a language file (like en_US.po) or something.
Forum: Fixing WordPress
In reply to: Improper Page Title Displayeddo you have any kind of caching plugin enabled?
Forum: Fixing WordPress
In reply to: grey photo border issue help!check your style.css around line 938, it says:
border: 1px solid #DDD;
either remove that line, or change the 1px to 0px