Dimitar
Forum Replies Created
-
I’ve located the issue, you have to go to the plugin file
core/um-filters-field.phpand change the functions:um_profile_field_filter_hook__textareaum_profile_field_filter_hook__description
The line in both functions:
if ( isset( $data ) && isset( $data['html'] ) && $data['html'] == 1 )should be changed to:
if ( isset( $data ) && isset( $data['html'] ) )It seems the issue is the
$data['html'] == 1code. When I printed the value it was actually 0, not 1, although the user settings “Enable html support for user description” is set to ‘ON’ in Settings -> Appearance -> Profile.By the way, the WordPress is installed on Windows Server, running on IIS.
Best,
DimitarForum: Plugins
In reply to: [Post Grid] Pagination not working in categories and tag pagesHi, I fixed it by disabling the pagination on the category pages, I didn’t want pagination on those pages anyway. Thanks for your help.
Glad I can help 🙂
One solution is to disable the fields with code in functions.php. Follow this docs on how to do that http://docs.woothemes.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/
Here’s an working example http://www.wpmayor.com/how-to-remove-the-billing-details-from-woocommerce-checkout/