Linosa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog pagination not showing top of pageThat’s to bad. They want me to pay for getting their help.
Forum: Fixing WordPress
In reply to: Child theme not overwrite files in foldersAh, so it’s only the normal files like single.php and footer.php that works? I didn’t know that.
Forum: Fixing WordPress
In reply to: Child theme not overwrite files in foldersNone of the files within a folder works :/
But here’s an example:
/wp-content/themes/neobeat-child/inc/title/templates/title.phpinstead it reads:
/wp-content/themes/neobeat/inc/title/templates/title.phpForum: Fixing WordPress
In reply to: Child theme not overwrite files in foldersThank you. I’ve tried that but no luck yet.
Forum: Fixing WordPress
In reply to: How to get rid of footer widget area?Add padding:0; to .footer-widgets and change the background to #fff
Forum: Fixing WordPress
In reply to: How to create my own submenuNa, dosen’t really do the job for me. It works if you only have 2 levels of subpages, but I have 4.
Forum: Fixing WordPress
In reply to: Pagination not workingAny ideas?
Forum: Fixing WordPress
In reply to: Pagination not workingNa, not workin.
Forum: Fixing WordPress
In reply to: Align footer with website. Center footer!No, to your css file.
Try to add
margin-left: 15px; margin-right: 15px;
to the #footer
Forum: Fixing WordPress
In reply to: Align footer with website. Center footer!Add to your footer:
padding-left: 15px; padding-right: 15px;
Like the rest of your page have.
Forum: Fixing WordPress
In reply to: Help With Menus?Yes you can.
Creat a custom menu (apperance -> menus), and add the categories you want.
Then go to widgets (apperance -> widgets) and add the widget “custom menu” to optional sidebar.
Forum: Fixing WordPress
In reply to: List current category post with thumbnails and paginationI solved it myself.
<?php if (have_posts()): while (have_posts()) : the_post(); ?> <?php the_title(); ?> <?php the_content(); ?> <?php endwhile; ?> <?php endif; ?> <ul> <?php global $post; $categories = get_the_category(); $thiscat = $categories[0]->cat_ID; ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'posts_per_page' => 4, 'paged' => $paged, 'cat' => $thiscat ); query_posts($args); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail("thumbnail"); ?><br /> <?php the_title(); ?> </a></li> <?php endwhile; ?> <?php html5wp_pagination(); ?> <?php endif; ?> <?php wp_reset_query(); ?> </ul>
Forum: Fixing WordPress
In reply to: List current category post with thumbnails and paginationSo I solved the thumbnail part. Still need help with the pagination though!
Forum: Fixing WordPress
In reply to: Remove featured content from twenty fourteenI just deleted all the stuff in the code that was related to the featured content part.
Forum: Fixing WordPress
In reply to: Remove featured content from twenty fourteenThe problem was that I was using category.php and it didn’t show the stickys.