capcar
Forum Replies Created
-
Forum: Plugins
In reply to: [Woocommerce CSV importer] newFormData is nullYeah I’ve tried every setting change I can think of. I’ve sent you the CSV and screenshot to your website email. Let me know if I can provide you with any further info. Thanks!
Forum: Fixing WordPress
In reply to: Modify URL generated by wp_list_categories?Apparently, I need to create a custom Walker class for this. This fellow pointed me towards a solution:
How To Customize wp_list_categories() Output
Editing the $link line worked swimmingly…
Forum: Fixing WordPress
In reply to: Output URL generated by wp_list_categories as querystring?Apparently, I need to create a custom Walker class for this. This fellow pointed me towards a solution:
How To Customize wp_list_categories() Output
Editing the $link line worked swimmingly…
Forum: Fixing WordPress
In reply to: Get terms for array of postsThought about doing this, but the results are paginated, so I can’t loop through the full results on one page… though I guess I could run the loop twice – once just to collect the ID’s on a full result.
In the end, I chose to make a custom SQL query – basically taking the page query (which I got using $GLOBALS[‘wp_query’]->request) and creating a SELECT statement for the terms whose relationship ID’s that are IN that query. Runs rather slow, however, so I may try your suggestion. Thanks!