Jessi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [HoneyPress] Slider Video & Image Header Max width to screenThank you soo much for all your help. I have learned a lot and have gotten pretty good, but these had me stumped. Appreciate you!
- This reply was modified 1 year, 10 months ago by Jessi.
Forum: Themes and Templates
In reply to: [HoneyPress] Slider Video & Image Header Max width to screenIncredible – this is the fix! Thank you for offering to help with the header image. I am ready!
Forum: Themes and Templates
In reply to: [HoneyPress] Slider Video & Image Header Max width to screenThis is fantastic – thank you! It’s working great. Only issue is when viewing on a phone, the video portion of the youtube frame has a dark margin on top and bottom of the video.. maybe because the height is set? Is there a way I can bring the video up higher so it looks like it fits better?
I tried to apply the same settings for the header images, but no luck 🙂
Appreciate you!
Forum: Plugins
In reply to: [Custom Post Type UI] Remove “archives:” from archive page titleOooh awesome! I’ll do just that then! Thanks so much for this info and workaround! I’ve learned lots 😀
Forum: Plugins
In reply to: [Custom Post Type UI] Remove “archives:” from archive page titleI was considering creating a custom archive page.. not the easiest option..but how do I make all the “stories” etc show on the page? Do I need to add a line to query the posts or something? Or is archives-stories.php enough to tell it to pull the stories posts? And how will I know the url for this archive page?
As for yhe bonus answer.. Holy crap! How did I not know about that!? Thats exactly what I was looking for, thank you!
Thx for your time and patience with me 🙂
Forum: Plugins
In reply to: [Store Locator Plus®] Map blankSure enough, after hours and hours – I post this and I figure it out right away lol
I had to check force load java. Why? No clue!
🙂
Yes i can. Theyre similar to the others. I changed the screen settings to only show “1” and now it shows 5 on pg 1 and 3 on pg 2… so weird :/
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Sorry, but nothing matchedhaving the same type of issue. nothing comes up when searching. does this mean it’s not possible with the theme, or is there something i can try?
http://demo6.quirkiwebsitedesign.com/about-us/
thanks in advance
Forum: Themes and Templates
In reply to: Unique latest postsolved that myself lol
on the second loop, add the offset=1. This query is telling the loop to only display 5 posts which follow the most recent post (1).
<?php query_posts('posts_per_page=10&offset=1'); ?>Forum: Themes and Templates
In reply to: Unique latest postany clue how to omit the last post from the second query? it is shown again (not sure if we can avoid this using this method)
Forum: Themes and Templates
In reply to: Unique latest postWoohoo there it is!
Not only have you solved my issue, but you’ve taught me something along the way!! =) thank you so much for your help
Forum: Themes and Templates
In reply to: Unique latest postOk so everything is there, except for the second loop, it’s only giving me the latest post again. Do I have to reset the query or something?
<?php query_posts('posts_per_page=1'); ?> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php dw_minion_entry_meta(); ?> </header> <?php if( has_post_thumbnail() ) : ?> <div class="entry-thumbnail"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a></div> <?php endif; ?> <div class="entry-content"> <?php the_content(); ?> </div> </article> <?php comments_template(); ?> <?php endwhile; ?> <?php else : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php dw_minion_entry_meta(); ?> </header> </article> <?php endwhile; ?> <?php else : ?> <?php get_template_part( 'no-results', 'index' ); ?> <?php endif; ?>Forum: Themes and Templates
In reply to: Unique latest postedsoltani, thank you for your help!!
I didn’t think I knew too much about php, but i think i could tackle this!! i’m going to give it a try and if i run into trouble, maybe you could see what im doing wrong – thanks!!
Forum: Themes and Templates
In reply to: Image Align IssueI just removed p from the headings so it doesn’t have the clear and added it on the next line, applying my font rule. But thanks for that. I am still learning and I don’t even know what clear means yet but I’m heading to google now to find out lol
Forum: Themes and Templates
In reply to: Image Align IssueThank you for finding that! Yes childthemes is on my list to tackle next.