-
kunalb posted a new activity comment 13 years, 6 months ago
@imjscn Also, my previous reply was built around the assumption that you’d just be storing the average rating. If you’re saving ratings for each person for a post type, then I’d recommend going about it the way I’ve added registration in eventpress—registrations as posts of a custom post type ep_reg which are saved as the children of the c…[Read more]
-
imjscn posted an update in the group BuddyPress Custom Posts: 13 years, 6 months ago
@kunalb , I’m planning to make a rating sytem for all my Custom Post Types. I have no idea how this can be structured and intergraded into each types, need your suggestion. Should I make this rating system an independant plugin and save votes into other type’s metabox, or I make a rating model inside each type? If either way can do, which way is…[Read more]
-
imjscn posted on the forum topic Duplicate Content: Slash and No Slash at the End of URL in the group Miscellaneous: 13 years, 8 months ago
I’ve been bothered by this issue for a while. Thanks for giving the answer and the patch!
How to install the patch? put it in bp-core folder , or paste the code in a file? -
Jenny posted on the forum topic How to Keep Blog Tracking but Hide Blogs(0) tab for non-blogging Members in the group How-To and Troubleshooting: 14 years, 1 month ago
I created an empty bp_custom.php in wp-content/plugins folder, added the above code. but nothing happened. no matter I put in == 0, or == 1, or == 2, the blogs tab is still there.
Maybe because my user profile is at root directory? ( http://mydomain.com/username/ ) -
Jenny posted on the forum topic How to Keep Blog Tracking but Hide Blogs(0) tab for non-blogging Members in the group How-To and Troubleshooting: 14 years, 2 months ago
I’m using child them which only has a style.css, I don’t have this bp_custom.php file in either bp-default them or child them. Can I create this bp_custom.php in Child them folder? Is it ok if this file contain only the above code?
-
Jenny posted an update in the group Creating & Extending: 14 years, 2 months ago
I have one special user, on this user’s page (http://mydomain.com/members/special ) , I want to remove all the other components, leave only Group tab, this change apply on this user only. how to do this?
@imjscn
Active 10 years, 4 months ago
I’d suggest making an independent plugin for this—how I would go about doing this would be to save the ratings in the post’s meta-data, and create custom template tags to display/set the ratings.
This will completely independent of the actual post type of a post—so making a rating system within each post type will just involve repeating you…[Read more]