graphicbear
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Share Buttons Adder] share buttons not showing on posts on homepageI’m not sure how to get them to appear on the homepage using the plugin settings, but I just added this code to the home page template file:
<?php echo do_shortcode('[ssba]'); ?>So I solved my own problem. The word ‘true’ causing the issue. Sometimes you have to take a step back and then return to it with fresh eyes.
For reference, here is the correct code I used:
<?php $prev_post = get_previous_post(); if($prev_post) : ?> <a href="<?php echo get_permalink( $prev_post->ID ); ?>"><?php echo get_the_post_thumbnail($prev_post->ID, 'thumbnail', array(150,150)); ?></a> <?php previous_post_link( '<div class="nav-previous"><h2>' . __( 'Previous post', 'theme' ) . '</h2>%link</div>', _x( '%title', 'Previous post link', 'theme' ) ); ?> <?php endif ; ?> <?php $next_post = get_next_post(); if($next_post) : ?> <?php next_post_link( '<div class="nav-next"><h2>' . __( 'Next post', 'theme' ) . '</h2>%link</div>', _x( '%title', 'Next post link', 'theme' ) ); ?> <a href="<?php echo get_permalink( $next_post->ID ); ?>"><?php echo get_the_post_thumbnail($next_post->ID, 'thumbnail', array(150,150)); ?></a> <?php endif ; ?>Forum: Plugins
In reply to: [List category posts] Pagination numbers listed verticallyIt needs to be styled with CSS
Forum: Plugins
In reply to: [Simply Instagram] cannot set images to size other than thumnail.I’ve encountered the same problem!
I use the shortcode in the page and regardless of the setting it shows up as 150px x 150px images. What a hassle, but will try a different Instagram plugin is this can’t be resolved.Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 doesn' t workOpen the Contact Form. Verify the email address listed there is correct.
Forum: Plugins
In reply to: [Contact Form 7] How to style the contact form 7 like this?Install Firebug or similar developer add-on for your browser. Inspect the element (label, input box, etc) and it will show what the Class is named. Then add that Class element to your CSS file and style it accordingly (width, float, etc). You have to style the form as it’s outputted without tables.
esmi: Thanks for the quick reply. Do you know if any plugins would be able to modify editor users to have some the admin access capabilities? Or any other way to resolve such an issue? Thank you.
I’m not sure if this might help:
I tried Easy FancyBox and it had the same problem. I thought it was a theme conflict, but it’s actually because I have captions for each image.
I have a caption for each image, and then inserted it into the page. WordPress puts a [caption id="" align="alignnone" width="133"] [/caption] tag around the image link when there’s a caption. However, the plugin seems to automatically show the caption, even without these tags. The Solution: remove these WordPress [caption] tags and the duplicate slide problem disappears. Well, that worked for me anyway.. and I kept with Easy FancyBox, so I’m assuming this would fix Lightbox Plus, but not sure.
I hope this was of help to someone. I know it annoyed me for a while.
The code is like this:
<a href="images/image-1.jpg" rel="lightbox[roadtrip]">image #1</a> <a href="images/image-2.jpg" rel="lightbox[roadtrip]">image #2</a> <a href="images/image-3.jpg" rel="lightbox[roadtrip]">image #3</a>Yes, I noticed this as well. I’m wondering if there is a fix for this?