Jochen Fuchs
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Templates being ignored with 3.3.1Thank you, declaring WooCommerce support fixed it
Forum: Fixing WordPress
In reply to: pretty links are wrecking my custom loopI just swiched back to the “not static” page and now it is working.
I will post my working code, once I found out why it works…Thank you very much for now! You were a big help.
Forum: Fixing WordPress
In reply to: pretty links are wrecking my custom loopmy homepage was not set to static page. I changed that and made a template, but now my next_posts_link won′t show. when I add /page/2 the first page is displayed.
Forum: Fixing WordPress
In reply to: pretty links are wrecking my custom loopthe custom type is not being returned on the following pages
Forum: Fixing WordPress
In reply to: pretty links are wrecking my custom loopI′m not sure what you′re asking.
The output gives me all posts wich are visible on the index.Forum: Fixing WordPress
In reply to: pretty links are wrecking my custom loopNo, but I thought it might be something like this.
I also changed the slug of the custom post type, but it did′t work.Forum: Fixing WordPress
In reply to: pretty links are wrecking my custom loopHey Evan,
here is the loop
<!-- Start the Loop. --> <div id="container2"> <?php $args = array( 'post_type' => array( 'post', 'arbeiten'), 'posts_per_page' => '10', 'paged'=>$paged ); $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query($args); while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <div class="brick"> <div class="brick_header"> <a href="<?php echo get_permalink(); ?>" rel="bookmark" title="Click to view: <?php the_title_attribute(); ?>"> <?php the_title(); ?></a> </div> <div class="brick_featured_image"> <?php if ( has_post_thumbnail() ) { ?> <a href="<?php echo get_permalink(); ?>" rel="bookmark" title="Click to view: <?php the_title_attribute(); ?>"> <?php the_post_thumbnail( 'medium' ); } ?> </a> </div> <?php the_excerpt(); ?> <a href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>" class="read_more_link">Mehr lesen</a> </div> <?php endwhile;?> <?php $wp_query = null; $wp_query = $temp;?> <!-- stop The Loop. --> </div><!-- container --> <div class="nav-next"><?php next_posts_link( 'Mehr Beitr?ge laden' ); ?></div>
Forum: Plugins
In reply to: [BackUpWordPress] Backups are not being deletedOk… I feel dumb.
That was it, I didn′t see the weekly stuff.
Thanks and keep up the good work.Forum: Plugins
In reply to: [BackUpWordPress] Backups are not being deletedthe files are 644
Forum: Plugins
In reply to: [BackUpWordPress] Backups are not being deletedThanks for your reply.
It′s 755, so I think this shouldn′t be the problem…Forum: Networking WordPress
In reply to: Admin Language in Multisite…resolved
Forum: Networking WordPress
In reply to: Admin Language in MultisiteThank you!