anugen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts go to all pages problemI solved it , I was getting Categories mixed up with pages. I thought I was posting my art to a certain page but I was actually posting it to a certain category. oooooooooooops.
Forum: Fixing WordPress
In reply to: Posts go to all pages problemExample : I have 3 pages “A”, “B”, and “C”. I will post several pictures onto page “A”. But the pictures from page A will be posted in all pages A, B, and C. If anyone knows how I can fix this that would be Awesome! Thanks.
Forum: Fixing WordPress
In reply to: 2 Default CategoriesYah go to your wordpress admin account and then go to manage and then go to categories then on the right side of the page you can hit delete
Forum: Fixing WordPress
In reply to: WordPress is adding double pictures (the same picture twice)This is a different answer concerning double image in the Grain theme. You have to go to your WordPress editor site. There are options all the way across the screen – Dashboard / Write/ Manage/ Comments/ Blogroll/ Presentation – Click on Presentation. Then Click Theme editor (under presentation) There is now a Select theme to edit option at the top – Select Grain. Look to the right side of the page, it says ‘Grain’ theme files. Under Grain theme files Click on Main Index Template. Now in the box to the left there should be html. Scroll down the html (usually 3/4 of the way down) until you find this:
if( grain_posttype($post->ID) == GRAIN_POSTTYPE_SPLITPOST ):
// output the basic content
echo grain_get_the_content();
else:
// output the full content here
//echo get_the_content();
the_content();
endif;All you have to do is add slash star and star slash at the beginning and end like this . Awesome! You are quite welcome sirs. I am going to sleep now.
/* if( grain_posttype($post->ID) == GRAIN_POSTTYPE_SPLITPOST ):
// output the basic content
echo grain_get_the_content();
else:
// output the full content here
//echo get_the_content();
the_content();
endif;
*/