Forum Replies Created
-
AuthorPosts
-
in reply to: can't seem to get congrats pop ups to work #8171
Hmm. I guess my biggest and first question is if the modal output is actually showing up in the source code on the frontend, so that it’s ready to be used.
The output is attached to the
wp_footer
hook, and set to display:none by default. If it is output already, then the next part I’m curious about is if there’s perhaps a javascript/jQuery conflict going on that may prevent it from popping up like expected.Under the “Plugins” menu in your WP Admin menu, there is an “Add New” submenu item. Click that.
On that page, you’ll see a bunch of recommended plugins, but at the top you’ll see a button that says “Upload plugin”, which you will want to click. You’ll be taken to a screen where you have a basic file input that you can use to select the zip file you downloaded from BadgeOS.org here. That’ll upload and install it for you, and you’ll be able to activate from there.
Have you installed the Reports addon via your WP Admin panel or uploaded the extracted zip contents to your wp-content/plugins folder?
Once that’s done, visit your plugins list to activate it, and then a new menu should appear in your WP Admin for it. License field should be in the BadgeOS > Settings area.
in reply to: Plugin Not Showing UP #8085The referring link addon is one that creates a new “Earned by” option when creating an achievement. It’ll be in the list of available methods.
You can see an example of the available options for it, once you have it selected as your “Earned by” method, at https://cloudup.com/cyiWPETtw_X
in reply to: Errors Creating New Boards #8084Hmm. Checking the
badgeos_leaderboard_rebuild_leaderboard
function, which is called both upon the insert of a new Leaderboard AND when the rebuild is checked. We are definitely going to be heavy on that, with 75k users.I’m curious if this should be amended to only include users who have achievements to their user. The get_users() call does allow for meta queries.
At worst, this would eliminate a fair amount of the users to deal with. However, once everyone starts getting an achievement of some type, the meta key/value pair would exist for all of them and it’d be back at square one. That may or may not be an eventual reality, depending on how your site is set up and what sort of default achievements you may have.
in reply to: Installation #8083Posted reply there as well.
in reply to: Installation Erro Code #8082The Leaderboard addon is supposed to do some querying to fill in the data it’s supposed to display. It’s likely it hasn’t yet, thus the issue.
See if this helps out at all, until we get a proper release out the door for everyone.
function badgeos_leaderboard_get_leaderboards_for_embedder() { $leaderboards = badgeos_leaderboard_get_leaderboards(); $leaderboard_ids = wp_list_pluck( $leaderboards, 'ID' ); $leaderboard_names = wp_list_pluck( $leaderboards, 'post_title' ); if ( !empty( $leaderboard_ids ) && !empty( $leaderboard_names ) ) { return array_combine( $leaderboard_ids, $leaderboard_names ); } return array(); }
If it proves successful, I’ll make sure it gets committed for release
in reply to: Badge Message and Earn Badge in message #8057The Congrats Addon was released and is meant more for a real time thing than the Auto-Messages addon was.
in reply to: Errors Creating New Boards #8049I’m not going to be able to do much with just “shows a white screen”. I need some sort of error message to further debug what may be going on. If you’re familiar with the WP_DEBUG constant for WordPress, this is what you’d want to work with to get more information out of the whitescreen.
There should be a checkbox on the leaderboard setting screen to rebuild. That’s the best I can recall for this part.
in reply to: Installation Erro Code #8048Does the leaderboard have any data ready to show? Or is it acting on empty results at the time of testing?
in reply to: Installation #8047Are you able to get to the point of creating a leaderboard, even if not configured yet?
I need to figure out how to get this error to never show, but any time I’ve tried, I’ve encountered inconsistency in receiving the error, which makes it difficult.
in reply to: Problems with modal position #8030Inspecting the modal popup to see what’s affecting the positioning and other properties, so that there’s a better idea of what needs to be adjusted, style-wise.
I’m not going to have some drop-in block of CSS to help, honestly. It’s always going to be dependent on the theme being used.
in reply to: Problems with modal position #8025Is this for a mobile/responsive resolution? or even just on a regular laptop with a wide browser window?
It’s possible that CSS from your current theme is causing some conflicts with this.
in reply to: Active User Report Shows Double Activity #7966I won’t call this a bug, to be honest. Steps could technically be considered achievements, if you think about it. Just more a part of a bigger, greater achievement. For a bit of an abstract example. Steps are individual classes in college/university that when combined, result in a degree, if all passed/earned. Passing each class is an achievement in itself. You get the idea.
Seeing the itemized steps would be beneficial because you could see who is how far with what, while not having achieved the ending achievement quite yet.
Regarding the widget, it may be checked to not show the steps themselves. I know we have an option for that much.
in reply to: Modal presentation on smartphone #7932View source and your browser dev tools will help determine what’s getting loaded last and what selectors are overriding what.
Regarding the custom.css stuff, if the CSS for the modals were coming from the parent theme, then that would apply, however, BadgeOS and the Congrats addon are plugins and very likely could be getting loaded after the custom.css file.
in reply to: Modal presentation on smartphone #7929Is your CSS being declared after the current CSS affecting it? The order would be important. Other question would if the selectors are matching or stronger, so that they can be properly applied. Can’t recall at the moment about how much, if any, ajax is involved as well.
in reply to: Modal presentation on smartphone #7916The selectors and markup are going to be the same as the desktop modals, so you’d be able to use your browser dev tools as necessary.
in reply to: Modal presentation on smartphone #7914Looks like the primary overall wrapper could be targeted with
#badgeos_congrats_wrap
and one of the inner wrappers is.badgeos-congrats-achievement
Feel free to also crack open the
css/badgeos-congrats.css
file that comes with the addon to see what else we already do for our limited styling.If you’re willing at the time to contribute the CSS edits you make back to the plugin, that’d be awesome and I could get it added to the code. You’d get credit for the contribution as well.
in reply to: Modal presentation on smartphone #7912I think smartphones are an area where testing actually slipped a bit and didn’t get much focus. I can’t recall hearing about much at all for it. Perhaps more surprisingly is that this is the first time the topic has been brought up to us as well.
That said, I don’t have any sort of paste-ready css fixes for anything here.
in reply to: Displaying a Promo/Coupon code with a Pop Up #7857Best suggestion I have for that last part is contacting BadgeOS directly at http://badgeos.org/contact/. I don’t work for BadgeOS directly, but am part of the product development and support.
-
AuthorPosts