Drew Baker
Forum Replies Created
-
Forum: Plugins
In reply to: [Wiredrive Player] [Plugin: Wiredrive Player] Stop a video with separate linkHey jsain,
No there is not no built in JS function to stop the player. What you are describing is an API, which we would like to build into the player at some point.Do you require it to pause? Is it OK if it just stops/starts? If so, can you just tear down the player (like removing the DIV and then re-adding it as needed)?
-Drew
Forum: Plugins
In reply to: [Wiredrive Player] [Plugin: Wiredrive Player] wiredrive shortcode video errorHey Jon,
I’ve looked through your site, and I do see the player in Safari (but not Firefox), but it seems to be ignoring clicks.The plugin users a user agent detect in PHP to determine what player to show (HTML5 or Flash) and I guess that your $_GET request is returning a bad user agent detect for some reason, although I don’t know why.
Can you try putting together a more simplified example for me to troubleshoot? You have a lot of JS running and it’s hard to trouble shoot an AJAX powered site.
-Drew
Forum: Plugins
In reply to: [TagPages] [Plugin: TagPages] Fatal Error on line 46Hey Berny,
Thanks for the help, but I just had the client switch to MediaTemple. There were so many issues with Dotster, we were rinsing hours trying to get WP to play nice with their servers.Thanks for the help!
By the way, what do you do for work? Are you available for freelance projects? We are always looking for pro plugin builders, and I like what you have done with TagPages.
Thanks!
DrewForum: Plugins
In reply to: [TagPages] [Plugin: TagPages] Fatal Error on line 46Hey Berny,
Thanks for the help. I managed to fix it by using Variant 2, but then I got a fatal error on line 59.It’s totally because Dotster is running some weird PHP5 setup. So don’t worry about it, I’ve got to get the client to switch over a real host.
If anyone is reading this, don’t ever use Dotster!
Thanks for the help!
-DrewForum: Fixing WordPress
In reply to: wp_nav_menu sort order?I understand that, I was hoping there was another way to do it. Perhaps a filter of some sort?
Forum: Fixing WordPress
In reply to: wp_nav_menu sort order?Bump?
Forum: Fixing WordPress
In reply to: Passing variable to post__in not working?Hey alchymyth,
Thanks for the help, but in the end I think the problem was the ‘post__in’ parameter can’t be used in get_posts like I wanted. Strange enough, the old ‘include’ does. So this worked!$args = array( 'post_type' => 'page', 'posts_per_page' => -1, 'order' => 'ASC', 'orderby' => 'menu_order', 'include' => $relatedpages ); $myposts = get_posts($args);Thanks anyway!
Forum: Fixing WordPress
In reply to: Passing variable to post__in not working?So I figured out that the problem is that $relatedpages is a string, and it needs to be a comma separated integers.
Any ideas on how to over come this?
Thanks!
Forum: Plugins
In reply to: [Wiredrive Player] [Plugin: Wiredrive Player] Glitch When Plugin ActivatedHello myaleigh,
What other plugins are you using? I’m not seeing the same issue so it might be a conflict with another plugin. I’d like to test against the ones you are using.Thanks,
DrewForum: Plugins
In reply to: [Wiredrive Player] [Plugin: Wiredrive Player] Glitch When Plugin ActivatedHello Myaleigh,
When you say “plugins links”, which links are you referring to?Thanks,
DrewForum: Plugins
In reply to: [Wiredrive Player] [Plugin: Wiredrive Player] Video sound onlyHey JonoW,
What is the troublesome video encoded in? If you look at the page in Safari does the video play?Is it H.264 and .mp4? Or something else? Do the videos play in Wiredrive reels?
I suspect it’s a format issue. Can you post or email me a link to the video?
drew [a] wiredrive.com
Thanks for the feedback!
-DrewForum: Themes and Templates
In reply to: Disable Aspect Ratio Crop on Custom Header ImageBump.
Any suggestions? Thanks!
Forum: Fixing WordPress
In reply to: Exclude All Child Pages from WP_QueryTotally worked, thanks!
Forum: Fixing WordPress
In reply to: Add class to links generated with wp_page_menuThanks so much vtxyzzy! Did you write this yourself or find it someplace. Worked perfectly, other than it gave the li elemnts the class, not the first a of each li. It doesn’t matter, I got it working using that sturcture. If anyone is curious,I used this jQuery code to do it:
jQuery(document).ready(function($) { $( '.menu ul' ).accordion({ autoHeight: false, header: 'li.top-level > a', collapsible: true, active: 'li.top-level.current_page_ancestor a' }); });Forum: Fixing WordPress
In reply to: Template Hierarchy – Pagination – home.php overiding index.phpThanks vtxyzzy,
I never tried you’re way, I got it working doing this before I saw your reply:<?php if (!is_paged()) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args=array( 'category_name'=>'topics', 'posts_per_page'=>2, 'paged'=>$paged, ); query_posts($args); } ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>This is in my home.php file. Thanks anyway!