http://www.lagimo.com that’s the website URL if you need any other details, please let me know. Thanks
Hi rotimok,
Thanks for the kind words and glad you like this plugin π
That’s actually an “issue” with the theme rather than the plugin, but since you’re using a premium theme I can’t help you right now; would you mind sending me the theme archive by mail so that I can show you what and where to edit? β support[at]wpmovielibrary[dot]com π
Thanks for the prompt response Charlie.
Do you mean archive.php file or the whole, theme.zip file.
However, i can send any of the above at your request.
Thanks.
Yeah I meant the theme’s ZIP file. That’s essentially because the relevant parts can be located in various files, so it’ll be easier than asking you for multiple files π
Ok, I just sent you the theme zip file. π
Got it, nailed it π
In the theme’s header.php file, edit the block at line 169-172 from:
$queryObjectslide = new WP_query( array(
'cat' => $slideshow_category,
'posts_per_page' => $slideshow_num
) );
To:
$queryObjectslide = new WP_query( array(
'post_type' => array( 'post', 'movie' ),
'cat' => $slideshow_category,
'posts_per_page' => $slideshow_num
) );
That should do the trick!
Wooooow!!!!! Thanks a lot Charlie. you’re a genius. It worked like a charm. I give you an “A+” for your plugin and support service. I’m definitely rating this 5 star. My donation should come through before or by weekend.
Thanks once again.
Glad it’s working now! Best luck with your website π
One observation Charlie, “related posts” carousel only shows blog posts instead of movies. What do I do. Thanks.
In sevenmag’s functions.php file, add this line right after line 466:
'post_type' => array( 'post', 'movie' ),
That’s kind of a generic solution: whenever you see a theme/plugin/widget feature showing posts and not movies, you need to find the code block that handle that feature, find any occurrence of functions/methods like get_posts or WP_Query and make sure there’s a 'post_type' => array( 'post', 'movie' ) in the arguments π
Works!!!! Thanks π π