moedeboum
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Document Library Pro + ACF don’t work after updating PolylangHey @svw123,
I had the same problem and was able to solve the problem. You have to assign the individual documents, categories and taxonomies to a language. These will then be displayed again.
I’m now trying to find a solution for translating the documents. I don’t want to create them all individually. ??
Forum: Themes and Templates
In reply to: [Openstrap] different languageDid you solve the problem?
Forum: Themes and Templates
In reply to: get_permalink returning wrong link in excerptIt doesnt work!
It is so weird: every permalink above the <?php the_excerpt(); ?> works fine, but if i put the permalink below the <?php the_excerpt(); ?> it doesnt work!!
Forum: Themes and Templates
In reply to: get_permalink returning wrong link in excerptThis is the Code of the Page:
<?php /** * Template Name: Home-2 * A custom page template forthe Home-2-Page. */ get_header(); ?> <div id="content"> <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <div id="intro-text-home"> <?php the_content(); ?> <?php endwhile; ?> </div> <!--intro-text--> <div id="blog-intro-home"><!--blog-header--> <div id="blog-article-home"> <?php $args = array( 'numberposts' => 1, 'order'=> 'DESC', 'orderby' => 'post_date' ); $postslist = get_posts( $args ); foreach ($postslist as $post) : setup_postdata($post); ?> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php the_date('d', '<span class="day">', '</span>'); ?> <span class="month"><?php the_time('M'); ?></span> <span class="author">gepostet von <?php the_author(); ?></span> <br /> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail (thumbnail); ?></a> <br /><br /> <?php the_excerpt(); ?> </div> <!--blog-article--> </div> <!--blog-intro--> <?php endforeach; ?> <?php get_footer(); ?> </div> <!--end content-->
Forum: Themes and Templates
In reply to: get_permalink returning wrong link in excerptI also use this function!
Forum: Themes and Templates
In reply to: get_permalink returning wrong link in excerptThere never has been a filter.
This is the code of the original Twenty-Ten Theme:
/** * Returns a "Continue Reading" link for excerpts * * @since Twenty Ten 1.0 * @return string "Continue Reading" link */ function twentyten_continue_reading_link() { return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) . '</a>'; }
Forum: Themes and Templates
In reply to: get_permalink returning wrong link in excerptDo u mean in my Template?
I use this code:
<?php the_excerpt(); ?>
And the continue_reading button is created by the function twentyten_continue_reading_link() in my function.php
Forum: Themes and Templates
In reply to: get_permalink returning wrong link in excerptThe first months it worked fine.
My problem: I dont now what caused the “function-crash”Forum: Themes and Templates
In reply to: get_permalink returning wrong link in excerptNo, i created my own theme.
But i used the twenty-ten as basisForum: Plugins
In reply to: [Display Widgets] Bug for checkbox saveVielen Dank! ??
Forum: Plugins
In reply to: [Display Widgets] Bug for checkbox saveHi Johann,
falls Du deutsch sprechen solltest:
Kannst Du den genauen Code, den man ersetzen muss, bitte posten.English:
Could you please post the right code in here.
I couldnt understand your solution…Thank you