Forum Replies Created

Viewing 15 posts - 901 through 915 (of 2,964 total)
  • Author
    Posts
  • in reply to: users child-table #6245
    Steve
    Keymaster

    You can use this tutorial to save the user ID you want.

    Then you can get_posts() to display the posts for your user.

    in reply to: Trigger actions with buttons #6244
    Steve
    Keymaster

    @martinw– Unfortunately, this is going to have to be standard PHP/HTML/jQuery. 😉

    in reply to: users child-table #6239
    Steve
    Keymaster

    @martinw– I’m not clear on what you mean by child-data-form. Do you just want to view posts that have a particular user assigned? Not the author, correct?

    in reply to: work with relationships #6238
    Steve
    Keymaster

    Nice! Closing ticket.

    in reply to: Trigger actions with buttons #6237
    Steve
    Keymaster

    @martinw– You can create a form with Piklist that is all hidden fields, except your buttons. Then use jQuery to fill in those fields when you click a button.

    Does that help?

    in reply to: editor breaks the add_more #6227
    Steve
    Keymaster

    nice! Closing ticket.

    in reply to: Multiple Post/Pages Same Directory #6225
    Steve
    Keymaster

    @4michaelcoleman– I don’t think I understand the question. Why are these pages different than the first?

    in reply to: Best Way to Display Select Value #6224
    Steve
    Keymaster

    Displaying data is standard WordPress/PHP with Piklist. I would recommend looping through your meta_values and pull the info with get_posts(). Something like this (untested):

    $levels = array(
    	'Platinum'
    	,'Gold'
    	,'Silver'
    );
    
    foreach ($levels as $level) {
    
    	$args = array(
    		'meta_key' => 'sponsor_level'
    		,'meta_value' => $level
    	);
    
    	$posts_array = get_posts( $args );
    
    	// Display your details here.
    
    }
    
    in reply to: editor breaks the add_more #6222
    Steve
    Keymaster

    I used this code and it seemed to work for me. See screenshot:

    piklist('field' , array(
    	'type' => 'group'
    	,'label' => __('Event')
    	,'field' => 'pro_card_events'
    	,'add_more' => true
    	,'columns' => 12
    	,'template' => 'field'
    	,'fields' => array(
    		array(
    				'type' => 'text'
    			,'field' => 'event_title'
    			,'label' => __('Event Title')
    			,'columns' => 12
    		)
    		,array(
    			'type' => 'datepicker'
    			,'field' => 'event_date'
    			,'label' => __('Date')
    			,'columns' => 6
    		)
    		,array(
    			'type' => 'text'
    			,'field' => 'event_time'
    			,'label' => __('Time')
    			,'columns' => 6
    		)
    		,array(
    			'type' => 'editor'
    			,'field' => 'event_description'
    			,'label' => __('Description')
    			,'columns' => 12
    			,'template' => 'field'
    		)
    		,array(
    			'type' => 'text'
    			,'field' => 'event_location'
    			,'label' => __('Location')
    			,'columns' => 12
    		)
    		,array(
    			'type' => 'text'
    			,'field' => 'event_link'
    			,'label' => __('Event Link')
    			,'columns' => 8
    		)
    		,array(
    			'type' => 'text'
    			,'field' => 'event_link_text'
    			,'label' => __('Event Link Text')
    			,'columns' => 4
    		)
    	)
    ));
    
    Attachments:
    You must be logged in to view attached files.
    in reply to: Upload files field bug #6221
    Steve
    Keymaster

    @shonnys– Welcome to the Piklist community!

    Please try our latest beta. It fixes the issue.

    in reply to: Does PikList work fully in the Customizer ? #6220
    Steve
    Keymaster

    @tiberiur– That is some of the nicest things anyone has said about Piklist!

    The first step in being a “Piklist Evangelist”, is posting a review on WordPress.org 😉

    in reply to: Shortcode UI #6219
    Steve
    Keymaster

    @tiberiur– You are using a Windows server correct?

    in reply to: change related post? #6218
    Steve
    Keymaster

    Great. Looking forward to hearing what you think.

    in reply to: Google Maps Solution #6216
    Steve
    Keymaster

    Beautiful!

    in reply to: Curious error msg when installing WP Helpers #6205
    Steve
    Keymaster

    @maddaze– Awesome! Closing ticket.

Viewing 15 posts - 901 through 915 (of 2,964 total)