web-able
Forum Replies Created
-
Forum: Plugins
In reply to: [BetPress] Losing slipsThat’s strange. Could you try to check all the slips manually by going to BetPress -> Manual actions -> click the “Check all” button. It should fix the current slips. If this happens again, please directly contact me via mail office [at] web-able [dot] com because I will need to investigate it on your environment as I can’t reproduce it on my own.
Forum: Plugins
In reply to: [BetPress] Losing slipsMost probably not all of the slip’s games are finished. Could you please post a screenshot of your losing slips (with expanded bet options)?
Forum: Plugins
In reply to: [BetPress] How do I see the slips of usersYour request has just been approved. Thanks for the feedback tho, I may add this in the next update.
Ps these forums are meant to provide support for the Lite version only.
Forum: Plugins
In reply to: [BetPress] How do I see the slips of usersEach user can see only his/her own bets. Admins can’t see users’ bets.
Forum: Plugins
In reply to: [BetPress] Bet Not Showing UpNot in the BetPress settings but the WordPress ones. Located in your-domain/wp-admin/options-general.php (admin dashboard -> Settings -> General)
Forum: Plugins
In reply to: [BetPress] Bet Not Showing UpWhat’s the timezone selected in your WordPress general settings?
Forum: Plugins
In reply to: [BetPress] Capitalizing CategoriesYou can use CSS for such things
.cat-title-bar { text-transform: capitalize; }should work.Most themes gives you a place to insert custom CSS so add it there. If not, then edit some of the .css files you already have but note that you will lose the change once you receive an update.
Forum: Plugins
In reply to: [BetPress] what is the currency used to place bets?No. BetPress has its own point scoring system.
Forum: Plugins
In reply to: [BetPress] Order players in leaderboard by points ?Good job. That’s the easiest but “hackies” way to do it. Also, it is more costly performance-wise than just making the query compatible both with MySQL and MariaDB.
If someone in the future will see this topic and apply the same solution as you, just keep in mind it requires php7 and most shared hostings doesn’t support yet. So you would want to just change
return $b['points'] <=> $a['points'];toreturn $b['points'] > $a['points] ? -1 : 1;Forum: Plugins
In reply to: [BetPress] Order players in leaderboard by points ?The information that your hosting support is providing you is not 100% correct. MariaDB is not fully compatible with MySQL and you have the real example here. It is just a more advanced query and we can see the result differs.
The code that should be changed is the query that generates the leaderboard. But most probably you will need some additional PHP code, too – depends on what’s possible in MariaDB. More specifically:
betpress_get_leaderboard_details()andbetpress_get_active_leaderboard_details()in thefunctions.phpfile. You can find their usage using any IDE/text editor.- This reply was modified 9 years, 1 month ago by web-able.
Forum: Plugins
In reply to: [BetPress] How to set up wagerThere is only one supported way of betting in BetPress and to my understandings it is called Parley but I may be wrong.
As for the layout, I am not actually sure what’s this.
I highly suggest to just play around with the plugin and figure out by yourself how the whole “betting” thing works (because it is really hard to explain with words). If you have read the documentation, then you already know all the features it provides. If it is not on the docs, then most likely there isn’t such thing.
Forum: Plugins
In reply to: [BetPress] How to set up wagerIf it is about the BetPress plugin, then you are on the right forum. Is that the case?
If yes, the flow is like this:
1. Create a page and insert the [betpress_bettings] shortcode there
2. Go to admin dashboard -> BetPress -> Bettings. Then create sport, event, bet event, categories and bet options
3. Once you are ready, activate the bet events you want to be shown on your front pageForum: Plugins
In reply to: [BetPress] New FormatThere is not a build-in way to change the format of the bettings page.
But for your specific case, you can just hide the Sport bar using CSS like
.sport-title-bar { display: none; }If your theme has a specific place to insert a CSS code, add it there. If not, you will have to directly edit some of the loaded .css files but that change will get lost once you receive an update.Forum: Plugins
In reply to: [BetPress] Affiliate systemThere is no such feature. You would need to implement your own code for this.
Forum: Plugins
In reply to: [BetPress] How to make new players registerAll the plugin’s files and folders are inside a directory called ‘betpress’ or ‘BetPress’