Join our new community forum for support & discussion

Join Now

Home Support Extensions Search Alerts Set Link behind “Set Search Alert”

Set Link behind “Set Search Alert”

  • Author
    Posts
  • Jave

    Hello,

    i want to set a link behind the “Set Search Alert” (under the sorting options).

    For example i want it to be shown this way: “Set Search Alert (?)” and the question mark would be a link leading to a new site where i explain how the search alert works and how users can turn it off.

    Is this possible to do with a code?

    Jave

    Also when using the Geo Location Extension together with this one i noticed that when users set search alerts and review them in their account it only displays the categories but not the location for which they set the alarm. Also it only displays the last Subcategory and not all of them including parent categories.

    Would be nice to have all of this shown so users can be more sure they set their alarm for the right attributes.

    ihor developer

    Hi,

    1. It’s possible, but with a custom PHP snippet, please try using this one:

    add_filter(
    	'hivepress/v1/templates/listings_view_page',
    	function( $template ) {
    		return hivepress()->helper->merge_trees(
    			$template,
    			[
    				'blocks' => [
    					'listing_filter_form' => [
    						'footer' => [
    							'search_alert_text' => [
    								'type'    => 'content',
    								'content' => '<a href="link here"><small>text here</small></a>',
    								'_order'  => 20,
    							],
    						],
    					],
    				],
    			]
    		);
    	}
    );

    2. Thanks for your feedback, these improvements are already on the roadmap and we’ll try to improve this extension with every update.

    capitalss2

    @Jave Good afternoon can you please send your email I want to ask you a question

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.