jamarwright
Forum Replies Created
-
Forum: Plugins
In reply to: [Firelight Lightbox] [Plugin: Easy FancyBox] Easy Fancybox and Gravity FormsI’m having trouble getting the light box to size to what I’ve set for the inline style with gravity forms. I have the “inline” option checked in settings -> media for the plugin, but the size isn’t readjusting.
I feel like my inline style is correct.
<a href="#fancyboxID-1" class="fancybox-inline" style="width: 500px; height: 800px;">contact the Curator of Education</a> <div class="fancybox-hidden" style="display: none;"> <div id="fancyboxID-1">[gravityform id="8" ajax="true"] </div> </div>
anyone have any feedback?
Forum: Hacks
In reply to: Querying Image Captions within the Search.phpForum: Fixing WordPress
In reply to: Body text wont show while embedding another webpage.welp, I installed the WP Iframe Embed Plugin and that fixed my issues! Hopefully this will help someone else.
Forum: Themes and Templates
In reply to: Show only X Category Posts on PageThanks for the help Michael. I’ll check out these links for sure
Forum: Themes and Templates
In reply to: Show only X Category Posts on PageWell, I think I’ve figured it out. I just moved the loop to the end of content div. That’s seems to have done what I was trying to do.
Forum: Themes and Templates
In reply to: Show only X Category Posts on PageThis is a great function. I’ve got it working properly on my site.
Is there a way to insert these posts below the page’s content instead of it just completely overiding the page’s content?
Here is the code on my page.php file
<div class="content"> <?php $catID = 0; if (is_page('Sessions')) { $catID=177; } if ($catID) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=$catID&paged=$paged"); } ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?>