Real Soccer - Sport Clubs Responsive WP Theme

Contents

1. How To Hide Player Status tab on single player page

2. where i change the value of points compiled for a win for the league table ?

3. Translating the theme/plugin using poedit application

4. Adding Instagram icon in the header (Themes in second framework version.)

5. Slider Activation Warning

6. Where can I get my purchase code?

7. Server Configuration Requirements

1. How To Hide Player Status tab on single player page

to hide player status : replace your single-player.php file with this one => http://cl.ly/YtHX/download/single-player.php

path of that file is : /wp-content/plugins/goodlayers-soccer/single-player.php:

Cheers !

2. where i change the value of points compiled for a win for the league table ?

in include/league-table-item.php file, around line 76, try changing 

$league_table[get_the_title()]['pts'] = ($league_table[get_the_title()]['overall-win'] * 3) + $league_table[get_the_title()]['overall-draw'];

to :

$league_table[get_the_title()]['pts'] = ($league_table[get_the_title()]['overall-win'] * 2) + $league_table[get_the_title()]['overall-draw'];

and save file .  in above code 2 is just example . change it as per need .

3. Translating the theme/plugin using poedit application

You can download the application here http://poedit.net/

4. Adding Instagram icon in the header (Themes in second framework version.)

To add instagram social icon in header, please follow our steps below:

+ First, please download custom file below:

https://drive.google.com/drive/folders/0B_H4npZEAp4_RTNzdVVTTkRybVU?usp=sharing

+ Upload both image in:

+ wp-content/themes/THEMENAME/images/dark/social-icon
+ wp-content/themes/THEMENAME/images/light/social-icon
+ Then replace gdlr-social-icon.php file in: wp-content/themes/THEMENAME/include/gdlr-social-icon.php

+ Check theme option and fill instagram link now.

+ Then check your website.

5. Slider Activation Warning

After you installed the theme and slider plugin properly, you may still see the warning like these...

For Revolution Slider, it looks like this : 


For Layer Slider, will look like this : 



Please note that you can't put the theme's purchase code in that field. It will not work.

The purchase code( or activation code) for slider is not necessary. It's used for auto updater for the slider. However, the slider that's included in this theme is being used as 'Extended license', it's considered as a bonus file which doesn't support auto updater(and their slider templates.). 

If you need to use auto updater, you have to purchase slider's regular license separately. But as we mentioned. It's not necessary, you can still use slider that come with the theme like its' regular license and we still keep pushing slider's update in future theme's version as well ;)

6. Where can I get my purchase code?

Where can I get my purchase code?

If you're submitting ticket without using Envato login, you will need purchase code instead. Purchase code can be obtained in your Themeforest profile page, click on the tab "Download", from the item list, click on the button "Download" of the item and you will see where to get the code. See this 


7. Server Configuration Requirements

Below is the list of main server setting parameters and the recommended values. If you can't change it by yourself, you must contact your host provider to do it.

post_max_size: Sets max size of post data allowed. 

post_max_size = 25M 

upload_max_filesize: Sets the maximum size of an uploaded file.

upload_max_filesize = 40M 

max_input_time: Sets the maximum time in seconds a script is allowed to parse input data, like POST and GET 

max_input_time = 300 

max_execution_time: Sets the maximum time in seconds a script is allowed to run before it is terminated by the parser. 

max_execution_time = 300

memory_limit: Sets the maximum amount of memory in bytes that a script is allowed to allocate 

memory_limit = 256M 

max_input_vars: Sets the number of input variables may be accepted 

max_input_vars = 4000

If suhosin patch is installed, change the following parameters to the specified values.

php_value suhosin.post.max_array_depth 100 

php_value suhosin.post.max_array_index_length 128 

php_value suhosin.post.max_name_length 128 

php_value suhosin.post.max_totalname_length 512 

php_value suhosin.post.max_value_length 2000000 

php_value suhosin.post.max_vars 5000 

php_value suhosin.request.max_array_depth 100 

php_value suhosin.request.max_array_index_length 128 

php_value suhosin.request.max_name_length 128 

php_value suhosin.request.max_totalname_length 512 

php_value suhosin.request.max_value_length 2000000 

php_value suhosin.request.max_vars 5000


*Your site might not really consume these values but what we recommended is just to make sure that although your site is large, the setting up process will get smooth. You may try to decrease some value if you feel it's too big or you can decrease values after you finish setting up website.