Tristan
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Defining a home pageHi,
I’m not too technical but I think I get what you mean.
So to resume: I translate the category ID 1, then change :$paged = 1; query_posts("cat=1&post_type=post&paged=$paged"); ?>to
$args = array('cat' => pll_get_term(1)); // get the translation of category 1 in the current language $args = array_merge($GLOBALS['wp_query']->query_vars, $args); // just add our query vars without overwriting the others query_posts($args);Is that right?
Thanks for your time!
Forum: Plugins
In reply to: [Polylang] Defining a home pageHi,
Under WordPress admin I’ve set a static page with model “Blog excerpt” model as home page and I’ve modified the the blog.php file to only load a particular cat ID in home page ‘see bellow).
Do you think problem can be that? Also my theme version is 1.6.8 and last is 1.8.8.
Thanks !!
<?php get_header(); ?> <div id="content-blog" class="grid col-620"> <?php if ( get_query_var('paged') ) $paged = get_query_var('paged'); elseif ( get_query_var('page') ) $paged = get_query_var('page'); else $paged = 1; <strong>query_posts("cat=1&post_type=post&paged=$paged"); </strong> ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'responsive'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1> <div class="post-meta"> </div><!-- end of .post-meta --> <div class="post-entry"> <?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" > <?php the_post_thumbnail(); ?> </a> <?php endif; ?> <?php the_excerpt(); ?> <?php wp_link_pages(array('before' => '<div class="pagination">' . __('Pages:', 'responsive'), 'after' => '</div>')); ?> </div><!-- end of .post-entry --> <div class="post-data"> <?php the_tags(__('Tagged with:', 'responsive') . ' ', ', ', '<br />'); ?> <?php printf(__('', 'responsive'), get_the_category_list(', ')); ?> </div><!-- end of .post-data --> <div class="post-edit"><?php edit_post_link(__('Edit', 'responsive')); ?></div> </div><!-- end of #post-<?php the_ID(); ?> --> <?php endwhile; ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div class="navigation"> <div class="previous"><?php next_posts_link( __( '‹ Older posts', 'responsive' ) ); ?></div> <div class="next"><?php previous_posts_link( __( 'Newer posts ›', 'responsive' ) ); ?></div> </div><!-- end of .navigation --> <?php endif; ?> <?php else : ?> <h1 class="title-404"><?php _e('404 — Fancy meeting you here!', 'responsive'); ?></h1> <p><?php _e('Don't panic, we'll get through this together. Let's explore our options here.', 'responsive'); ?></p> <h6><?php _e( 'You can return', 'responsive' ); ?> <a href="<?php echo home_url(); ?>/" title="<?php esc_attr_e( 'Home', 'responsive' ); ?>"><?php _e( '← Home', 'responsive' ); ?></a> <?php _e( 'or search for the page you were looking for', 'responsive' ); ?></h6> <?php get_search_form(); ?> <?php endif; ?> </div><!-- end of #content --> <?php get_sidebar('right'); ?> <?php get_footer(); ?>Forum: Plugins
In reply to: [Polylang] Defining a home pageHi,
I still got the same errors 🙁
Thanks for your help 🙂
Forum: Plugins
In reply to: [Polylang] Defining a home pagehi,
Yes it is working, good job !
Now just waiting for 1.1 to traduce all elements 😉Thanks a lot.
Good news !! thanks
Hi,
Thanks, in fact nothing work, I have an error 500 when I try to save a new event.
Regards.
Hi,
Thanks for your reply, in fact I have exactly the same problem without using the GG calendar (Google calendar was in public)
If I create an event from the backend I have the same issu.Regards and thanks !