Forum Replies Created

Viewing 15 replies - 181 through 195 (of 221 total)
  • Theme Author tubegtld

    (@tubegtld)

    That 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…

    https://www.eyemakeup.tube/
    https://www.gamingpc.tube/

    Plugin Author tubegtld

    (@tubegtld)

    Alright 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.

    Theme Author tubegtld

    (@tubegtld)

    Can you please be more specific about what you’re seeing?

    Perhaps post a screengrab?

    Plugin Author tubegtld

    (@tubegtld)

    Well, 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.
    Plugin Author tubegtld

    (@tubegtld)

    Marking this as resolved due to inactivity.

    Plugin Author tubegtld

    (@tubegtld)

    Marking this as resolved due to inactivity.

    Plugin Author tubegtld

    (@tubegtld)

    Marking this as resolved due to inactivity.

    Plugin Author tubegtld

    (@tubegtld)

    Thumbnails 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.

    Plugin Author tubegtld

    (@tubegtld)

    Sure.

    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 before create_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.

    Plugin Author tubegtld

    (@tubegtld)

    Hello –

    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?

    Theme Author tubegtld

    (@tubegtld)

    Well, 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'; 
    
    }
    
    
    Theme Author tubegtld

    (@tubegtld)

    Sorry, 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?

    Theme Author tubegtld

    (@tubegtld)

    Can you please provide a sketch of what you’re hoping it will look like?

    Theme Author tubegtld

    (@tubegtld)

    Do 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?

    Plugin Author tubegtld

    (@tubegtld)

    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;
Viewing 15 replies - 181 through 195 (of 221 total)