How to Recommend profile in UNA

How to Recommend profile in UNA? is there any option for site admin to make profile recommended?

  • 1166
  • More
Replies (9)
    • "Feature":

      studio/builder_menu.php?page=items&module=bx_persons&set=bx_persons_view_actions

      • You can feature profiles to display in the Featured Profiles block by selecting them here:

        • ok, but I can see there are separate block for feature and recommended profile in admin

          • please refer attached screenshotimage_transcoder.php?o=bx_froala_image&h=3184&dpx=1&t=1585219671

            •     function getAlterOrder()

                  {

                      switch ($this->aCurrent['sorting']) {

                          case 'featured':

                              return array('order' => ' ORDER BY `bx_persons_data`.`featured` DESC ');

                          case 'recommended':

                              return array('order' => ' ORDER BY RAND() ');

                          case 'none':

                              return array();

                          case 'active':

                              return array('order' => ' ORDER BY `sys_accounts`.`logged` DESC ');

                          case 'online':

                              return array('order' => ' ORDER BY `sys_sessions`.`date` DESC ');

                          case 'last':

                          default:

                              return array('order' => ' ORDER BY `bx_persons_data`.`added` DESC ');

                      }

                  }

              recommended means  random records.

              • ok, but it is nothing showing on page

                • Recommended block displays all featured profiles which you aren't subscribed yet, so it recommends to subscribe to them.

                  • ok, but nothing is showing on page

                    • UPDATE: As we found the deal was in the already connected profiles :-)

                      Login or Join to comment.