Skip to Content Skip to Menu

Two installations of CB Activity?

  • jwall101
  • jwall101
  • OFFLINE
  • Posts: 29
  • Thanks: 2
  • Karma: 1
  • Add-ons
10 years 8 months ago #241083 by jwall101
Two installations of CB Activity? was created by jwall101
Hi.

Just wondering if it's possible to have two modules showing different settings for CB Activity. I have one that shows image uploads to CB Gallery and an ajax text "status" field. Just keen to give another user group just the status messages instead. I will set the appropriate module using MetaMod.

If not, is there any way to pull in the 5 most recent changes to a specific CB field from all users and display them in a module?

Thanks in advance. Continue to appreciate what you guys are doing and continue to recommend Community Builder to anyone who listens.

Jonathan

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48477
  • Thanks: 8281
  • Karma: 1443
10 years 8 months ago #241121 by krileon
Replied by krileon on topic Two installations of CB Activity?
No, you can't select what activity each module displays. At least not yet. Next release will provide more control over what the module displays.

If not, is there any way to pull in the 5 most recent changes to a specific CB field from all users and display them in a module?

Not without developing a module to do specifically that.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.
The following user(s) said Thank You: jwall101

Please Log in or Create an account to join the conversation.

  • jwall101
  • jwall101
  • OFFLINE
  • Posts: 29
  • Thanks: 2
  • Karma: 1
  • Add-ons
10 years 8 months ago #241122 by jwall101
Replied by jwall101 on topic Two installations of CB Activity?
Thanks Kyle. I presumed that would be the case but wondered if there was something in the CB arsenal that I'd overlooked that might be used to do the job.

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48477
  • Thanks: 8281
  • Karma: 1443
10 years 8 months ago - 10 years 8 months ago #241131 by krileon
Replied by krileon on topic Two installations of CB Activity?
You could use CB Query Field and its multi-row usage to query the database for your information. Then substitute it into a CB Content module. It's not quite as simple as using CB Activity, but it should be able to output whatever information you query for just fine. So for example you'd query for the status column ordering by the last update column then limit it by 5.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.
Last edit: 10 years 8 months ago by krileon.

Please Log in or Create an account to join the conversation.

  • jwall101
  • jwall101
  • OFFLINE
  • Posts: 29
  • Thanks: 2
  • Karma: 1
  • Add-ons
10 years 8 months ago #241133 by jwall101
Replied by jwall101 on topic Two installations of CB Activity?
Thanks again! What a star!!! I will give it a go.

Regards for now,

Jonathan

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48477
  • Thanks: 8281
  • Karma: 1443
10 years 8 months ago #241138 by krileon
Replied by krileon on topic Two installations of CB Activity?
The below query should get you started.

Code:
SELECT `cb_status` FROM `#__comprofiler` WHERE `cb_status` != '' ORDER BY `lastupdatedate` DESC LIMIT 5

Note sure the exact name of your field, but assumed cb_status. It should also ensure empty status is ignored.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum