Forum Replies Created
-
Gutenberg works well, so why use elementor ?
It seems avatar directory is missing, your php may not have permissions to create folders.
Just create the folder structure manually if you can
inside the wp-content/uploads folder create an avatars folder and then check. If still does not work then create folders with userId 1 ,2,3 etc. inside the avatar folder.
As expected this is because of caching only. A big limitation of page based caching, that hits to the server are captured by the caching system causing this issue.
Please share PHP version
Also check if you have any custom plugin / code that are defining WP Taxonomy.
There is not built in way for this unfortunately, but a google chrome extension can be built to achieve this.
very interesting, this seems to be a dating site idea
Please share more details do you have a sample screenshot what you want to achieve ?
This is not necessarily a messages problem.
The messages are also sending a notification and an email.This user can manage from settings.
Also, note that these actions are also depended on the number of plugins in use.
This is supported in our plugin. In case you are interested, let me know.
Unfortunately, this is BuddyPress support. BuddyBoss support is not provided here.
The comments can be disabled in WP admin – settinggs – buddypress – options – disable activity comments.This is a setting in BuddyPress. WP admin – Settings – BuddyPress – options – show member type
Your function
mettre_a_jour_tous_les_profils();
needs to be called at some action. Currently your code executes at the time when the files are being loaded so the functions are not defined.
Further more your code gets called for all the users, so I assume you just want to run it once and then remove it.replace your direct function call : mettre_a_jour_tous_les_profils(); with
add_action(‘xprofile_field_after_save’,’mettre_a_jour_tous_les_profils’);If you want to run for all users just once : replace xprofile_field_after_save wtih “init”
So now your code runs when a user saves the profile field but it is still not optimised at all.
There is no known issue between Elementor and BuddyPress except from the directories and profile pages.
a. You should consider upgrading the php version.
b. Also install te BP Rewrites plugin which delays buddypress execution.
—Alternatively, our plugin (free) overrides the standard BuddyPress profile and loads a Gutenberg / Elementor template in its place which loads it really fast and can be 100% cached.
refer :
This is possible with our plugin currently under approval on wp.org. Once live I will share the link here.
the profile images are uploaded on wp-content/uploads/avatars/{USER ID} folder and are already md5 hashed along with suffix bpfull & bpthumb , if the plugin is renaming that as well then the profile image uploader will not work.
@Venutius is correct however do note that the already posted activities would not change after changing the translation as activities are stored in the database.
This is a very common issue with WordPress & BuddyPress.
WHEN The pages are cached, the hits do not reach the server and .htaccess returns the request from a cached page usually a html version right from the cache folder.STOP SPAM !
Buddypress is not installed in any of the sites. Using as back links.
Reported.
Since activities are stored directly in database as raw content, this can not fixed without modifying the database.
In short, the previously stored activities will not link to blog posts automatically.You need to contact gamipress developers for this.
which pages you are trying to edit.
member directory ?the code is for publish of new golfs only. So it wont work for comments.
For comments you need to use wp_insert_comment hook
and bp_activity_add function
This is theme area and easily possible