Forum Replies Created

Viewing 9 replies - 31 through 39 (of 39 total)
  • Thread Starter Tristan

    (@tristanstgermain)

    Hi,

    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!

    Thread Starter Tristan

    (@tristanstgermain)

    Hi,

    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( '&larr; 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(); ?>
    Thread Starter Tristan

    (@tristanstgermain)

    Hi,

    I still got the same errors 🙁

    Thanks for your help 🙂

    Thread Starter Tristan

    (@tristanstgermain)

    Hi,

    Thanks for your reply, yes it is:
    http://wordpress.org/extend/themes/responsive

    See you.

    Thread Starter Tristan

    (@tristanstgermain)

    hi,

    Yes it is working, good job !
    Now just waiting for 1.1 to traduce all elements 😉

    Thanks a lot.

    Thread Starter Tristan

    (@tristanstgermain)

    Good news !! thanks

    Thread Starter Tristan

    (@tristanstgermain)

    Hi,

    Thanks, in fact nothing work, I have an error 500 when I try to save a new event.

    Regards.

    Thread Starter Tristan

    (@tristanstgermain)

    Thread Starter Tristan

    (@tristanstgermain)

    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 !

Viewing 9 replies - 31 through 39 (of 39 total)