hyphenstudio
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Instollation IssueYou should go through FTP to find that folder and delete it – most likely an old installation that didn’t get properly removed.
Once deleted you should be able to install the plug-in again.
Forum: Fixing WordPress
In reply to: Pull A Single Post Prior To Running wp_queryThank you Michael – I thought about multiple loops, but not sure if this will fit my solution as the content displayed needs to be all in rows – I need the owner listed as the first result in row 1 and then the rest of the employees listed out after in multiple rows. Here is what I have currently:
<div class="row team-row"> <?php add_filter( 'posts_orderby', 'posts_orderby_lastname' ); $loop = new WP_Query( array( 'post_type' => 'team', 'location' => $location->slug ) ); ?> <?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <div class="col-md-2 team-member"> <?php the_post_thumbnail('medium'); ?> <h3 class="entry-title"><?php the_title( '' ); ?></h3> <span class="team-position"><?php the_field('position'); ?></span><br /> <span class="team-phone"><?php the_field('phone'); ?></span><br /> <button class="btn btn-small team-btn" data-toggle="modal" data-target="#team-<?php the_ID(); ?>"> View Bio </button> <div class="modal fade" id="team-<?php the_ID(); ?>" tabindex="-1" role="dialog" aria-labelledby="team-<?php the_ID(); ?>Label" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> <h4 class="modal-title" id="team-<?php the_ID(); ?>Label"><?php the_title( '' ); ?></h4> </div> <div class="modal-body"> <div class="entry-content"> <?php the_content(); ?> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> </div> </div> </div> </div> </div> <?php endwhile; ?>I’ve tried this as well but it doesn’t seem to correct anything. There is also an issue with the keyword entry on this. If I enter “web,design,canada” the plug-in removes the commas and then expects to see “webdesigncanada” in the slug, description and page title.
Any help from one of the plug-in authors?
Forum: Themes and Templates
In reply to: Variable Width Footer ColumnsThanks. I knew it had to be out there somewhere – just didn’t know where to start looking!