Travis Poole
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: CloudFlare 502 Error on LogoutFixed! Just had to adjust Proxy Buffers and FastCGI Buffers.
Thanks!
Forum: Fixing WordPress
In reply to: Changing Theme on Live SiteThis seems a bit more complex than it should be. We self host our own WordPress Site.
Forum: Fixing WordPress
In reply to: Available Plugin Update Not ShowingTurns out it was a IPv6 issue. Disabled in networking on the machine and everything is fast now.
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Can no longer Refund after UpdatingNevermind. Figured it out.
Fixed. Had to enable SEO for content types. Not sure what happened there.
Forum: Plugins
In reply to: [WooCommerce] Reorder AttributesGot it thanks Caleb!
Forum: Plugins
In reply to: [WooCommerce] Reorder AttributesHi Caleb,
Its just the product-level custom attribute. So that is what I was curious about was if I could just reorder the text.
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Reorder AttributesOkay thanks.
I went to Products > Attributes > and the main product we have with its attributes are not listed there for some reason. Any ideas?
Forum: Plugins
In reply to: [WooCommerce] Unable to add Image to Product VariationActually mark this resolved. No issues.
The having to select the image twice threw us off completely.
Forum: Plugins
In reply to: [WooCommerce] Unable to add Image to Product VariationOkay we see what is going on now. You have to click it twice now for some reason. So you click the image logo and the photos box pops up and you select the image and click Use Image. Then you have to select it again to set it as the variation image.
The button looks off when you have to click Set Variation Image though and it looks off.
Forum: Plugins
In reply to: [WooCommerce] Unable to add Image to Product VariationCaleb,
We are getting Violation Forced reflow while executing JavaScript errors.
Forum: Plugins
In reply to: [WooCommerce] Unable to add Image to Product VariationOkay we will do that. I will report back on this.
Forum: Plugins
In reply to: [WooCommerce] Unable to add Image to Product VariationHello,
We do not have that plugin installed. We only have around 10-12 plugins and its all woocommerce related and affiliatewp typically so its all stuff built around woocommerce. We are going to be setting up a staging site tonight and testing. I will report back.
Forum: Plugins
In reply to: [WooCommerce] Product being displayed Twice.Okay thank you!
Forum: Plugins
In reply to: [WooCommerce] Product being displayed Twice.Issue was resolved with this:
For some reason, the “the_content” filter/function in wp wasn’t working properly, It was outputting the whole thing. I overrode the description.php in the theme and manually created the proper output
Correction:
<?php the_content(); ?>
with
<?php echo wpautop(do_shortcode($post->post_content)); ?>
Is this anything that needs further inspection?