Join our new community forum for support & discussion

Join Now

Home Support Extensions Bookings Commission Transparency in My Account

Commission Transparency in My Account

  • Author
    Posts
  • berkayxx95

    Hello,

    Sorry for spamming your forum with more questions 🙂

    I did an example transaction, and saw that the screen I get is https://ibb.co/zxfRb9f

    However, nowhere explains how the money got down from 1$ to 0.94$. That 6 cents is my commission; however, the seller might not know this, and thus ask me about this issue. If all sellers ask this issue, it would be time-consuming. Is there a way I can give my sellers a breakdown of what they’re getting?

    ihor developer

    Please consider adding a separate landing page for sellers, e.g. “Become a Seller” and breaking down the commission fees there, describing the benefits of becoming a seller. You can also add some custom text at the top of the seller dashboard page, let me know if this works for you and I’ll provide a PHP snippet.

    berkayxx95

    I think the custom text at the top of the seller dashboard works better. Thanks a lot! Please let me know where I should place the text.

    ihor developer

    Please try using this snippet:

    add_filter(
    	'hivepress/v1/templates/vendor_dashboard_page',
    	function( $template ) {
    		return hivepress()->helper->merge_trees(
    			$template,
    			[
    				'blocks' => [
    					'page_content' => [
    						'blocks' => [
    							'custom_notice' => [
    								'type'    => 'content',
    								'content' => 'custom text or HTML here',
    								'_order'  => 6,
    							],
    						],
    					],
    				],
    			]
    		);
    	}
    );

    You can add it via the Code Snippets plugin or to the child theme’s functions.php file (if you use one).

Viewing 4 posts - 1 through 4 (of 4 total)

New Reply

This forum has been archived and is no longer accepting new posts or replies. Please join our new community forum for support & discussion.