New Update Available – v1.0.83 – UserPro Forums https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/feed/ Mon, 29 Apr 2024 08:38:12 +0000 https://bbpress.org/?v=2.6.2 en-US https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30100 <![CDATA[New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30100 Thu, 27 Mar 2014 21:53:20 +0000 admin Hi,

This is an announcement about the latest update (v1.0.81)

Version 1.0.83 (27 Mar 2014)
============================

– New feature: you can make any field required/optional with frontend publisher
– New feature: control which fields appear in a frontend publisher shortcode
– New feature: customize the order of frontend publisher fields easily with shortcode
– New feature: add and collect unlimited custom fields with frontend publisher
– New feature: UserPro backend design and colors improved/enhanced
– New option: compatibility setting to solve UserPro post saving issue on some webhosts

Please download the most recent update from customer area:

http://userproplugin.com/userpro/customer_portal/

Thanks!

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30104 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30104 Thu, 27 Mar 2014 21:59:24 +0000 andy999 Great work, Ahmed 😀 Got a list of shortcodes for the new front end publisher features?

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30105 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30105 Thu, 27 Mar 2014 21:59:56 +0000 admin How to make field required in frontend publisher?

Shortcode options are:

require_title, require_content, require_featured e.g. require_title=0 or 1 and so on. If you want to make a custom post meta required, use require_customfield=1 or 0. By default, require_title, require_featured, and require_content are set to 1 (Required) so simply to make featured image optional: require_featured=0 🙂 This should make the featured image optional.

How to control which fields display in frontend publisher and control the order of fields?

Use the option: publish_field_order to define which fields are included/shown in publisher and their order.

Example:

publish_field_order=”title,content,featured_image” This will show a frontend publish form with title first, content, then featured image.

Another example:

publish_field_order=”title,featured_image,custom_url” This will show a frontend publish form with title first, featured image, then custom_url (Which should be a defined post meta in the shortcode – custom field for post)

What are predefined fields

title, featured_image, content, post_type, category, … custom post meta keys

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30106 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30106 Thu, 27 Mar 2014 22:00:46 +0000 andy999 I posted too fast, ahmed was already on the case. 😀

Where are settings for userpro stored? Are they stored in the db or do I need to export them before transferring things between servers?

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30107 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30107 Thu, 27 Mar 2014 22:04:59 +0000 admin This is completely shortcode dependant. No settings or DB options. 🙂

So recap:

required/optional:

require_title=1/0
require_content=1/0
require_featured=1/0
require_CUSTOMFIELD=1/0

And control fields / order of fields:

publish_field_order=”title,content,featured_image,content,post_type,CUSTOMFIELD1,CUSTOMFIELD2,etc.”

That’s all 🙂

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30108 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30108 Thu, 27 Mar 2014 22:07:24 +0000 andy999 I know this is all shortcode dependant, I mean general settings under the ‘settings’ field in the admin panel 😀

By the way, this is awesome, I’m testing it now. Great work.

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30109 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30109 Thu, 27 Mar 2014 22:09:03 +0000 andy999 Can we remove the header from the Front end publisher?

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30111 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30111 Thu, 27 Mar 2014 22:10:08 +0000 admin all userpro options are stored in a global option called ‘userpro’.

you can read/extract/delete it with php:

get_option(‘userpro’) is the array of options.

print_r( get_option(‘userpro’) ); // will output all options

delete_option(‘userpro’); // will delete all options.

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30112 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30112 Thu, 27 Mar 2014 22:12:05 +0000 andy999 Where is the global option userpro stored?

]]>
https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30113 <![CDATA[Reply To: New Update Available – v1.0.83]]> https://forum.userproplugin.com/forums/topic/new-update-available-v1-0-83/#post-30113 Thu, 27 Mar 2014 22:12:16 +0000 admin Andy, there’s a global shortcode option that already hides the header of shortcode. Add this:

no_header=true to your shortcode 😀

]]>