urlogos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post meta description is not shown on facebook when sharing linkI been getting this same problem… to explain Nik solution. If you got to wordpresses Settings > Permalink > make a change to the permalink structure if will start to recognize the breaks between posts.
I wish I have more to add here still searching for the root of this problem? I will post back when I figure it out.
Searching for info on this too… I have developed a one-page-scroll site and the ‘og:description’ seems to be defaulting to last post’s meta description doesn’t really make sense to have it like that.
Is there a work around for this wouldn’t produce better meta to have ‘index’ description to be seperated from post description.
I’ve dev a child-theme from Automattic’s Toolbox theme using http://ww.wp.xz.cn/extend/plugins/wordpress-seo/
for handling open graph and seo descriptions.Looking for solution to fix?
Thanks,
jeanLook in the header.php file you need only this for your site title tag.
<title><?php wp_title(”); ?></title>
-or-
look in title settings and try force rewrite titles.
hope this helps.
Jean
Forum: Plugins
In reply to: [Firelight Lightbox] White box on easy-fancybox videoThanks, Ravan! Here’s the resource I found that helped me figure this out.
http://css-tricks.com/prevent-white-flash-iframe/
Best regards,
JeanForum: Plugins
In reply to: [Firelight Lightbox] White box on easy-fancybox videoI think I’ve got it!
Forum: Plugins
In reply to: [Firelight Lightbox] image and text in article need separationSorry, no luck there.
Interesting it links to the “video-thumbnail” now and then you have to click again, which is on overlay to get go to the (resized) play video. 1 too many steps! Another thing to note is that the bottom border did disappear. That helped.
I’m wondering if there is another approach I can take from here. The real goal is just to separate the video from the content that follows. For example, user would post a video and then write a bit of info about it maybe technical or inspiration for doing the film.
When the user clicks to view the video, that’s what I am using the plugin for, to focus just on the video no need for other stuff in the post like the technical info and stuff like that.
Jean
Forum: Plugins
In reply to: [Firelight Lightbox] image and text in article need separationRavan
Thanks for being so helpful.
Here is a link to the site: http://www.mishnoon.com/
On the index I have the EASY FANCYBOX plugin in use. I am getting the post article text below the video only in the image overlay. It would be best to get this to display outside the overlay below the thumbnail and outside in the columns.
Any idea on what to do here would be a great help.
Thanks,
JeanForum: Plugins
In reply to: [Firelight Lightbox] image and text in article need separationPlease ignore the last part I about the “off-click” I got that to work.
Thanks again!
Forum: Plugins
In reply to: [Firelight Lightbox] image and text in article need separationThank you for your response.
Strangely, I tried to fix the border by altering the title position
from inside to outside with no effect.any other suggestions? Also, when I had the corner “X” set to off it seemed to be allowing a user to off-click from the overlay to get it to close. Somehow while these adjustments were being made I lost that functionality – now using x=function over form.
Sorry to stack these questions but It was nice having these effects, the “X” set to off and trying to streamline the overlay to show only the video.
Jean
Thanks for the help.
JeanForum: Plugins
In reply to: [Firelight Lightbox] image and text in article need separation// here is an example of the loop
<?php query_posts('cat=6,7,8&showposts=3'); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <article <?php post_class('post-container') ?> id="post-<?php the_ID(); ?>"> <header> </header> <a class="fancybox" href="#data<?php the_ID(); ?>"><img src="<?php video_thumbnail(); ?>"width="264" height="149" /></a> <div style="display:none"><div id="data<?php the_ID(); ?>"><?php $content = get_the_content(); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); echo $content; ?></div></div> <footer> <span class="category">Posted in <?php if (function_exists('parentless_categories')) parentless_categories(','); else the_category( ', ', 'multiple' ); ?></span> <?php the_tags('<span class="tags">Tagged as ', ', ', '</span>'); ?> </footer> </article> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>