Join our new community forum for support & discussion

Join Now

Home Support General HivePress Make classified site

Make classified site

  • Author
    Posts
  • gogita

    Hello dear developer,

    can I use hivepress to make classified site, where users can add an ad, like olx? how possible that realise?

    question 2.

    can I add facebook comments plugin in listing page? and if yes how?

    ihor developer

    Hi,

    Sure, you can combine HivePress with the Paid Listings and Messages extensions (all free) to make a classifieds site similar to OLX. You can start by installing HivePress with ListingHive theme to check how it works https://hivepress.io/docs/themes/listinghive/

    ihor developer

    Adding Facebook comments is possible with a simple code snippet, if it’s ok I can post it.

    gogita

    thank you very much, I am entrepreneur and I choose your theme and plugin, because it’s free for start. thank you, If you can write this code for facebook comments.

    ihor developer

    Please try adding this code to the child theme’s functions.php file, replace “add Facebook comments embed code here” with the Facebook comments embed code that they provide:

    add_filter(
    	'hivepress/v1/templates/listing_view_page',
    	function( $template ) {
    		return HivePress\Helpers\merge_trees(
    			$template,
    			[
    				'blocks' => [
    					'page_content' => [
    						'blocks' => [
    							'facebook_comments' => [
    								'type'    => 'content',
    								'content' => 'add Facebook comments embed code here',
    								'_order'   => 1000,
    							],
    						],
    					],
    				],
    			]
    		);
    	}
    );
    gogita

    Thank you very much.

    gogita

    how resize category icons? it’s very large

    ihor developer

    If you mean category images such design changes require CSS customizations. You can consider increasing the number of category columns (by editing the categories block on the home page).

Viewing 8 posts - 1 through 8 (of 8 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.