• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Community Builder -CB- Integration

Community Builder -CB- Integration 16 years 2 months ago #6449

  • Earthson
  • Earthson's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 5
Awesome product here guys! I have been messing around with it for about an hour. I am dazzled. The only thing I am confused about is integration with Community Builder. Is this possible? I see hacks posted for doing certain things, but what I'm really interested in is a full integration plugin. Possible?
The administrator has disabled public write access.

Re:Community Builder -CB- Integration 16 years 2 months ago #6506

  • xalt.it
  • xalt.it's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
I would be very interested in this too.
I read in the reviews on joomla.org that someone had done this, so it is possible.
The administrator has disabled public write access.

Re:Community Builder -CB- Integration 16 years 2 months ago #6617

  • octavian
  • octavian's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 783
  • Thank you received: 110
Hello,

We're open to suggestions. What would you like the RSForm! Pro CB integration to be able to do ?
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Re:Community Builder -CB- Integration 16 years 1 month ago #6643

  • xalt.it
  • xalt.it's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
I am using RSForms and CB on a music club site, where bands are currently applying for an event.

Personally, I would like RSForms to automatically add data from the logged-in user's CB info to their forms. Info such as name, band name, address, phone number etc and also from some of the text fields they have filled out in their CB user profile.

It would also be great if the info submitted in this form could be retrieved by the user for submission again next year when they apply for the same event.
The administrator has disabled public write access.

Re:Community Builder -CB- Integration 16 years 1 month ago #6718

You can read from and write to tables and fields in the DB. So you can fill your fields from CB by adding code to the Default Value - you can also write to fields by using the Script section called on form process.
The easiest thing to do is fill from CB - and then on submission write back to CB thus any changes would be updated. Search the forums for the code to both read and write.
The administrator has disabled public write access.

Re:Community Builder -CB- Integration 15 years 11 months ago #7189

ok,

and what exactly is the code to implement for the field prefill with CB profile informations ???
The administrator has disabled public write access.

Re:Community Builder -CB- Integration 15 years 11 months ago #7378

bump
The administrator has disabled public write access.

Re:Community Builder -CB- Integration 15 years 10 months ago #7446

  • tallship
  • tallship's Avatar
  • OFFLINE
  • Fresh Boarder
  • So foul a sky clears not without a storm
  • Posts: 8
octavian wrote:
Hello,

We're open to suggestions. What would you like the RSForm! Pro CB integration to be able to do ?

We're open to suggestions. What would you like the RSForm! Pro CB integration to be able to do ?[/quote]

I would like RSFormsPro to be able to be used to design custom registration pages for users and store that data in their profiles.

Like someone said on an earlier post, there's a plethora of questions about the creation of custom registration pages, but not much at all in the way of solutions, or even tips - let alone tutorials.

Thanks :)
Bradley D. Thornton
Manager Network Services
NOMAD Internetwork
NorthTech Computer
http://NorthTech.US

The administrator has disabled public write access.

Re:Community Builder -CB- Integration 15 years 6 months ago #8773

  • joseph.lalgee
  • joseph.lalgee's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
  • Thank you received: 1
Nothing on this forum worked for me on RSForm Pro, but this did:
//<code>
$user = $RSadapter->user(); 
$myid = $user['id'];
if ($myid > 0) return @mysql_result(mysql_query("SELECT `cb_fieldname` FROM `jos_comprofiler` WHERE `user_id`=".$myid." LIMIT 1"),0);
//</code>

where cb_fieldname is the name you gave the field in community builder
The administrator has disabled public write access.
The following user(s) said Thank You: sales740
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!