zachmattheus
Forum Replies Created
-
Still nothing… I can change the title though… still lost.
Nope. Just has “your email”. No field or anything else…
I have it installed. I have the widget there. But there’s no field for somebody to sign up.
All it says is: “You may manage your subscription options from your profile.”
Forum: Fixing WordPress
In reply to: Import content from old WP siteno
Forum: Fixing WordPress
In reply to: Import content from old WP siteI have the old wp-content folder. Where do I find the WXR (.xml) file to upload
Forum: Fixing WordPress
In reply to: Move WPWhen it says:
“Change the following and save the file. Change the line that says:
require(‘./wp-blog-header.php’);
to the following, using your directory name for the WordPress core files:
require(‘./wordpress/wp-blog-header.php’)”What does it mean “using your directory name for the WordPress core files”?
Forum: Fixing WordPress
In reply to: Move WPThis?
Moving a Root install to its own directory
Forum: Fixing WordPress
In reply to: Posts in Random Orderall fixed!
Forum: Fixing WordPress
In reply to: Posts in Random OrderIt was that code that did that. Fixed by deleting
orderby' => 'rand',Forum: Fixing WordPress
In reply to: Featured Image helpI changed the jpeg image quality in /wp-admin/includes/image.php to 100 and it’s still bad.
Forum: Fixing WordPress
In reply to: Posts in Random OrderTried but nope.
<?php $args = array( 'category_name' => 'featured small', 'post_type' => 'post', 'posts_per_page' => 30, 'orderby' => 'rand', 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1), ); query_posts($args); $x = 0; while (have_posts()) : the_post(); ?> <?php if($x == 0) { ?> <div class="featured_box first"> <?php } elseif($x == 2) { ?> <div class="featured_box last"> <?php } else { ?> <div class="featured_box"> <?php } ?>Forum: Fixing WordPress
In reply to: Posts in Random OrderAhhh, that’s the code I’m using at the moment provided by the theme
Forum: Fixing WordPress
In reply to: Posts in Random OrderSorry I’m not very good with code… you mean here?
<?php $args = array( 'category_name' => 'featured small', 'post_type' => 'post', 'posts_per_page' => 30, 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1), ); query_posts($args); $x = 0; while (have_posts()) : the_post(); ?> <?php if($x == 0) { ?> <div class="featured_box first"> <?php } elseif($x == 2) { ?> <div class="featured_box last"> <?php } else { ?> <div class="featured_box"> <?php } ?>[Moderator Note: Please post code or markup snippets between backticks or use the code button.]
Forum: Themes and Templates
In reply to: How to add logo to site?I’d rather edit using wordpress editor.
Bump