Leon
Forum Replies Created
-
Hi,
I hope you had a good xmas?
I’m not quite sure I understand what you are trying to do but I would recommend trying out WP Migrate plugin if you haven’t already. It has lots of options for exporting/importing data so it may be of help.
Good luck and if you need anymore help please don’t hesitate to get in touch 🙂
Hi diddiausde,
Sorry for the delay getting back to you on this but it’s only me running this gig on my own and I’ve had a bit of a nightmare month for a few reasons so I just haven’t been able to do as much as I would like!
Anyway… I’m not really sure what is going on in your case! I’ve never had an issue importing sites running WPCM across servers. The plugin uses standard Post Types, Post Meta, Term Meta and WP Options for all of it’s settings and doesn’t create any extra tables.
Player stats for matches are stored as an array as
wp_post_meta()so I can’t see why they would not be getting migrated.To move a site from one server to another you should be able to do a search and replace on the url in your database then export the mysql file. I usually use WP Migrate Pro (free version) to do site migrations. There are no extra steps needed to migrate WPCM in particular.
I hope that helps 🙂
Hi jdgmedia,
Thanks for getting in touch!
I’ll be adding a list of the current seasons matches to the club page in league mode in the next update (2.1.5).
I hope that helps 🙂
Forum: Plugins
In reply to: [WP Club Manager - WordPress Sports Club Plugin] Team Page TemplateHi,
You need to add a taxonomy query to your WP_Query.
$args = array( 'post_type' => 'wpcm_player', 'orderby' => 'rand', 'post_status' => 'publish', 'posts_per_page' => -1, 'tax_query' => array( array( 'taxonomy' => 'wpcm_season', 'field' => 'term_id', 'terms' => 574, ), ), );Something like that should work.
I hope that helps 🙂
Forum: Plugins
In reply to: [WP Club Manager - WordPress Sports Club Plugin] No fixtures = emptyHi,
Sorry for the delay getting back to you!
I took the decision to remove the text when there are no fixtures as if you are using the shortcode to display matches by month and add shortcodes at the beginning of the season then you get a page of ‘No fixtures’ text.
Maybe I’ll look into adding a filter that you can use to add a message if needed.
Forum: Plugins
In reply to: [WP Club Manager - WordPress Sports Club Plugin] Legue TablesHi Lauri,
Sorry for the delay getting back to you!
The Played sorting option refers to the number of games played not head-to-head games between the clubs.
I am working on a head-to-head sort option and hopefully it will be ready in the very near future 🙂
Cheers
Forum: Plugins
In reply to: [WP Club Manager - WordPress Sports Club Plugin] Wrong country nameHi Lena,
Thanks for pointing that out, I’ll get it changed in the next release 🙂
Cheers
Thanks for taking the time to leave a review, it is very much appreciated 🙂
Thanks for taking the time to leave a review, it is very much appreciated 🙂
Forum: Reviews
In reply to: [WP Club Manager - WordPress Sports Club Plugin] Performance Issues.Thanks for the review 🙂
I would just like to say that maybe your issue in the support forum could be causing longer delays in the admin and possibly the front-end.
The plugin has a built-in cache which stores the output of shortcodes and widgets as a transient which is then output on the front-end without making a WP query to the database. Combined with a performance plugin, like WP Super Cache or something similar you can get a site performing quite quick.
I am constantly looking at ways to improve the plugin so I appreciate your feedback.
Forum: Plugins
In reply to: [WP Club Manager - WordPress Sports Club Plugin] PHP notice report.Hi,
Sorry you are having an issue!
The notice implies that you have a match created that doesn’t have a season set. Matches must have a season assigned to them. Double-check your matches to make sure a season has been assigned to each.
Let me know if that doesn’t work.
Cheers
Hi Vishal,
I’ve replied to you on your support ticket but I’ll post the reply below for reference 🙂
I’ll try to describe the easiest way to customize your theme, hopefully it will be enough to get you set up 🙂
Firstly you should create a child theme. This means you can update JNews without losing your customizations so it really is important you do this.
I do believe JNews comes with a child theme so you can use that.
Add a folder called
wpclubmanagerto that child theme then create and add 4 files to that folder called:single-club.php
single-match.php
single-player.php
single-staff.phpYou should now have a child theme structure that looks like this:
jnews-child
– – style.css
– – functions.php
wpclubmanager
– – single-club.php
– – single-match.php
– – single-player.php
– – single-staff.phpFrom your JNews theme copy the page.php file and paste the contents into each of those 4 wpclubmanager files. Now you need to locate the ‘WordPress Loop’ inside of those files and replace it with my plugins ‘loop’.
I don’t know the theme so can’t tell you exactly where the loop is but look for:
<?php the_content(); ?>That needs to be replaced with:
<?php wpclubmanager_get_template_part( 'content', 'single-player' ); ?>in each page. Make sure to change the second parameter for each page respectively.
That’s it! Once you activate the child theme then you pages should work correctly.
I hope that is of help to anybody in this situation 🙂
Hi,
I’m just getting the release ready for today and I’ve just double checked your shortcode.
I got it to work as expected by replacing the
”with"in your shortcode. You have a mixture of quotation marks in your example above.Could that be your issue?
Hi,
Sorry for the delay in the release of the next update!
It will be released either tonight or tomorrow, thanks for your patience 🙂
Hi,
Not sure what the issue could be there! I’ll do a bit of testing and see if I can find out what’s going on. I’m releasing an update in the next few days so if something needs fixing it will be in there.
If I need more info I’ll get in touch.
Cheers