highprrrr
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: get custom field data from custom taxonomyI found it in the database:
https://drive.google.com/file/d/1CWOvnYFz9sgqneJMU1xHkQofBXdMkHr3/view?usp=share_link
Forum: Developing with WordPress
In reply to: get custom field data from custom taxonomyThe first field doesn’t need a value, because it’s the create form.
But the edit form field has this:
$value = get_term_meta($term->term_id, ‘track-color’, true);
<input type=”text” name=”track-color” id=”track-color” size=”40″ value=”<?php echo esc_attr($value); ?>”>
And this works. It’s not browser cache, because I typed in “Yellow” in Chrome and clicked saved, and then logged in using Firefox and it displayed “Yellow” in the field.
So the value is being saved.
But I’m trying to use this value elsewhere in a template and it’s not working. I tried just using the same exact thing
$value = get_term_meta($term->term_id, 'track-color', true);but that isn’t working.Forum: Developing with WordPress
In reply to: get custom field data from custom taxonomyIt’s being saved somewhere because the value shows up in the field after refresh
Forum: Developing with WordPress
In reply to: get custom field data from custom taxonomySo I do want to use get_term_meta? I’ve been trying but can’t seem to get it right
Forum: Developing with WordPress
In reply to: get custom field data from custom taxonomyHere is my code:
// add fields to add track taxonomy function wpcs_add_track_fields() { ?> <div class="form-field"> <label for="track-color">Track Color</label> <input type="text" name="track-color" id="track-color"> </div> <?php } add_action( 'wpcs_track_add_form_fields' , 'wpcs_add_track_fields' ); // add fields to edit track taxonomy function wpcs_edit_track_fields( $term, $taxonomy ) { $value = get_term_meta($term->term_id, 'track-color', true); ?> <tr class="form-field"> <th scope="row"><label for="track-color">Track Color</label></th> <td><input type="text" name="track-color" id="track-color" size="40" value="<?php echo esc_attr($value); ?>"></td> </tr> <?php } add_action( 'wpcs_track_edit_form_fields' , 'wpcs_edit_track_fields', 10, 2 ); // save to database function wpcs_created_track_fields( $term_id ) { update_term_meta( $term_id, 'track-color', sanitize_text_field($_POST['track-color'] ) ); } add_action( 'created_wpcs_track' , 'wpcs_created_track_fields' ); add_action( 'edited_wpcs_track' , 'wpcs_created_track_fields' );Forum: Reviews
In reply to: [Membership Plugin - Kadence Memberships] Please Remove Freemius@dmccan our developer is investigating some things based on your recommendations. Will keep you posted.
@pauljonesdesign That’s a very good question! I’ll do some digging and see what I can find.
Forum: Reviews
In reply to: [Membership Plugin - Kadence Memberships] Please Remove FreemiusInteresting. Given how popular it is I highly doubt it violates WordPress phone home policies, but it’s worth looking into just in case.
We plan to move away from freemius at some point as a company, but at the moment it’s just the easiest way to accomplish what we want and making something custom just isn’t a high priority at the moment.
We do appreciate your feedback. Tho we likely won’t be removing freemius any time soon it’s good to get feedback like this that confirms our long term plan.
Is there any chance I can convince you to change your 1 star review? I know you didn’t get the response you were hoping for but we do take all feedback very seriously even if we choose not to act on it every time.
I will see if we can update the language to make it more clear that the plug-in will function even if you don’t opt in.
Forum: Reviews
In reply to: [Membership Plugin - Kadence Memberships] Please Remove FreemiusHi @dmccan!
Not sure that warrants a 1 star review. I’m not sure people understand how harmful those can be =[
Can you explain briefly how this is a privacy issue? It’s a 100% voluntary, double opt-in service that allows us to collect non-sensitive information.
If there’s a legitimate privacy concern with Freemius that we’re not aware of we’d definitely appreciate any insight you might have.
Forum: Plugins
In reply to: [The Events Calendar] Members only calendarHi there!
Can you share the URL of the website in question?
Could you share some screenshots, I’d like to see where you added your custom CSS and what your Event Categories look like.
Hey there! This thread has been inactive for a while so we’re going to go ahead and mark it Resolved. Please feel free to open a new thread if any other questions come up and we’d be happy to help.
Hi @mciac
I believe the functionality you are looking for exist only in the Pro version.
I’ll check on the documentation and make sure it’s more clear.
Thanks for bringing this to our attention! Improving our documentation is something we’re putting a focus on right now and your feedback helps a ton!
-James
This page is still a work in progress, but the zip is downloadable:
Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] Membership StatusesAwesome, I’m glad I could help!
Please don’t hesitate to reach out if you have more questions.
Forum: Plugins
In reply to: [Membership Plugin - Kadence Memberships] Membership StatusesHi Ryan!
“Active” status will be required to view content restricted to that membership level.
When a renewal fails, the membership switches to “Expired”.
They will not have access until a successful payment is made.
I hope this helps!
-JamesI wanted to thank you for your feedback.
After some deliberation and research, I believe we will go back to Tables.
We’re going to warn people first before we change again, so as to give folks like yourself time to plan for it. And we’ll probably offer a “beta” zip for folks who want to get a jump start on it.
Right now I’ve got a working example that uses table/row/td etc and is actually quite responsive (much MUCH better than it was before, which I understand isn’t saying much).
If you’d like, I could share a link to a zip here and you could have a sneak peak.