Alkorr
Forum Replies Created
-
Ok Harish, totally understand, thank you, will do.
Or maybe there is a way to disable your plugin, only on my homepage…
Forum: Plugins
In reply to: [Youtube Channel Gallery] Remove thumbnails, just have latest videoThat would be great indeed, display:none doesn’t always work.
Plus, the <div></div> may be hidden and they still add extra line breaks, even when using display:none…
Thanks!
Forum: Plugins
In reply to: [Youtube Channel Gallery] Displays twice the first videoGoraszka, did you find a way eventually to do that?
Hi Harish, did you have some time to check about the conflict with your plugin by any chance? 🙂
Sure Harish, no problem, that would be great if you can find what’s going wrong 🙂
Hi Harish! The website is not online yet, I can’t help you with that…
I don’t use Basic Slider as a plugin, only the script provided on the website I gave you. That’s why I’m thinking it’s a JQuery related conflict.
If it is of any help, I think there is also a conflict with WP-Polls and Basic Slider but Basic Slider works fine with all the other plugins, excepted your and WP-Polls.
Forum: Plugins
In reply to: Show top parent/grandparent categoryNot urgent, I was just wondering if I were asking in the right Forum, that’s all.
I’m an old member of these Forums and they are very active and useful. Since nobody suggested a solution, I was afraid I asked in the wrong Forum.
Last question about the same topic didn’t get an answer for 5 years, so I’m not in a hurry, or I would indeed consider hiring someone 😉
Forum: Plugins
In reply to: [Youtube Channel Gallery] Function to add to template?I found the way to do it, if it’s of any help to anyone:
<?php echo do_shortcode(‘[Youtube_Channel_Gallery…]’); ?>
Forum: Plugins
In reply to: [Youtube Channel Gallery] Displays twice the first videoHi, I have the same problem, first (featured) video also shows as the first video thumbnail…
If I use .ytccell-1 {display: none;} to remove it, then it’s the whole column that goes away, and not only the first video…
Any help? Thanks!
Forum: Plugins
In reply to: [YouList - YouTube playlist shortcode] Thumbnail not workingHi, I posted a month ago about missing thumbnails but I didn’t get any answer so far…
This plugin worked perfectly until recently, I really hope the plugin author will keep working on it and make it work properly again.
Forum: Fixing WordPress
In reply to: A different icon for each Post FormatOr maybe it’s not the best way to do it?
It seems working fine so far…
Forum: Fixing WordPress
In reply to: A different icon for each Post FormatHi esmi! On my homepage.
But I think I will able to do that using:
if ( has_post_format( 'video' )) { echo 'this is the video format'; }I’ve found it in the Codex 🙂
Forum: Fixing WordPress
In reply to: One recent post per authorIf it’s not possible to get more post per author, would it be at least possible to get the excerpt of the post?
Here is the code:
// function located in the theme's functions.php function wpse_78117_print_authors_last_post() { $user_ids = array( '1', '2' ); foreach( $user_ids as $user ) { $args = array( 'post_type' => 'post', 'numberposts' => 1, 'author' => $user ); // as we are getting only 1 post, extract it from the returned array $user_post = array_shift( get_posts( $args ) ); // similar $nick = array_shift( get_user_meta( $user, 'nickname' ) ); // custom output, $user_post contains all the post normal data echo $user_post->post_title . ', by: ' . $nick; } }Thanks!
Forum: Fixing WordPress
In reply to: One recent post per authorAny idea?
If I want 5 posts by author, even if I change: post_per_page 5, I still only get 1 post per author…
I’m stuck!
Forum: Fixing WordPress
In reply to: One recent post per authorTara, it doesn’t work. I tried all kind of order.
It doesn’t work because the filter is only on user name / author, so any other order you specify won’t work.
But if you tried to modify it using some info from the links you provide, please share the working results 🙂