donmik
Forum Replies Created
-
This plugin should be activated in network I think. Never tried really…
Forum: Plugins
In reply to: [GEO my WP] Add new feature: Multitaxonomy selector xprofile fieldHi,
I have no problems with this field right now. I can see the field with all the terms… See my form
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] How to chang date 1940 to 2030Use this js.
if (parseInt($('select.bxcft-birthdate-year').children(':last').val()) !== 1940) { $('select.bxcft-birthdate-year').children('option:not(:first)').remove(); for ( var i = 2030; i >= 1940; i-=1 ) { $("<option></option>").attr('value', i).text(i).appendTo('select.bxcft-birthdate-year'); } }Should modify the current values of your birthdate field with 2030 and 1940.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Video embedsHi,
Yes you can use the url field type and allow users to put a youtube url then you can use the “bxcft_web_display_filter” to display an embed video instead of the url.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] exif image issueHi,
I’ve been looking around for a solution and found this post.
I’ve tried to add this to my wp-config.php
define('ALLOW_UNFILTERED_UPLOADS', true);And now it works. Check if one of the solutions posted there can work for you.
You need of course add “exif” to the allowed extensions with the following code in your functions.php
add_filter('bxcft_images_ext_allowed', 'my_custom_images_ext_allowed'); function my_custom_images_ext_allowed($array) { array_push($array, 'exif'); return $array; }- This reply was modified 9 years, 3 months ago by donmik.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Complete Sign UpSorry, I’ve been looking at this a few weeks ago and it wasn’t useful. Later I ran out of time…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Complete Sign UpCan send me a link to see it by myself and try some things? I can see the js error displayed in the console also.
Have you enable Xprofile component in buddypress settings before?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Complete Sign UpHi,
I’ve tried buddypress 2.7.3 but I have no problem with registration. If the button was not clickable maybe it’s a javascript error. Maybe it can be due to one of the profile fields you were using. If you can send me what type of fields from my plugin you were using, I can try to reproduce this error.
Thanks anyway!
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] LocoTranslateI’m really out of time, sorry.
If you want to do it you can send a pull request to github and I will review it when I can.
This feature is from buddypress plugin not mine. Are you sure this issue is related to my plugin? Try to deactivate my plugin and see if enforce field visibility works as expected. If not, then you have to contact buddypress team.
Hi,
Have you tried BP Profile Search plugin?
The normal buddypress search will only work with ids but bp profile search will allow you to search by tags.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Add image as profile photoHi,
Sorry for the late answer but I just started this week a new job so I’m a little overwhelmed right now… xDWith this method you cannot use anymore the buddypress “change profile photo”, you need to hide it and use the xprofile field within the edit profile form.
You need to think another solution if you want to keep using change profile photo, maybe if you check where the photo are saved using buddypress you can create a method to simulate the upload of a profile photo after user registration using your xprofile field.
The method I gave you override the display of the normal buddypress photo with a xprofile field value.
This is an error from your php configuration or server. You can try add this line to your wp-config.php:
define(‘WP_MEMORY_LIMIT’, ’64M’);Or contact your web hosting.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Add image as profile photoYou’re welcome! Good luck!