dannykater
Forum Replies Created
-
No please, wait! I’m still working on it and still need assistance. Will come back with the required info as soon as possible.
Danny
Hi, yes i already worked out it is caused by Yoast as the problem doesn’t persist when i turn Yoast SEO off. Thanks!
Forum: Plugins
In reply to: [MANGOPAY for WooCommerce] Missing PersonTypeYes, i use a custum registration page. On which action hook is this “necessary information” automatically created? Then i’ll add an do_action on the custom registration page.
Thanks.
I also have this problem. When a user doesn’t have a wallet yet (wallet is only created when the user profile is opened in WP) then he can’t submit the bank form from front-end.
Thanks.
Forum: Plugins
In reply to: [MANGOPAY for WooCommerce] My admin account cant MANGOPAY Payout WPThis was caused by some commission lines that didn’t have connected orders/products anymore because they were removed from WP/database. So i solved it by deleting commission lines from the DB that were “corrupt”.
Maybe you can fix this for a future version?
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Product count wrongJan,
This is my topic and i’m already subscribed to the topic. I’m only talking to yithemes and i’ve not added anyone else in?
How do i know the person i’m talking to will read my message if i don’t @ them?
Thanks.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Product count wrongHi @yithemes,
Tried that, didn’t fix the problem. Another good example: https://surfsnb.com/product-category/kitesurf/boards-kitesurf/
Thanks.
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Product count wrongHi @yithemes,
Thanks for the answer, but the problem has not been fixed yet. For example: https://surfsnb.com/product-category/windsurf/sails-windsurf/freeride-sails/
Thanks.
Forum: Plugins
In reply to: [W3 Total Cache] mfunc and wp_list_comments()It seems like global $post, $product doesn’t work anymore after it’s cached?
Eventually i got it working by retrieving the current URL with
$actual_link = (isset($_SERVER['HTTPS']) ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";,getting the post ID based on that URL and with the post ID I was able to rebuild the wp_list_comments() function.
Any better way of doing this?
I also get the Postman error with 3.0.0-rc2.0.0…
All the emails I send outside of Mailpoet are not in HTML anymore, just get:
Messaf025e@helpdeskoostenrijk.nl> a65811f025e@helpdeskoostenrijk.nl> X-Mailer: PHPMailer 5.2.22 (https://github.com/PHPMailer/PHPMailer) MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="b1_0e88ae63a2782b34c37d2a65811f025e"etc. etc.
1) Thanks for your answer, i’ve used fragment cache on 2 locations already.
2) Did that, no difference.
It seems like the post_id can’t be retrieved anymore from the cached page. That’s why the comment_form is not showing up after the page is cached.
Any idea how to get the post ID in a function from a cached page?
Forum: Plugins
In reply to: [W3 Total Cache] How to exclude a subdirectory and all it’s page from CacheShould be: /test*
Examples (Never cache the following pages):
Do not cache page/directory and sub pages /directory*
Do not cache pages under a directory /directory/.+
Do not cache pages that contain specific text
/.*text.*
Do not cache pages that is named child in directories
.+/child
Do not cache any pages named child
*/child
Note: To disable page caching of specific theme templates or plugin files you need to add define(‘DONOTCACHEPAGE’, true); to it.Make sure to save settings and clear cache. Just tried it, works fine for me.
- This reply was modified 8 years, 7 months ago by dannykater.
Yeah true, but i’ve got the paid version! Got fragment caching working already in the header. Just not with the comments..
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Reset Filter not working properlyterm_id is correct for me. With term_taxonomy_id which is in your code at the moment it redirects to the parent category when you reset all filters.
Thanks!
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Reset Filter not working properlyHi @yithemes,
In my case the reset all filters button redirects back to the parent product category of the current product category (in the URL as source_id) where i’m filtering in.
This is caused on line 79 of the class.yith-wcan-reset-navigation-widget.php where $term is retrieved with
$term = get_term_by( 'term_taxonomy_id', $_GET['source_id'], $_GET['source_tax'] );instead of$term = get_term_by( 'term_id', $_GET['source_id'], $_GET['source_tax'] );Any chance you can change this in a next update?
Thanks!