Pete
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Image uploader button not workingMy question is a bit more than similar it’s the same problem. I posted to subscribe and see if anyone has maybe gotten a reply / fix from the dev’s whom i’ve already contacted. Does WP really want duplicate questions on their forums?
Forum: Themes and Templates
In reply to: Image uploader button not workingHi Calik1d I’m also having this problem that the button is not opening a media manager or upload form. I do not see any errors in chrome console. It’s not a file permission issue it has nothing to do with permissions. The buttons simply isn’t working.
Hi Julio, I would also be interested in this. To have the ability to associate an invitation code with an existing user role so on registration they are assigned that role.
Forum: Plugins
In reply to: [S3 Video Plugin] Get URL which shortcode is generating?Ok here’s what I used for the full path to video.
jQuery("a#getURL").click(function() { var videoFile = jQuery(this).attr("title"); var linkText = '<h2>Full path to video on s3: </p><br>'; var shortLink = '<p><input type=\"text\" readonly=\"readonly\" name=\"shortlink\" value=\"http://' + awsBucket + '.s3.amazonaws.com/' + videoFile + '" style=\"width: 450px;\"></p>'; jQuery("#videoInfo").html(linkText + shortLink + '<br>'); jQuery().colorbox({width:"50%", inline:true, href:"#videoInfo"}); });<a href="#" title="<?php echo $existingVideo['name']; ?>" id="getURL"> Get URL </a>Forum: Plugins
In reply to: [S3 Video Plugin] Get URL which shortcode is generating?I can probably add my own jQuery function to pop up and display the full URL to the video, then place it into a post and wrap it around the default FlowPlayer code to use HTML5 if you can just let me know if there’s a way to do it with the embed code.
Forum: Plugins
In reply to: [S3 Video Plugin] Get URL which shortcode is generating?Actually Anthony, the embed code i’m using seems to be defaulting to a flash player which doesn’t play the videos on my phone.
On FlowPlayer’s website I see they do use an HTML5 player. Is flash being used because of the embed code? If so is there a way to switch this, i’m looking at the code in existing-videos.php
Thanks
Forum: Plugins
In reply to: [S3 Video Plugin] Get URL which shortcode is generating?Hi Anthony,
I thought i’d need the URL to embed within a video player in a custom template but turns out the short codes work just fine rendering on the page
Thanks
PeteForum: Plugins
In reply to: [Video Thumbnails] don't workI’m not sure now what you are asking? If you want to show a featured image in the category page only and NOT on the single post page you must modify your template. If you want more help contact me http://bit.ly/UHR2WS
Forum: Plugins
In reply to: [Video Thumbnails] Not finding thumbnail for video in portfolioActually
portfolio_video_idsounds like a variable storing an ID, not the actual custom field name. Have you searched your code for portfolio_video_id to see where it’s being used and what it stores? It’s very likely you do not have the correct custom field set.First in the Post Types of the plugin settings is the Portfolio post type listed? Second double check you have the correct custom field name. If you don’t see it by viewing the custom fields for your portfolio, it may be hidden.
In that case use a plugin like this to show the hidden fields http://wordpress.org/extend/plugins/show-hidden-custom-fields/
Forum: Plugins
In reply to: [Video Thumbnails] Feature imageFacebook decides based on the page content what to use as the image in the status update.
Your theme is most likely displaying featured images in posts. It may or may not have an option to turn this off.
You can try this, set your featured image to
display:none;then insert the URL into facebook and see if it finds the hidden featured image.Forum: Plugins
In reply to: [Video Thumbnails] Custom Thumbnail when none detectedThis is explained on the plugins home page, the function below as it says will echo a thumbnail URL or the default image located at wp-content/plugins/video-thumbnails/default.jpg if a thumbnail cannot be found. So replace that image with your custom image. Use the code below, when a thumbnail is not found it will show your image.
<?php video_thumbnail(); ?> will echo a thumbnail URL or the default image located at wp-content/plugins/video-thumbnails/default.jpg if a thumbnail cannot be found. Here is an example: <img src="<?php video_thumbnail(); ?>" width="300" />Forum: Plugins
In reply to: [Video Thumbnails] Not workingI think the videos must be embedded using embed code into your post content to be scanned correctly. I could be wrong though. But i’m not sure that the plugin will scan widget content for videos.
Do you mean you have a widget in a sidebar on the post pages?
Forum: Plugins
In reply to: [Video Thumbnails] don't workTwentytwelve may be displaying featured images in the post as well as your embedded video. That’s not a bug, it is just how the theme works. You will need to modify your template to display only the video.
Have you deleted the featured images from the post edit page first? Then have you deleted them from the Media manager? If the images still exist in WordPress it’s possible they are still attached to the post.
Forum: Plugins
In reply to: [Video Thumbnails] [Plugin: Video Thumbnails] iIs Making My Site Go SlowHi,
You should view the performance grade of your domain in Pingdom at http://tools.pingdom.com/fpt/
There are a some improvements which can be made to your site. This plugin only works when you manually execute it, if youtube, vimeo or other sites aren’t responding quickly that’s most likely the reason for and slowness.
It can also be your host, if it worked fine on one host and now on your hiphopvideo domain it’s slower it could be the server.
Forum: Plugins
In reply to: [Author Post Ratings] Are stars stored as custom fields?Ah there’s something I didn’t know about, hidden custom fields. Thanks for the quick reply Phillip!