I'd like to increment a CB field when a certain page is loaded (non-CB page, just a normal Joomla article). This will allow me to set a maximum amount of views for a special page i have and deny those who reach this maximum. How would I go about this?
CB Auto Actions is designed to primarily act on CB triggers. I suppose you could do the old-school image URL trick though. You'd create an auto action to increment your field and set its Triggers to None and User to User. Next you'd add an image onto the page you want it fired on with the URL being the URL to the auto action. Aside from that you'd need to explore other methods like an ajax request using jQuery, iframe, etc.. Regarding denying access once that limit is hit I can't really advise you regarding that as without a trigger for CB Auto Actions to act on it can't do anything like redirect away.
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.
was able to get it done via php
$query= "UPDATE jos_comprofiler set cb_video=cb_video+1 Where id=".$user->id;
$db->setQuery( $query );
if($db->execute()){ //success
}else{//failed
}