How can i customize the account dropdown to have it look presentable with the styling?

The Features under the user account has been affected after using the Astra theme. Please, how can i customize the account dropdown to have it look presentable with the styling?

Hi,

Please send us a link to your website, and we’ll take a closer look. Also, please disable all customizations, cache and all third-party plugins except HivePress.

Hi @Andrii, Thank you for your reply. please, this is the link as it is a work on progress: https://globalincorporator.globalyouthopportunities.com/

And I am not also able to customize the listing form. it is really not making it easy from my end to customize the creation of a listing.

Hi,

Unfortunately, we cannot register on your website. Please send temporary WP access to support@hivepress.io with details for reproducing this issue, and we’ll check it (please send only the link, without login and password). You can create a temporary access link using this plugin: Temporary Login Without Password – WordPress plugin | WordPress.org. Most likely, this issue occurs because Astra adds an additional CSS class that stylizes this menu, we will try to check it in more detail.

As for your other question, please clarify what exactly you mean by customizing the listing form and we will provide you with a solution. If you want to add fields, for example, we recommend using listing attributes: How to add listing attributes - HivePress Help Center

Thank you very much for your feedback. we instead wanted to remove some fields and what was set as optional to be mandatory for our platform.

Hi,

Please clarify which fields you are referring to and we will do our best to help you.

Dear Andri,
Hope you are doing great. we tried using the support team for the account dropdown issue we have on our platform, providing all the credentials but the only direction was looking for a way to send us back here concerning the field we want to correct on the complete tutor profile and the listing creation. our first complaint was about the account dropdown but it was submitted to the support team and they didn’t solve it after we provided credentials to them. now concerning the correction to the fields, those are screenshots and requests written on them.

Those are requests. Thank you

We still have the request for the Account dropdown style customization not solved also

Hi,

Thanks for your patience.

  1. The menu styling issues are caused by minor styling conflicts with the Astra theme. Unfortunately we can’t guarantee 100% compatibility with third-party themes, but you can try this CSS code snippet to add the same padding as for other menu items, this may resolve the drop-down issue:
.menu-item--user-account > a,
.menu-item--user-login > a {
	padding-left:1em;
	padding-right:10px;
}

.menu-item--user-account ul a,
.menu-item--user-login ul a {
	padding-top:0.9em;
	padding-bottom:0.9em;
}
  1. Please try this code snippet to make the profile image required Make the profile image required for users #hivepress #users · GitHub and this one for other fields:
add_filter(
	'hivepress/v1/forms/user_update',
	function ( $form ) {
		$form['fields']['first_name']['required']  = true;
		$form['fields']['last_name']['required']   = true;
		$form['fields']['description']['required'] = true;

		return $form;
	},
	1000
);

For the video upload field, if it’s a custom attribute please customize it in Vendors/Attributes (e.g. change its type to Embed if you only require a video URL, or you can use the URL type). In HivePress, the optional fields are marked instead of required, switching this would require further customizations. Please consider leaving it as is because usually there are fewer optional fields than required, this makes the UI less bloated.

Hope this helps

1 Like