sara cannon
Forum Replies Created
-
Forum: Plugins
In reply to: [Autoset Featured Image] only working for new uploaded imagesthis happens to me as well
try changing
<script> $("#responsive_headline").fitText(1.2); </script>
to
<script type="text/javascript"> jQuery(document).ready(function() { jQuery("#responsive_headline").fitText(1.2); }); </script>
Forum: Plugins
In reply to: [Posts 2 Posts] How to list all the other related PostsIndeed! thank you!
Forum: Fixing WordPress
In reply to: Menu – Incorrect Permalink for Custom Post Typehow did you remove the parent? I’m looking for that. ??
Forum: Plugins
In reply to: [Plugin: Posts 2 Posts] function to display related posts on frontend?Just thought I’d list generically what I did with the latest version of the plug-in after wandering around and looking at what other people have done. Thought I’d post in-case anyone else wanders upon this thread like I have…
global $post; $sc_query = new WP_Query( array( 'suppress_filters' => false, 'post_type' => 'artist', 'connected' => $post->ID) ); if($sc_query->have_posts()) : echo '<ul>'; while($sc_query->have_posts()):$sc_query->the_post(); $sc_output =''; $sc_output .= '<li><a href="' . get_permalink($post->ID) . '">'; $sc_output .= $post->post_title; $sc_output .= '</a></li>'; echo $sc_output; endwhile; echo '</ul>'; endif;
Forum: Fixing WordPress
In reply to: How to add vcard (.vcf) link to a post or page.You can use the PJW Mime Config plugin by westi to add mime types. Maybe that will help?
https://www.ads-software.com/extend/plugins/pjw-mime-config/
Forum: Themes and Templates
In reply to: How to center menu in Twenty Ten theme?thanks carlosgonca! that works for me too.
Forum: Themes and Templates
In reply to: How to center menu in Twenty Ten theme?we’re talking about twentyten. so, do you mean in
#access .menu-header, div.menu { text-align:center; }
and
#access .menu-header ul, div.menu ul { display:inline-block; }
because that doesn’t work really. it leaves the menus in the drop-down position.
I’m going to work on this and get back to y’all unless I misunderstood.
Forum: Fixing WordPress
In reply to: [WP 3.0] Menus item disappears after adding, does not save itOK so I’m slowly beginning to realize that WP trac is better than these forums for troubleshooting. reference this ticket: https://core.trac.www.ads-software.com/ticket/14134 – the problem seems to be with your server and the max_vars it allows. I’ve contacted mine and hopefully the issue will be resolved.
Forum: Fixing WordPress
In reply to: [WP 3.0] Menus item disappears after adding, does not save itI am having this problem as well. I cant seem to get more than 16 menu items either in a child theme of twentyten. I have deactivated and removed all the plug-ins just in case there was a conflict and that didn’t help either.
Forum: Developing with WordPress
In reply to: [Plugin: NextGEN Gallery] Error: Exceed Memory LimitThis worked for me thank you
Uncomment
@ini_set(‘memory_limit’, ‘128M’);
in gd.thumbnail.inc.phpForum: Plugins
In reply to: [Plugin: NextGEN Gallery] Insert text link to Slideshow?me too. I’ve been searching and can’t find anything either. Does anyone know? Or, can you recommend a gallery that does this?