Сan you make “view vendor” button big?

can you make “view vendor” button big? it should look like Add listing button or buy now button.
make button big and bold.

add_filter( 
	'hivepress/v1/templates/offer_view_block/blocks', 
	function ($blocks, $template){
		if ( hivepress()->get_version( 'marketplace' ) ) {
		$blocks = hivepress()->helper->merge_trees(
					[ 'blocks' => $blocks ],
					[
						'blocks' => [
							'offer_actions_primary' => [
								'blocks' => [
									'vendor_view_link' => [
										'type'   => 'part',
										'path'   => 'offer/view/vendor-view-link',
										'_order' => 10,
									],
									
									'offer_accept_form' => [
										'type' => 'content,'
									]
								],
							],
						],
				]
				)['blocks'];
		}
		return $blocks;
	}, 
	1000,
	2
);

Hi,

Please use these CSS snippets:

.hp_request-template-default .hp-offer__actions--primary .hp-offer__action--vendor {
	background-color: purple;
	font-size: 18px;
	color: white;
	padding: 5px 20px;
	border-radius: 5px;
}

.hp_request-template-default .hp-offer__actions--primary .hp-offer__action--vendor .fa-eye:before { 
	color: white;
}

Please note that it can require further customization.

​I hope this is helpful to you.

Nice, thank you.

Hello, i also want to change button name e.g " View Dealer" or “View Seller”

Hi,

To change the button’s text, please check this doc How to change any static text - HivePress Help Center

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.