109 comments found.
Few problems..
I’m helping a friend install this for you. But, footer/side bar is messed up.
http://i.imgur.com/ARWA04r.pngAlso, cart on top right drop down does nothing.
Hello there,
Thank you for purchasing our theme and for reaching us. I believe its the admin toolbar and its due to some missing files. Can you please share with us your FTP and WP admin panel details to our support email ? I will look into this.
Thanks, Ibrahim
Hello, I have to ask him permission to hand out that info. In the meantime, I installed all required plugins. Also for theme upload via ftp, does the child theme go inside the main sportexx theme wp-content/themes/sportexx-child) or is it wp-content/themes/sportexx/sportexx-child?
Thank you Chad. Let us know once you have the details. You should upload the theme via Apperance > Add New. If you are trying via FTP it should be wp-content/themes/sportexx-child
Hello! Ho to change shop page banner?
Hello there,
Thank you for your question. The banner in the shop page is called “Jumbotron”. You can navigate to Static Blocks > Jumbotron to edit an existing banner or create a new one. ( Example: http://docs.transvelo.com/sportexx/setup/static_content.html )
Once you create a new one, you can assign it here : Sportexx > Shop > Shop Page Jumbotron.
http://docs.transvelo.com/sportexx/theme_options_panel/shop.htmlI hope this answers your question. Also I don’t see “purchased” tag, did you use a different account to purchase the theme ?
Thanks, Ibrahim
Hello! I upload the theme and when i install and activate he plugins the site goes down. Something is failing, what can be?
Hello there,
Thank you for purchasing our theme and for reaching us. I am not sure what exactly is the reason. Can you please email our support with your FTP and WP admin panel details ? I will check and get back to you.
Thanks, Ibrahim
Sure, Ive just sent you an email!
Hello there,
I have received your email. The error you get is a fatal error due to memory limit. I catched the error by enabling WP_Debug
Please follow the suggestions given here : https://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/
Should you require further assistance please do not hesitate to ask.
Thanks, Ibrahim
The shortcode blog is with the author and fixed date , does not follow the current information. see: http://www.brazilmuscle.com.br/brazil-muscle/
There is a very large space from row to row I would adjust that, like the default theme .
see between Marcas and Nosso Blog
Hello there,
Thank you for purchasing our theme and for reaching us.
Please update the theme to v1.0.5 which has resolved your point 1.
As regards the spacing, please click on the row that contains the blog element and click on “Design Options” tab. In that tab, you can now choose margin as a negative margin like for ex. -15px to remove the spacing between 2 elements.
Should you have any other questions please do not hesitate to ask.
Thanks, Ibrahim
So, will it be retina ready or not?
Also, from your conversation with meanwhileonearth it’s not clear, did you make up or not? I see that he didn’t return this theme, but I wonder how it ended. He made a strong point against purchasing your theme, so I still doubt.
Hello there,
Thank you for your interest in our theme. No, the theme is not advertised as retina ready.
The theme does not use or distribute any images except for 2 files which are favicon and a placeholder image. So there aren’t any special steps to make your website retina-ready with this theme.
Making a website retina-ready means we should have 2 versions of the same image one in normal resolution and another in 2x resolution. Its your content and your images, so you should have 2 versions of your image and then use a plugin like this :
https://wordpress.org/plugins/wp-retina-2x/screenshots/to make it retina ready. The theme does not use any images so there are no steps required from our side to make the website retina ready.
I hope this explains about retina-ready compatibility of the theme.
Should you have any other questions please do not hesitate to ask.
Thanks, Ibrahim
Plugin? Why don’t you want to upgrade your theme, so your users won’t have to use a third-party plugin?
I asked about situation with meanwhileonearth, please answer, it bothers me.
Sir,
Even the themes that advertise as “retina-ready” distribute this plugin.
Regarding the situation with meanwhileonearth, Envato handles refund requests and I haven’t been notified of any refunds.
Thanks, Ibrahim
However I will be adding retina-support in the next version which I will be releasing next week.
Hello there,
You can read about Shane’s reply here : http://themeforest.net/comments/11322009
Thanks, Ibrahim
I’m having trouble to enter the marks , did all configuration, functions normally , but when I click on the link of the brand , of 404
see : http://www.brazilmuscle.com.br/pa_marca/probiotica/
home : http://www.brazilmuscle.com.br/brazil-muscle/what to do?
Hello there
Thank you for purchasing our theme and for reaching us. Please email our support with your FTP and WP admin panel details and I will look into this issue for you.
Thanks Ibrahim
You did an excellent theme it’s great. I just want to know if i can make the following changes:
1. Remove “Compare” button from the product page.
2. Remove rate stars from product page. (i know it’s weard but my client want it like that).
3. Add content above and below the current product page (i need to add a few pictures before the purchase information).
I look at the documentation but i can’t find this options. Thanks!!!
Hello Jared,
Thank you for purchasing our theme and for reaching us. We appreciate your feedback. To answer your questions :
1. If you do not wish to have compare button you can simply disable the YITH WooCompare plugin from plugins page in your admin dashboard.
2. Do you want to remove ratings as well as the ability to rate or just the rating only ? Please let us know.
3. I am not sure if I understand you correctly. Can you please help us understand with a screenshot ?
Should you have any other questions please do not hesitate to ask. We are happy to help.
Thanks Ibrahim
Thanks for the fast support,
- The first point was resolved, thanks!!! - Sorry, here goes the screenshot http://www.awesomescreenshot.com/image/642013/528a5cd03f8c7953194cb2a627c2f0a3
Red: Remove Yellow: Add more content before and after main producto content.
By the way, i don’t know what am i doing wrong. In “list view” the add to cart button get deformed here the SS http://www.awesomescreenshot.com/image/642482/daf932462182d540d150ed9b185483d7
Thanks again, and i appreciate your support.
Thanks Jared for your explanation. I can also see what you mean in the next screenshot.
To add code above product, you need to use an action hook. Can I ask you if the content above the product is going to be the same for all products or it will vary for each product ?
Regarding the second issue, can you please email us your admin panel details ? I will take a look into this issue.
Thanks, Ibrahim
Hello Jared,
Here is the example code for you. Please paste this in your child theme’s functions.php :
function sx_child_remove_parent_function() {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 15 );
add_action( 'woocommerce_before_single_product', 'sx_child_custom_content', 20 );
}
add_action( 'wp_loaded', 'sx_child_remove_parent_function' );
function sx_child_custom_content() {
?>
<!-- Your Custom Content here -->
<div class="container" style="margin-bottom: -100px;">
<h1>Hello World</h1>
</div>
<?php
}
You can put your custom content in the area I’ve marked.
I want to buy this theme, I can imagine it being used in my current project, but there is a few things I need to make clear. 1. Why it’s not retina-ready? Is it a big issue in 2015? 2. Where is the sample-page example, and how big possibilities are with this theme in terms of customization?
Hello there,
Thank you for your interest in our theme and for reaching us with your questions :
1. The theme is not retina-ready. Honestly I did not think about making the theme retina-ready until now. I’d like to build our theme with inputs from users and now that you’ve mentioned it, I will take a detailed look and let you know if we can implement retina-ready.
2. Here is a page similar to Sample Page : http://demo.transvelo.in/wp/sportexx/pre-built-pages/terms-and-conditions/
The theme is bundled with Visual Composer which will help you to create as much as customization you wish.
If you’d like to test drive the theme before purchasing please do send us a request to our support with your email and I will setup the test drive area for you.
Thanks, Ibrahim
1. Author told me that he will contact me on monday, and tell about making this theme retina-ready. Which didn’t happen.
2. Author didn’t answer my messages since Saturday.
I wanted to talk to author first, before writing this, but he didn’t answer my messages. I’ll return the theme as soon as possible.
For potential buyers – look for a more reliable author.
Hello Shane,
I am sorry but I do not understand. I have provided you the theme for you to test and check before buying.
Thanks, Ibrahim
You told me that you will look into Retina-Ready concept and tell me if you will make your theme retina-ready or not, by Monday. Today is Wednesday, and you still didn’t provide any information. You also didn’t answer other questions. I bought this theme because I trusted you, and now I don’t.
I had the best intentions, but now I understand that if something goes wrong – I won’t receive any support. If I wouldn’t leave this comment, I guess I wouldn’t get any answers at all. Screenshots to prove my words:
Shane,
1. You will have to use support email for all requests. I provided you skype so that I can answer your queries. I am not a skype person and neither is my support team. You could have simply raised a ticket and I’d have answered thats what I said in the email. How can you call a person on skype when he is not even logged in ?
2. I told you I will give you inputs on making the theme Retina-ready on Monday. This doesn’t mean that it will be implemented on Monday. Envato required authors to update Visual Composer which was causing security issues so that took priority over everything else.
3. You weren’t even a purchased customer when I sent you the theme so you weren’t entitled to support. You did not contact us after you purchased the theme and skype is not our support channel.
Calling an author unreliable is uncalled for. I told you to buy the theme only if you are satisfied.
Anyways I posted this explanation for potential buyers and I do not expect you to accept this explanation.
For those, who are interested – we decided not to return the theme, author was highly helpful and concerned regarding EVERYTHING in this theme. It was a mistake of mine to leave such a rude comment, we’re highly satisfied with Sportexx.
Shane.
Thank you Shane for your feedback and for letting other know as well. I appreciate it.
Thanks again, Ibrahim
Cheers, I’ve bought this great theme and while setting up I experience an error on the frontpage (when activating sportxx extensions):
“Fatal error: Call to undefined function wpb_js_remove_wpautop() in /www/htdocs/w010638f/shop.aesirsports.de/wp-content/plugins/sportexx-extensions/modules/js_composer/include/shortcodes/shortcode_sportexx_banner.php on line 35”
Please, can you help me out? Whats the issue here?
This is the shop: http://shop.aesirsports.de
Okay, after updating and activating the WP Bakery Visual Composer the message dissappeared but not I get a white screen when trying to get into the backend…
Hello there,
My sincere apologies for the delay in writing back to you. I had to be away owing to personal reasons. Can you please share with us your FTP and WP admin panel details to our support ? I will check what the issue is and will resolve it for you.
Thanks again, Ibrahim
Hello Sir, i test more than 29 Themes about Speed etc.. Your Theme was under the Top3 but i have a question – i don´t like the header and want to know, is this full customizable and how many .css and .js files your theme is using without slider revolution and all the other speed-trash 
Hello Sir,
Thank you for testing out our theme and thank you for reaching us with your question. The theme uses 9 js files and 4 CSS files.
Yes, the header is fully customizable, you can override the header either via actions or using a file in your child theme.
Let me know if you have any other questions.
Thanks, Ibrahim
Hello Mr. Ibrahim, thanks for the answer. Can i send you a email with my screen-design for more details? Thanks
Hello again,
Sorry for not getting back to you earlier. We are closed during weekends. Unfortunately we are not available for custom work. However if you send me the details of the screen design, I will be able to tell you on how to achieve it.
Thanks, Ibrahim
Thats great Sir – thanks. Can you give me a eMail pls.?
You can contact us through our support email : support@transvelo.freshdesk.com
Hello, i have purchased this theme and would like to have it installed. The advertised “free installation for newbies” is what sold me.
Hello there,
Thank you for purchasing our theme. Please email our support : support@transvelo.freshdesk.com with your FTP and WP admin panel details and we’ll install it for you.
Thanks, Ibrahim
Hey I sent an email to the one you showed me but it just directed me to create an account. ...
Hello again,
You have reached the correct email address. You can simply respond to the email with your WP admin panel details and FTP details and we’ll install it for you.
Thanks, Ibrahim
nice theme, i whish you good luck with the sales
!
Thank you Eric
I appreciate your feedback…!
The theme is unresponsive if you open on iPhone it messes up and ipad
See caged.london
Hi Darren,
Thank you for reaching us again. I can see what you mean. This is due to boxed layout. I have fixed this for you.
IF you have any other questions please do not hesitate to ask.
Thanks, Ibrahim
The theme is unresponsive if you open on iPhone it messes up and ipad
Hi Darren,
Thank you for reaching us again. I can see what you mean. This is due to boxed layout. I have fixed this for you.
IF you have any other questions please do not hesitate to ask.
Thanks, Ibrahim
No maintenance mode?
Hello there,
Thank you for purchasing our theme. “Maintenance mode” is more of a plugin functionality and there are great free plugins out there. Here is one great plugin that we recommend : https://wordpress.org/plugins/wp-maintenance-mode/
Let me know if you need any other help.
Thanks, Ibrahim
great theme ! 
Thank you Eric
I appreciate your feedback !
Well i must admit install on a blank install following your instructions the demo data looks exact to the theme we paid for !!! : http://caged.london/
Looks nothing like it epic fail im gathering you configured your store elsewhere as this includes nothing
Hello there,
Can you please share with us your WP admin panel details ? I will look into your issue immediately.
Thanks, Ibrahim
I can see you have made a mistake in configuration. Please navigate to Sportexx > Shop > Brand Attribute and choose a product attribute.
It is required for the brands carousel to mention a brand attribute. Here is the screen where you will have to make the change : http://docs.transvelo.in/sportexx/theme_options_panel/shop.html
Please let me know if you need further help.
Thanks, Ibrahim
I have changed you to full admin you can change everything on it I just want it to be the same as theme please thank you
Hello again,
I have not received any admin panel access. Can you please send them to our support email support@transvelo.freshdesk.com ? I will setup the theme like it is in the demo for you.
Thanks, Ibrahim
I was able to retrieve the password via password reset and have setup the theme for you. The theme is now set. Please take a look.
Should you have any questions or require assistance, please do not hesitate to ask. We are happy to help.
Thanks
Visual Composer out of date and when you try to update states unlicensed version
Hello there,
Thank you for purchasing our theme and thank you for reaching us. Visual Composer is bundled with the theme and is distributed under “In-Stock License”. You will not be able to update the plugin directly. However the update is provided via the theme. We have submitted a theme update. Once approved you can update the theme and then update Visual Composer.
If you have any other questions, please do not hesitate to ask.
Thanks, Ibrahim
Nice design, good luck!
Oh thank you
Appreciate it 
Very nice, clean and modern theme. GLWS 
Thank you very much
I appreciate your feedback 