tubegtld
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [.TUBE] theme not display as per as demoThat screen grab image is broken, but anyway… the theme doesn’t really come with “default” content or images, you’ll need to add your own.
And you can use the “Customizer” to choose colors and and set up an image for the homepage.
Here’s a full page of docs on how to Customize the theme.
Hope that helps.
P.S. Here are some examples of other sites using the theme so you can get a better feel for what it looks like…
Forum: Plugins
In reply to: [.TUBE Video Curator] Broken Twitch Images and Embed VideoAlright then. Was kinda hoping is WAS a conflict :/
Favor… can you please try adding API keys for Vimeo and/or YouTube and see if you have the same issue with those?
If so, I think it’s fair to say that it’s a server configuration or permissions issue.
Not that it helps you at all, but the functionality is testing and working in our local dev and production environments (on WP Engine).
I also tested it on my personal site (on mediatemple) where it’s working as well.
Forum: Themes and Templates
In reply to: [.TUBE] theme not display as per as demoCan you please be more specific about what you’re seeing?
Perhaps post a screengrab?
Forum: Plugins
In reply to: [.TUBE Video Curator] Broken Twitch Images and Embed VideoWell, sadly, need to start with this…
Please disable all other plugins and switch to the TwentySeventeen theme to determine if the issue persists after importing fresh videos.
- This reply was modified 7 years, 4 months ago by tubegtld.
Forum: Plugins
In reply to: [.TUBE Video Curator] Import of images from YouTube stopped workingMarking this as resolved due to inactivity.
Forum: Plugins
In reply to: [.TUBE Video Curator] tube curator problemMarking this as resolved due to inactivity.
Forum: Plugins
In reply to: [.TUBE Video Curator] Playlist finder not working ?Marking this as resolved due to inactivity.
Forum: Plugins
In reply to: [.TUBE Video Curator] Broken Twitch Images and Embed VideoThumbnails within the curator admin are “hotlinked” from the video source site, so that’s why they’re working.
Re: failed images, can you please do all of the following:
1) Confirm that you can upload photos properly within the media library
2) Confirm that your server / PHP install supports
file_get_contents
3) Check your PHP error log to see if there is anything that may be associated with this to provide insight
Re: broken / missing embed
Please provide the value for the
tube_video_oembed_url
custom field on an affected post.Forum: Plugins
In reply to: [.TUBE Video Curator] Custom Post TypeSure.
First, create your custom post and make sure it supports thumbnails.
Then, go to
TUBE Video Curator > Plugin Settings > Import tab
in your admin.The first setting
Default Post Type
should have a dropdown with all eligible post types.If you’re doing it programmatically for whatever reason, the option name is
tube_vc_default_import_post_type
so you can basically change that as desired beforecreate_tube_video_post
is called.Or, perhaps more conventionally, you could set it on the
wp_insert_post_data
filter.Going to mark this as resolved.
Forum: Plugins
In reply to: [.TUBE Video Curator] Youtube Autosync stopped workingHello –
I’m sorry but at this time we’re not really able to troubleshoot specific plugin conflicts, and I don’t have any experience with the particular plugin so can’t say for sure.
At a high-level the Curator auto import needs WP_Cron to be able to run, needs to make database updates, and add images to the uploads directory. If the security plugin is preventing any of those things, it likely won’t work.
Did you see anything notable in your PHP error log?
Forum: Themes and Templates
In reply to: [.TUBE] make image posts smallerWell, still not 100% sure I know what you’re hoping to do.
It seems like you might want to adjust the width of the content area on certain pages, which will result in smaller images.
To do so, you can drop a filter in your functions.php file.
add_filter( 'tube_filter_content_columns', 'mytube_content_columns' ); function mytube_content_columns( $masthead_columns ) { // optionally test here for specific pages you want // to do this on using conditional tags // https://codex.www.ads-software.com/Conditional_Tags if ( ! is_home() ) return; // return the desired column setup // this example has narrower columns than defaults return 'col-xs-10 col-xs-push-1 col-sm-8 col-sm-push-2'; }
Forum: Themes and Templates
In reply to: [.TUBE] make image posts smallerSorry, but I’m still not clear on your goal.
Can you please use a pen / Sharpie and draw a picture or sketch (like a “wireframe”) of what you’d like the ENTIRE page content to look like?
Forum: Themes and Templates
In reply to: [.TUBE] make image posts smallerCan you please provide a sketch of what you’re hoping it will look like?
Forum: Themes and Templates
In reply to: [.TUBE] make image posts smallerDo you mean a smaller file size (e.g. 300kb) or file height and width (e.g. 300x200px) or do you mean you simply want them to appear smaller on the page?
Forum: Plugins
In reply to: [.TUBE Video Curator] Save YT vid url to post object.Here’s revised code that grabs the video URL and uses it to link over…
if ( $query->have_posts() && $query != NULL) : echo '<div class="row">'; while ( $query->have_posts() ) : $query->the_post(); $post_ID = get_the_ID(); $post_thumbnail = get_the_post_thumbnail_url($post_ID); $post_title = get_the_title( $post ); // get the video URL for the post $video_url = get_post_meta( $post_ID, 'tube_video_oembed_url', true); echo '<div class="item-portfolio col-sm-6 col-md-3 col-lg-3">'; echo '<div class="bg-hover"><p><a href="'.esc_url($video_url).'">'.$post_title.'</a></p><i class="fa fa-play-circle-o absolute-center fa-vid-play" aria-hidden="true"></i></div>'; echo '<img class="vid-item item-portfolio" data-id="'.$post_ID.'" src="' . $post_thumbnail . '"></div>'; endwhile; echo '</div>'; /* Restore original Post Data */ else : __return_zero(); endif;