I have already allowed users to upload avatars in the plugin settings as Admin.
In the user profile editing page i dont see the Change avatar link, but i can access it thought /members/myname/profile/change-avatar/ and i can upload avatar with no problems.
Also i have edited the /wp-content/plugins/buddypress/bp-themes/bp-default/members/single/profile/edit.php and tried to add
Change Avatar but i see no changes in the edit profile page.
Any advice?
Firstly you should start by creating a Buddypress child theme. Similarly to Wordpress child themes, they allow you to customise what you need, however, these changes don't get lost when you update your Buddypress plugin.
For info on this see Building a Child Theme of the BP Default Theme.
Then go about updating your child theme files and come back here if you still have the same issue.
Related
Bit of an issue I'm having with the WooCommerce plugin on WP.
When installed, it points to a default store page (changeable to other pages). However, whichever page it points to is completely blank in the WP editor, but has assets like a sidebar and product menu when previewed/published.
This is somewhat editable within WooCommerce's customise tab in WP. You can add/remove sidebar.
screenshot of the customise tab
However, I cannot for the life of me remove the product menu from the page because the editor shows a blank page, but WC is adding in its default assets. Its default assets would be fine, if it wasn't for the typo in the sidebar. 'Brows by categories' instead of 'Browse by categories' is utterly infuriating.
screenshot of the published page with iffy sidebar
I could remove the store page entirely, but I want to run it in catalog mode which removes 'add to cart' and everything that goes with it.
The aim of the page is to essentially show products available in store, with all the details like a store page, but without the purchasing functionality.
So far I've tried:
Uninstalling and reinstalling plugin
Editing HTML on the page (nothing shows just like the edit page)
Removing default store page (this disables catalog mode, the plugin I need)
I wouldn't be against ditching WooCommerce if I was able to setup a product catalog by other means. WooCommerce' system would be so good if it weren't for that ruddy typo!!
Any help would be incredibly appreciated. Thanks
Woocommerce is fullly customizable, it has a lot of action/filter which you can hook into to edit things or just overwrite his template file by simply copying them into your theme main directory inside the "woocommerce" folder (if you don't have it already, simply create it).
After you created that directory you can copy any file from the /wp-content/plugins/woocommerce/templates directory and just make it become w/e you want =)
You can create a personalized shopping page with the elementor plugin.
Working with elementor is very simple and you can get the result you want with a simple Google search.
I hope I could help.
Currently, I'm using the classic WordPress editor, but when I want to add or update the featured image I get something like a transparent image, no URL and no description, besides that it doesn't let me update or set a new image.
Do you know any solution for this?
This issue may be due to folder permission.
change upload folder permission 777
change your theme and active WordPress default theme.
Disable plugins one by one
Asking what the title says. I made a plugin where the Title, Date and Link is automatically added on a new Elementor Page. I only want one section of the page to be edited by a user with no admin privileges, is it possible?
If you look at the screenshot, the content containing "Researchers and Industrial Leaders..." is the only one I need to be able to get edited.
If you're familiar with ACF or JetEngine you could dynamically connect that section to an editable section in the dashboard... that way your user stays out of Elementor but can edit sections on the site.
That's how I do it.
I want to add some extra form fields to an existing page in Wordpress.
This page is where you are redirected whenever you edit a post or page.
My problem is I don't know where to find this file or what its called.
I need to know what file i need to edit in order to be able to add the new inputs.
this page would only be seen if you are an administrator and logged in and in dashboard.
I'm using wordpress edge shuffle theme.
The easiest way to solve this is to use Advanced Custom Fields. ACF allows you to specify custom fields that appear on certain edit pages in the admin. You'll then have custom data to use on your frontend templates.
Check out this tutorial for more.
For me, as I was just trying to figure out how to edit my posts page
While logged on to my admin account to edit, I went to my actual page and the top admin bar had an option of "customize" and that took me where I needed to go to add some css
Im using a wordpress theme called classifieds by templatic. On the login pop up it asks you for the user name and the password.
Can I change that so that it asks for the Email instead of the user?.
Yes. First, I would make a child theme from your original theme. Then find the place in the source code where the text you want to change is, and do that in the child theme. This way if your theme is ever updated you won't overwrite your changes.
https://developer.wordpress.org/themes/advanced-topics/child-themes/