-
Paul Gibbs replied to the forum topic Update Soon? in the group Achievements 12 years, 8 months ago
Regarding the sign in bug. I really don’t have any good ideas how to fix it, which is the current problem.
And the new version; as @imjscn says, it is living on Github https://github.com/paulgibbs/achievements […]
-
Stas Sușcov replied to the forum topic Can't add lectures in the group BuddyPress ScholarPress Courseware 12 years, 11 months ago
Makes sense.
Thanks @imjscn could you fill an issue here describing the problem:
https://github.com/scholarpress/buddypress-courseware/issues?sort=created&direction=desc&state=open -
Tosh replied to the forum topic Lottery & Gamble System in BuddyPress using Cubepoints | Enter Lottery using Twitter / Facebook / Yo in the group CubePoints Buddypress Integration 13 years ago
Added another feature to it this morning! Hot off the coding press. If your a lottery admin you can pick winner(s) at random right from the lottery logs on the front end!
@imjscn No, they can’t pick a lottery […]
-
foxly replied to the forum topic How to setup Nightly Build? in the group BuddyPress Media 13 years ago
This is normal behavior for the current nightly build. The code for the front-end screens won’t be finished for several weeks.
Thanks!
^F^
-
David Dean replied to the forum topic Error with BP Group Hierarchy 1.2.4 and BP 1.5 in the group BP Group Hierarchy 13 years, 1 month ago
@imjscn I think I ran into the bug you described; it has been fixed in the newest version. Please give it a try and let know what you find! 🙂
-
David Dean replied to the forum topic Group Tree Filtering in the group BP Group Hierarchy 13 years, 1 month ago
@imjscn you could use the
bp_has_groups_hierarchy
function (works just likebp_has_groups
) with an argument key ofparent_id
, it’ll fill the groups “loop” with children of the group you passed. You can […] -
markcorgan replied to the forum topic Problem with editing course, missing tab – version 0.9 in the group BuddyPress ScholarPress Courseware 13 years, 1 month ago
-
Stas SuČ™cov replied to the forum topic Problem with editing course, missing tab – version 0.9 in the group BuddyPress ScholarPress Courseware 13 years, 1 month ago
@imjscn i didn’t upload anything, it’s how it’s generated.
@markcorgan I’m sorry, you are doing something wrong.
http://dl.dropbox.com/u/20301790/trash/cw.mpg -
David Dean replied to the forum topic Group Tree Filtering in the group BP Group Hierarchy 13 years, 1 month ago
@imjscn – that sounds like the
Member Groups
tab to me. Are you looking for something different, or just for it to be moved to the first tab / front page? -
d3creative replied to the forum topic Modifiying Group Homepage in the group Creating & Extending 13 years, 2 months ago
@imjscn I have the exact same issue. Did you ever mange to find a solution?
-
SlaFFik replied to the forum topic Future features in the group BuddyPress Groups Extras 13 years, 3 months ago
@imjscn
2. in todo list already
4. in todo list already
🙂 -
SlaFFik replied to the forum topic Future features in the group BuddyPress Groups Extras 13 years, 3 months ago
@imjscn
6. in todo list
5. done
4. didn’t understand. Could you clarify that?
3. done
2. didn’t understand. Could you clarify that? What are tags […] -
kunalb posted a new activity comment 13 years, 5 months ago
@imjscn I had to construct a complete query because I needed the name from the bp profile table and wordpress’s user table. It might be simpler—and with automatic cache support via WP—to simply get the data using get_post_custom() [https://codex.wordpress.org/Function_Reference/get_post_custom] which will return an object with all custom val…[Read more]
-
kunalb posted a new activity comment 13 years, 5 months ago
@imjscn As long as you have BPCP/EP activated and are only using the loop after all plugins have been loaded (which is almost certainly true as the loop will only be used by the time WP reaches the output generating stage—far after loading plugins), you don’t need to copy kb-loop.php.
-
kunalb posted on the forum topic Private Events in the group EventPress: 13 years, 6 months ago
@Imjscn Using CSS to hide content is not exactly a safe thing—all someone needs to do to see the hidden content is just do a view-source on the page, or use firebug to modify the css for that page and show all hidden content. You can also permanently save stylesheets for specific sites that over-ride the […]
-
Dwenaus posted on the forum topic Rate anything: new plugin in development, soliciting architecture advice in the group Creating & Extending: 13 years, 6 months ago
@imjscn it won’t be a beast, it will be … poetry 🙂 and in case anyone else is reading this thread in the future regarding the in-depth discussion about using db tables or not, I wanted to mention one thing I learned. You can insert or update the wordpress database – existing tables or your own […]
-
tindell posted on the forum topic BuddyPress Like will change in 0.0.9 in the group BuddyPress Like: 13 years, 6 months ago
@ARHistoryHub Thanks for that, hopefully it will help fix the situation. @imjscn It wouldn’t happen but if it did you could just ask for the data port it over to a new site, keep it going. An finally @stwc yeah I’ve given up also.
-
Dwenaus posted an update 13 years, 6 months ago
@imjscn hey, your update below about using custom post types to store reg data in your event plugin is quite interesting. can you expand upon why you did it that way instead of creating a new db table.
I am planning on building a generic “Rate everything” plugin for wordpress/buddypress and I was initially going to simply create my own table. In…[Read more]
-
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]
-
ARHistoryHub posted on the forum topic BuddyPress Like will change in 0.0.9 in the group BuddyPress Like: 13 years, 6 months ago
@imjscn @Hempsworth, I second this inquiry about the progress of the plugin. I agree with some of the comments on the plugin’s blog that this could indeed be a ‘game-changer’ with the expanded functionality. Is @Hempsworth okay? He seems to have disappeared…
- Load More
@imjscn
Active 10 years, 4 months ago
OMG, within 5 minutes, I got the $data nearly correct by the get_post_custom. Thanks!
I first use a simple query to get all ID, then Foreach ID populate data by get_post_custom.
So, each of your inviteable user is an object, each of mine is an array, need to convert. and since I use Foreach, the final result shows only one ID.
If you have time,…[Read more]
@kunalb, I got it by $data[] = (object)Array(….);
Thanks again for your helping!