yanks789
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pagination ContinuousMy site is using
<div id="page-navigation"> <center><?php if(function_exists('wp_pagenavi')) : wp_pagenavi(); ?> <?php else : posts_nav_link(' ', __('Next', 'Vesta'), __('Previous', 'Vesta')); echo '<div class="clear"></div>'; endif;?></center> </div>
Forum: Fixing WordPress
In reply to: Open Post in Light Box, Not New PageI went with the Shadowbox JS plugin. There wasn’t really anything in the settings that I needed to modify.
I put a link around the whole box….primarily because my case called for it to work more as a button than a “read more”. So I added
<a href="<?php the_permalink() ?>" rel="shadowbox">
to the archives template but basically you’d end up putting rel=”shadowbox” wherever you’d like it to display as a lightbox/pop-up.I hope that helps!
Forum: Plugins
In reply to: Display Attached Images as Slideshow in LoopI worked around this by installing Slideshow, along with advanced custom fields and advanced custom fields: shortcode field.
This allowed me to create the individual slideshows needed for each post, then insert a shortcode for the slideshow into the custom field. I then worked the php code into the loop to pull the shortcode depending on what post they were on.
Quite a work around but actually works quite well.
Forum: Plugins
In reply to: [Slideshow] only !slideshow_deploy! displays when i use shortcode with AFCI had tried the Advanced Custom Field: Shortcode Field and still had the !slideshow_deploy! displaying. I tried the “Avoid content filter” option on yes and no and it didn’t work.
Thank you so much for supplying the code that needed to be inserted into the function.php file as it worked!!!! Thanks for the help ??
Forum: Plugins
In reply to: Display Attached Images as Slideshow in Loopbump
Forum: Plugins
In reply to: [Custom Post Type UI] "No entries found" in post categoriesI was having the same problem. I used the method mentioned above and it worked perfectly! Thank you, I had been searching for hours!!!
Forum: Themes and Templates
In reply to: Container Background Color Height Not Going to FooterThat worked!!! Thank you so much Andrew ??
Forum: Themes and Templates
In reply to: Container Background Color Height Not Going to FooterThank you for the suggestions. I resolved some of the markup issues and removed the div tag as you suggested. However, I am still having the problem. The problem appears to be with the height not registering 100% of the content/sidebar. If I remove the min-height the background color does not display.
Forum: Plugins
In reply to: [Responsive Slider] [Plugin: Responsive Slider] Not Sliding – Remains StaticThanks, that’s too bad it doesn’t work. Guess I’ll look for another as well.
Forum: Plugins
In reply to: [Responsive Slider] [Plugin: Responsive Slider] Not Sliding – Remains StaticHey! How were you able to get this working? I am having the same problem, also using the twenty eleven theme. Uninstalling other plugins didn’t work.
Forum: Themes and Templates
In reply to: Change style for last post on custom pageThank you, this worked. I created .post-item and made the divider a background image to the bottom center and removed the .news-divider class. I then made .post-item:last-child and set background to none and we’re good to go.
Thank you for your help!!
I am pretty familiar with WordPress and coding but am not familiar with the action hooks and making it work with the existing plugin. Can you help me with the action hooks? Or give me a little direction on how to go about this?