Hello I'm using church revolution template 4.0 theme and my problem is that the embedded video is not showing up on the homepage it only shows blank page, but if you go to the post itself there's no problem and the video is showing up. Here's the code where I'm posting it up on the home page What do you think is the problem guys? Thanks!
Can we get a link to the post where the video is showing please? I have a feeling that the embed code is being broken by the the_content_limit function but without seeing the problem, there's little we can help with.
Not sure why you PM'ed me. To be honest, the url should have been in your first post in this thread. I can't help as the site is blocked from here. Someone else is going to have to help.
Huh? What made you say that the website is blocked here in DP? I didn't post the url here because I don't want to appear this thread in Google if someone search my website using the URL because my website has nothing to do with webmaster and I don't want my visitors to know the I had this problem in the past. That just it. People here are too suspicious Anyway thanks to you. Any other who can help me out here? Thanks!
The person who can best answer your question is the support group of Revolution theme. Anyhow, the reason why your video is not showing up is that, maybe, it is not being embedded in your page. Check the webpage's source, see if it's being embedded right, and from there you might be able to form a valid hypothesis as to why your site breaks. It might be a problem with custom fields (if the theme uses custom fields to embed videos) or other things.
You are probably only showing excerpts on your homepage, you will need to get into your template files, and change code in your "loop (php code that cycles through posts)" from <?php the_excerpt(); ?> to <?php the_content(); ?> maybe...
adbox thanks for your help. I searched <?php the_excerpt(); ?> on the files and there are only two files that appears to have that code. The "search.php" and "page_blog.php ". I tried to change it to <?php the_content(); ?> on both files but the video is not showing up still. Any other idea? Thanks again.
no none really. what does the source code show? (of the main page where the video should be embedded)
Hey I was able to fixed it at last! The problem is this line of code <?php the_content_limit(1000000, __("[]", 'studiopress')); ?> The limit is not reading the characters that are inside the embed code so what I did is change it to <?php the_content(__('', 'studiopress'));?> and that solved the problem Thanks for your effort on helping me out here.