oolongtea
Forum Replies Created
-
Forum: Plugins
In reply to: [Feature A Page Widget] QTranslate?Forum: Plugins
In reply to: [Feature A Page Widget] QTranslate?Many thanks! 🙂 I shall, somewhat impatiently, await that update.
I´m sorry I can´t give you any tips on how qTranslate works on the inside. I just happily and unknowingly use it. It´s pretty straight forward but if you have any questions about how to use it I´ll do my very best help you out.Forum: Plugins
In reply to: [Plugin: WP Photo Album Plus] Slideshow not workingHello again,
I have to keep the site nice so I have reverted back to WP Photo Album Plus 4.3.10. The slideshow works fine again. …but i still would like to find a solution to this problem. I don´t want to get stuck with an old version. …would be awesome to get help on this.Comment on my post above – “& rarr;” in the code snippets was not supposed to be replaced by a little arrow “→”. I don´t know why that happened. Remove the space after the “&” to get it right.
Many thanks Per for this brilliant theme! It´s the best!
..and Hi vanessachin! You addressed Per and I believe he soon will give you an answer. However – I would like to take the opportunity to share my solution and at the same time ask anyone for comments on it since I believe there is a smoother solution.
I did the above thing to line 51 with a few additions:
<?php if ( is_front_page() && ( count( get_the_category() ) )): ?> <? $thecategories = get_the_category_list( ', ' ); $pos = strpos($thecategories,'no_excerpt'); ?> <?php if ($pos == true) : ?> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'blaskan' ) ); ?> <?php else: ?> <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'blaskan' ), the_title_attribute( 'echo=0' ) ); ?>"> <?php the_excerpt(); ?> </a> <?php endif; ?> <?php else: ?> <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'blaskan' ) ); ?> <?php endif; ?>then i did someting similar to what used to be line 56-58. I replaced this:
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'blaskan' ), the_title_attribute( 'echo=0' ) ); ?>"> <?php _e( 'Continue reading <span class="meta-nav">→</span>', 'blaskan' ); ?> </a>with this:
<?php if ( is_front_page() && ( count( get_the_category() ) )): ?> <? $thecategories = get_the_category_list( ', ' ); $pos = strpos($thecategories,'no_excerpt'); ?> <?php if ($pos == true) : ?> <?php //nothing ?> <?php else: ?> <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'blaskan' ), the_title_attribute( 'echo=0' ) ); ?>"> <?php _e( 'Continue reading <span class="meta-nav">→</span>', 'blaskan' ); ?> </a> <?php endif; ?> <?php else: ?> <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'blaskan' ), the_title_attribute( 'echo=0' ) ); ?>"> <?php _e( 'Continue reading <span class="meta-nav">→</span>', 'blaskan' ); ?> </a> <?php endif; ?>On the front page all posts that are assigned to the category “no_excerpt” are fully displayed.
Of course! That will be fine! Had missed that “slidonlyf” Thanks!
I apologize for mixing up the topics. I spend little time om forums but still should have thought of it.
Thank you for the tip about the div. However it does not really solve my problem. I´m setting up a wordpress blog/site for someone who don´t know anything about HTML and cannot be expected to deal with it.. but then again – I think I´ll settle with the widget that places widgets on pages.
About starting and stopping slidehows. I´d like to be able to set it individually for each slideshow. I use some as a kind of “splash” at first pages in different sections of the blog/site and others to contain images the visitors can view if they choose to do so.
Many thanks in advance if this is possible!