johnsamwallace
Forum Replies Created
-
Plugin works consistently if not perfectly.
Forum: Plugins
In reply to: WooCommerce Smart Coupons vs WooCommerce Gift Certificates Proscruffy,
Did you get your concerns addressed? I’m considering purchasing this plugin.
Thanks.
Forum: Plugins
In reply to: [Aviary Image Editor Add-on For Gravity Forms] Wait a secondDisabled AJAX and now it works in Firefox. Still getting the “Wait a Minute” in Safari.
Forum: Plugins
In reply to: [Aviary Image Editor Add-on For Gravity Forms] Wait a secondGetting the same effect as jakenyman when I try to upload in Safari. Previous experience was in Firefox.
Forum: Plugins
In reply to: [Aviary Image Editor Add-on For Gravity Forms] Wait a secondI’m using Gravity Forms with Genesis (all latest versions) and have just installed this plugin, which, if I can get it working, will be the answer to my dreams. I can access the editor and edit the photo fine. However, when I close the editor, it appears that my form has already started to load but the spinner next to the submit button just keeps spinning around forever. The form never processes successfully. Everything was working fine before I installed the plugin. I feel like I must have missed a step somewhere. You can check it out at http://carylocal.org/add-your-business/. The site is messy; we’re still working on the plumbing. Thanks.
Forum: Hacks
In reply to: MailChimp Embed Not Showing Success ResponseI would like to get the pop up to fade a couple of seconds after the success message appears.
I tried using a callback function but I’m no expert at this:
$(‘#mce-‘+resp.result+’-response’).html(resp.msg, function() { $(‘#mc_embed_signup’).delay(2000).fadeOut(400); });
No luck. Anyone see an obvious error?
Thanks.
Forum: Hacks
In reply to: MailChimp Embed Not Showing Success ResponseThis bug is starting to get old. Does anyone know if MailChimp is planning to update their evil popup code to compatibility with jQuery 1.6.1?
Apparently the bp_has_groups loop is paginating after 20. Try this (Around line 31 in the bp-registration-groups.php file).
<?php $args = array( 'type' => 'alphabetical', 'per_page' => 52 /* or whatever number you want */ ); ?> <?php if ( bp_has_groups($args)) : while ( bp_groups() ) : bp_the_group(); ?>The loop is still cutting off at 20 groups. I looked at the code and can’t figure out why. Any clues?
Forum: Plugins
In reply to: Simple Facebook Connect eventsadd “date_default_timezone_set(“America/Los_Angeles”);” after “function sfc_upcoming_event_output($event) {“. Set the timezone to the same timezone that hosts your server.
Forum: Plugins
In reply to: add variables from a widget to wp_footerI’m also having this problem. Used:
function twitter_java() { ?> <script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script> <script type="text/javascript" src="http://twitter.com/statuses/user_timeline/<?php echo $twitterID; ?>.json?callback=twitterCallback2&count=4"></script> <?php } add_action('wp_footer', 'twitter_java');It works on my local server but not on any remote servers. Funny, when I put the java in the body, next to the call, it works on the remotes but loads slooowwwly. Any help would be appreciated.
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Thematic SupportAs a rule of thumb, I usually follow the trajectory of likely fixes/upgrades. This would mean hacking the plugin.
Forum: Themes and Templates
In reply to: remove redundant page title in ThematicTry this is you want to remove the title from a static front page and leave it on other pages. This also resolves the duplicate h1 tags.
function remove_postheader_posttitle($title) { if (is_front_page()) { return (''); } else { return ($title); } } add_filter('thematic_postheader_posttitle', 'remove_postheader_posttitle');