Forum Replies Created
-
AuthorPosts
-
September 3, 2014 at 11:31 pm in reply to: Use custom field values as options in a dropdown or checkbox #6269916networksMember
Excellent, look forward to the release that adds the Upload Files button, I found tonight I need that for an site I’m working on. If there’s also a way I can add it manually while I wait for the the next release that would be great too, please post if that’s an option.
February 12, 2014 at 9:37 am in reply to: When I reach 10 Forms in Form Editor I cannot save any more forms #4825916networksMemberI saw in another post that increasing the max_input_vars was recommended.
This worked for me.
For reference I set this in my .htaccess
max_input_vars 3000
post_max_size 50M916networksMemberThis worked for me, thank you.
For reference I set this in my .htaccess
max_input_vars 3000
post_max_size 50M916networksMemberAdd this code below to your functions.php file, and you’ll be able to use shortcodes like this:
[mymeta name=”company_name”]
function metashortcode( $atts ) { // Attributes extract( shortcode_atts( array( 'name' => 'company_name', ), $atts ) ); // Code $user_id = get_current_user_id(); $key = $name; $single = true; $metavalue = get_user_meta( $user_id, $key, $single ); return $metavalue; } add_shortcode( 'mymeta', 'metashortcode' );
916networksMemberI think I figured out how to do this, it was already built into the plugin, which is fantastic.
User Meta >> Settings >> Backend Profile Tab
You can click to add the fields you want, re-order, and even remove default WordPress fields that you are not using.
Excellent Plugin!
February 10, 2014 at 12:02 am in reply to: admin to edit multiple user profiles on the frontend #4814916networksMemberI also am looking for this functionality, essential to the development of a current site. Any ideas?
-
AuthorPosts