haleeben
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Staff List] Error can't resolve hostHey Brett
It’s not just the analytics plugin but it’s all plugins and WordPress, can’t update anything. The only way I can update anything is to deactivate your plugin.
Forum: Plugins
In reply to: [Awebsome! Browser Selector] WP Supercache compatible?Hey James
From my testing so far it works great, great job.
Forum: Plugins
In reply to: [Awebsome! Browser Selector] WP Supercache compatible?Hey James
Looking forward to trying it out.
Thanks
Forum: Plugins
In reply to: [Simple Staff List] Thumbnail rather than full image?Hey Brett
Yeah that was it, I hadn’t changed the default template, thanks for the help.
Forum: Plugins
In reply to: [Simple Staff List] Thumbnail rather than full image?Hey Brett
is this if statement working
if(has_post_thumbnail()){ $photo_url = wp_get_attachment_image_src( get_post_thumbnail_id(), $image_size ); $photo_url = $photo_url[0]; $photo = '<img class="staff-member-photo" src="'.$photo_url.'" alt = "'.$title.'">'; }else{ $photo_url = ''; $photo = ''; }
cause even if the staff member doesn’t have an image it still outputs
an <img> tag but without the src.Forum: Plugins
In reply to: [Simple Staff List] Thumbnail rather than full image?I’ll +1 for adding this to the next release.
Forum: Plugins
In reply to: [Simple Staff List] Simple Staff List messing with the admin meta boxesDone and Done ??
Forum: Plugins
In reply to: [Simple Staff List] Simple Staff List messing with the admin meta boxesWow that was quick. Not a problem and thanks for the great plugin.
It’s nice to see a plugin author that responds and resolves the support threads.Cheers
Forum: Plugins
In reply to: [Cloudinary - Deliver Images and Videos at Scale] 404 error. Why?I’m having the same problem.
Cloudinary Version 1.0.2
WordPress Version 3.5.1Add there is no Javascript errors showing in Chrome console when saving my url.
Forum: Plugins
In reply to: [Awebsome! Browser Selector] WP Supercache compatible?Hey Raul
I gave it try with WP Super Cache and it doesn’t work, it stores the class name’s for the browser when the page is cached.
I tried with W3TC using the Page Cache setting enabled and it didn’t work, it did the same thing.
bummer ??Forum: Plugins
In reply to: [Awebsome! Browser Selector] WP Supercache compatible?G’Day
Any news on whether it is compatible with WP Super Cache or Hyper Cache?
Thanks
Forum: Plugins
In reply to: [WooCommerce] Woocommerce adds 1 extra item to cartI was using version 1.6.5.2 when I had the problem and to fix it I added this code to the woocommerce-functions.php file around line 361. But this has changed alot since then.
// If we added the product to the cart we can now do a redirect, otherwise just continue loading the page to show errors if ($added_to_cart) { $url = apply_filters( 'add_to_cart_redirect', $url ); // If has custom URL redirect there if ( $url ) { wp_safe_redirect( $url ); exit; } Add this code to fix the problem // Redirect to cart option elseif (get_option('woocommerce_cart_redirect_after_add')=='yes' && $woocommerce->error_count() == 0) { wp_safe_redirect( $woocommerce->cart->get_cart_url() ); exit; } }
I think the best thing to do is to submit a bug through Github and see if Mike can help.
https://github.com/woothemes/woocommerce/issuesForum: Plugins
In reply to: [WooCommerce] Woocommerce adds 1 extra item to cartHey angryjedi
What version are you using? I had the problem with version 1.6.5.2 but I think it’s been fixed in version 1.6.6, try updating woocommerce, see if that works.
Forum: Plugins
In reply to: [WooCommerce] How can i get my IPN works in woocommerce paymentThank you queenielow and Nadun
Emails notifications are now working for me, hope the guys at Woo read this thread.
Adding
define('ALTERNATE_WP_CRON', true); in wp-config.php
worked for me, thanks for the tip.