Redda_Joppe
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product variations weight and dimensions not displayingThat is what’s supposed to happen?? Why?
Why would you want parent products to have weight and dimensions? Is that meaningful or useful for anything?I would suggest that nothing is displayed for weight and dimensions until a variation is selected. That appears logical to me. Why does ‘something’ need to be displayed?
The only other meaningful option I can think of would be to display a range of weight and dimensions – for instance if there are 3 variations with the weights 2 kg, 5 kg and 10 kg the parent product could say: weight 2-10 kg.Forum: Plugins
In reply to: WooCommerce Remove "Select an Option"Any changes made to WooCommerce files will be lost when the plugin is updated. Instead you could copy the entire function to your child theme’s functions.php and make the necessary changes there.
Forum: Plugins
In reply to: [WooCommerce] Attributes for variable products in addional information tabAt Product Data > Variations tab, each variation has a set of fields where you can enter the parameters for the variation. At the bottom of these fields you should have one called “Variation Description”. Introduced in WC 2.4. You can put the size or whatever in here. This info will be shown when the user selects the variation.
Yes, but it is not shown in the ‘Additional information’ tab. And even if it was, I suppose it would say ‘Description: 5 litres’ (or whatever I enter in the field) and not ‘Size: 5 litres’, which is what I want it to.
It really ought to be possible to add custom fields for variations like it is for simple products.Forum: Plugins
In reply to: [Participants Database] Resend link email not getting sentChecking back on this. I wonder if anybody else is experiencing this issue? It’s kind of a problem if this doesn’t get solved – users should be able to edit their profile even if they deleted the initial edit link email.
Forum: Plugins
In reply to: [Participants Database] Resend link email not getting sentStill stuck on this one. The confirmation email that a lost private link has been requested is getting sent when enabled, but the private link email itself is not. And it’s not in the spam folder.
Haven’t seen anyone else post anything about this issue, so I really have no clue what could be wrong.
Forum: Plugins
In reply to: [Participants Database] Searching a filtered listPerfect, that did the trick ??
Forum: Plugins
In reply to: [Participants Database] Searching a filtered listUPDATE: I removed one of the two filter staements, and it suddenly works as I wanted it to. The issue only persist when there are multiple chained filters, so I’m guessing this is a bug.
Will this be fixed, or is there some kind of workaround or any kind of possible solution?
Forum: Plugins
In reply to: [Participants Database] Is it now possible to search multiple fields?OK, that’s too bad.
Is there any kind of ETA on a possible guide or example to set up multiple field searching?Forum: Plugins
In reply to: [Participants Database] Is it now possible to search multiple fields?Thanks.
I’ve given it a try, but I guess I simply don’t have the coding knowledge required to make it work, even though I try hard to learn as much as I can as I go along.Do you have an idea on when you might publish some sort of example on how to achieve this?
However, I have another idea about a workaround for searching multiple fields, but I don’t know if it’s actually possible.
If I add a hidden field to the form, is is possible to have the content of other fields automatically added to that field? If that is possible, I could simply set up the search function to search the hidden field, which would then contain all of the text from the other (relevant) fields.
Is that a possible solution? If yes, how can I add content of other fields to a hidden field?
Forum: Plugins
In reply to: [Participants Database] Search not working – returns entire databaseOK, found the issue.
One of the changes I had made to the pdb-list-default.php template was adding this line of code:
<?php wp_head(); ?>
.
As it turns out I didn’t need it, so after I removed it, the search is working again.I’m not marking as resolved yet, as I’m still hoping for an answer as to how I can change the text on the search and clear buttons in the template.
Forum: Plugins
In reply to: [Participants Database] Searchability of listHi dcutri500, have you managed to create a search functionality that can search multiple fields?
I’m trying to achieve the same thing, so if you have found a solution yet, I would love to know about it.Forum: Plugins
In reply to: [Participants Database] Is it now possible to search multiple fields?Could you possibly point me in the right direction?
Forum: Fixing WordPress
In reply to: Unwanted translationThe text ‘Website’ is my own input through the plugin, though. If I enter ‘Web-site’, it doesn’t get translated, but if I enter ‘Website’ it does.
Forum: Plugins
In reply to: [Participants Database] Multiple single record link fields?Thanks, I figured it out, allthough it took me a little time to determine that I needed to replace
get_edit_link
withget_detail_link
compared to the article about adding an edit record link.Forum: Plugins
In reply to: [Participants Database] Partly predefined fields?Okay, thanks. I checked out this page about custom templates, but I don’t really know where to go from here. I guess I need to learn PHP in order to create custom templates?