Shawn Williams
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Itemized ExportsFor anyone looking, I decided to go with Advanced Order Export For WooCommerce
Forum: Plugins
In reply to: [Pricing Deals for WooCommerce] No Cache Cookie being setHi,
Thanks, I opened a ticket.
Forum: Plugins
In reply to: [Pricing Deals for WooCommerce] No Cache Cookie being setHi,
This issue appears if the pricing deals plugin and woocommerce are the only plugins installed. Additionally I get this message only when the pricing deals plugin is installed.
“A PHP session was created by a session_start() function call. This interferes with REST API and loopback requests. The session should be closed by session_write_close() before making any HTTP requests.”On further investigation I found the following code in vt-pricing-deals.php on line 52
if(!isset($_SESSION)){ session_start(); header("Cache-Control: no-cache"); header("Pragma: no-cache"); }
Please advise as to the purpose of this no-cache header and whether removing it will effect the plugin functionality.
Thanks
- This reply was modified 4 years, 1 month ago by Shawn Williams.
Hi @wfadam
I’ve sent the report.
Hi @wfadam
I’ve tested with the Use the X-Forwarded-For HTTP header. option but the issue still persist. Please advise as to what if anything can be done to get an accurate detected ip while using the WAF from Signal Sciences.
Thanks
Hi @wfadam
I did play around with these settings initially, all settings detect a single ip except for the option Use the X-Forwarded-For HTTP header. Only use if you have a front-end proxy or spoofing may result.. With this option selected I get multiple detected ips, the first ip listed is my ip, which is the correct detected ip, but then the single ip is listed in bold twice after this ip.
Being that essentially 2 ip’s are being detected is there a priority to the detected ip’s?
I will test a lockout to determine whether this is the appropriate setting and update with my findings.
Where did you end up posting this error, and did you get it resolved? Thanks in advance.
Forum: Plugins
In reply to: [Revisionize] Revionize treating original post as backup revisionsI was able to resolve this issue by removing the custom meta data added by revisionize from the post meta. Deleting _post_revision_of and _post_original from the affected post set those post back to their correct status.
Hi
Did you figure this out, I am also unsure of how group selling works.
Having this exact same issue, did you discover what it could be? I have the site on a staging environment and there is no issue, on my live server the checkout is broken. Odd
Forum: Hacks
In reply to: woocommerce display image captions in single-product thumbnail displayThe solution
Add the caption as a span
add_filter('woocommerce_single_product_image_thumbnail_html', 'thumb_add_caption', 10, 4 ); function thumb_add_caption( $html, $id, $parent, $class) { $attachment = get_post( $id ); $img_cap = "<div class=\"img-cap\">$html<span class=\"cap-text\">$attachment->post_excerpt</span></div>"; return $img_cap; }
This bit of css to move caption to the bottom.
.cap-text { position: relative; left: -102px; top: 129px; font-size: 12px; }
Forum: Hacks
In reply to: woocommerce display image captions in single-product thumbnail displayHey bcworkz
I got this to work however I would like the caption to be at the bottom of the thumbnail, and currently it is located at the top right.
My question is, is there anything in the code that determines the position?. It seems as if the caption is echoing before the thumbnail, how can I echo it at the bottom of the thumb, currently I have the code pasted into my function.php file
Thanks in advance for any help.
Hi
I am having a similar if not the same issue. My gallery id’s are unique but identical galleries are displaying on different pages.
I am using shortcodes
Is there a list of plugins that effect the gallery that can be found somewhere?
Any help on this would be much appreciated.
Hi
I am having a similar if not the same issue. My gallery id’s are unique but identical galleries are displaying on different pages.
I am using shortcodes
Is there a list of plugins that effect the gallery that can be found somewhere?
Any help on this would be much appreciated.