mandirao
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Sandbox Featured Content Widget] Order by RANDOM not workingForum: Plugins
In reply to: [Genesis Co-Authors Plus] No Guest Avatars with Genesis 2 and Minimum ProDid either of you make headway on this issue? I’d love to solve the same problem!
I’m having the exact same problem. I am running Jetpack, but I do not have Photon enabled. Any other suggestions??
EDIT: It may not be the EXACT same, but it’s hard to say. When I clear my cache the photos show up. But if I come back to the site the next day the images again display as broken links. I can’t very well have our users refresh their cache on each visit! ??
My site is at: https://www.faultlinetheatre.org/ . The 2nd and 4th box are the UPWs in question.
I’ve tested on Chrome, Firefox and Safari, on my Mac, iPad and Android all with the same results. I’m running WordPress 3.5.1.
I otherwise love this plugin! I really don’t want to have to look elsewhere.
Actually, I’m not sure if this the best way but I seem to have made it work (woot!) just by creating:
a new output conditional:
<?php if ( $instance['show_cat'] ) : ?> <p class="post-cat"> <?php the_category(); ?> </p> <?php endif; ?>
a new instance:
$instance['show_cat'] = $new_instance['show_cat'];
and a new widget checkbox:
<p> <input class="checkbox" id="<?php echo $this->get_field_id( 'show_cat' ); ?>" name="<?php echo $this->get_field_name( 'show_cat' ); ?>" type="checkbox" <?php checked( (bool) $instance["show_cat"], true ); ?> /> <label for="<?php echo $this->get_field_id( 'show_cat' ); ?>"><?php _e( 'Show category' ); ?></label> </p>
I would still appreciate any improvement suggestions you might have.
Otherwise, thank you so much for creating something that 1. Works, and 2. I was able to modify easily with little know-how!