gatessg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My categories pages showing a 500 errorI’m having this same issue. Did anyone ever find a solution to this? The previous methods haven’t seem to help.
Forum: Fixing WordPress
In reply to: Category Pages broken after moving from LocalhostAfter re-saving menus and permalink settings I am still facing this issue.
Forum: Fixing WordPress
In reply to: Unable to crop thumbnail.I’m also running this on MAMP. Could this be causing an issue?
Forum: Fixing WordPress
In reply to: Unable to crop thumbnail.Thanks LuigivdB!
Yes, after checking the folder you referenced it appears that the cropped images are in there.
Forum: Fixing WordPress
In reply to: wp_get_attachment_image not showing imageI found this solution to work outside the loop.
` <?php $args = array(
‘post_type’ => ‘attachment’,
‘numberposts’ => 1,
‘post_status’ => null,
‘post_parent’ => $post->ID
);$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
echo ‘<li>’;
echo wp_get_attachment_image( $attachment->ID, ‘full’ );
echo ‘<p>’;
echo apply_filters( ‘the_title’, $attachment->post_title );
echo ‘</p></li>’;
}
} ?>
`
I feel that this my be a little over kill for what I’m trying to do. This works but I am wondering if I really need all this or if it is becoming sloppy.Forum: Fixing WordPress
In reply to: wp_get_attachment_image not showing imageThanks alchymyth, I was reading this for a while but I’m not really as good with php as I would like to be yet. I’m confused if this is able to be used outside the loop or not. As I specified before it doesn’t seem to be responding at all.
Forum: Plugins
In reply to: [Wordpress Instagrabber] Error upon authorizing new streamSame here.
Forum: Plugins
In reply to: [Wordpress Instagrabber] Cannot AuthorizeI’m having the same issue. I can’t seem to figure out whats going on.
Forum: Fixing WordPress
In reply to: static front page/ hiding home linkBasically my site looks like this
(the logo) home about blog contact
I want it to appear like this
(the logo) about blog contact
I just want to lose the home link and use the logo as the link.
Any ideas?
Forum: Fixing WordPress
In reply to: Contact Form 7 and Local HostThank you!
Forum: Fixing WordPress
In reply to: permalink issuesThank you so much! Good eye!
RESOLVED!
Forum: Fixing WordPress
In reply to: single.php overun by 404In the above code doesn’t it seem that everything is typed out correctly for the index loop?
Forum: Fixing WordPress
In reply to: single.php overun by 404I’m coding this from scratch. only have a index, single, functions, and style page.
Forum: Fixing WordPress
In reply to: single.php overun by 404How do I go about finding this?
Forum: Fixing WordPress
In reply to: single.php overun by 404Its all running locally?