Forum Replies Created

Viewing 6 Topics - 1 through 6 (of 6 total)
Author Posts
January 26, 2015 at 11:04 pm in reply to: Update select using hook 35067
Jordan Jordan

Hi,

Thanks for the reply. The link you sent links to one of the comments here.

January 25, 2015 at 11:45 am in reply to: Update select using hook 34966
Jordan Jordan

Hi,

I did read it but it’s quite vague when you are trying to do what I need to get done. It doesn’t go into detail on how to add meta to taxonomies. The meta tag there is attached to a custom field but if using a taxonomy where can you place the meta? What does it bind to? What other options are there?

You gave me that link before and I told you that I had read it and asked you for help and you just sent it again. That is not very good support. I’ve obviously wasted my money here. Do you offer refunds?

Thank you.

January 22, 2015 at 9:01 pm in reply to: Update select using hook 34844
Jordan Jordan

hi, thanks for the reply.

I’ve looked at that and I don’t see how I can get it working. Would it be possible to give me a hint or even tell me how I would be able to do it?

Thank you.

January 21, 2015 at 5:28 pm in reply to: Update select using hook 34745
Jordan Jordan

Hi,

I’ve changed the select menu to list like this:

function render_visibility( $form_id, $post_id, $form_settings ) {

	$taxonomies = array(
	    'type'
	);

	$args = array(
	    'orderby'           => 'name', 
	    'order'             => 'ASC',
	    'hide_empty'        => false,
	    'fields'            => 'all',
	    'hierarchical'      => true, 
	    'child_of'          => 1, 
	    'get'               => 'all',
	    'pad_counts'        => false,
	); 

	$terms = get_terms($taxonomies, $args);

	echo '<select>';
	foreach ( $terms as $term ) {
		echo '<option value=' . $term->term_id . '>' . $term->name . '</option>';
	}
	echo '</select>';
}

If someone could advise on how to make the values of the taxonomy dd to the post that would be great.

Thanks.

January 20, 2015 at 5:22 pm in reply to: Conditional fields based on usertype 34609
Jordan Jordan

That’s too bad. It would be great to see a visibility option just like you get in Gravity Forms.

January 20, 2015 at 2:47 pm in reply to: Conditional fields based on usertype 34599
Jordan Jordan

Hi,

I need to have a select box in a frontend form that is only visible to admins but not to standard users.

Viewing 6 Topics - 1 through 6 (of 6 total)