107 comments found.
THIRD ATTEMPT
HELP ‘M ASKING FOR MORE THAN 10 DAYS AND AM NOT ANSWERED ALREADY TRIED TO FOLLOW THE TUTORIAL 2 TIMES AND I CAN NOT ACTIVATE THE SLIDE AND THE HOME OF THE ITEM , MOST DO NOT KNOW WHAT TO DO !!!!
sorry for the delay in response. Please reply to our email and we will provide the support needed.
hi id downloaded this theme and in trying to instal the plugins from the: themeforest-4410174-mj-simple-responsive-woocommerce-theme FILE wile in uploading on WP ive this error msg: Installing Plugin from uploaded file: plugins.zip Unpacking the package…
Installing the plugin…
The package could not be installed. No valid plugins were found.
Plugin install failed.
what do i do wrong?! please help me, thanks!
Hello,
You can try uploading plugins using FTP client filezilla. Copy all plugins in to WP-content-> plugin folder and then go to admin side and active plugins.
If you faced any difficulty with this do send us your FTP and admin details and we will help you with that.
thanks i got it!
I am not receiving support My Money Back !!! attention themeforest!!!
I can not set the home page and slide, my theme came with error, since the data passed and nobody answers me !
WE are on your request and will reply soon
Please check documentation it is covered already on settings page.
I have a heavily edited version of V8 of this theme so I really don’t want to start again from scratch with version 9. Can you advise what I need to change in 8 to get the responsive menu to work when on smaller screens?
btn btn-navbar appears but nothing happens when you click….
Many thanks
Please visit profile page and email us your site URL, admin and FTP details and I will check the issue.
Thank you – I had you email from a previous support issue – just sent the information across to you. Many thanks…
can i have slider similar to the one in the store page or any other slider on a normal page. if so how?
Yes, you can go to theme folder and open store.php. Then copy code on line no.7 to 62 and paste this code in your specific page at top after <?php get_header(); ?> code.
my website global-pots.com it not responsive why????
I have checked your website and it is fully responsive, But if you do any customiziation in default theme structure then you will also have to make sure you define the relevant css properties in media query.
Thanks
thank for your help. but my used ipad 2 it not responsive. i think error by nivo slider
Please check with nivoslider support if they provide responsive version?
If they do not come back to us and we will find solution for you.
nivo slider haven’t responsive version. @@. please help me
Please email us and out customization time will give you quote for this.
Hello. Small question. Are the theme supports rtl?
yes it does support RTL
how do i get the righthand side bar to display???
and also i can’t see my main menu??
All instruction is available in help section folder. Please read installation guide and documentation file and install theme step by step.
read instructions still cannot get slideshow to work . I have emailed your support with no response!
I do not have “theme options’’ under my appearance in wordpress!
I now can see my theme options however still cannot get slideshow or right hand sidebar to work.
Visit profile page and send us FTP and admin details. Please also mention the issue in email. We will resolve the issue for you.
sent these through via the contact form on your profile page yesterday.
still waiting for some support!!!!
replied on email
Hi, dasinfomedia.
After last actualization I have a big issue with page product. Image of products are big and in a low quality as you can see at this link:
http://fundascliper.com/producto/nudo-granate-2/I need a solution, please.
Please download latest version. These issue are already resolved in latest package.
Hi, have have several issues I cant seem to find answers for, appreciate if you can assist: 1. How can I stop image slider images distorting when browser scales 2. How to rename or remove “stay in touch” and “our brands” from bottom of home page 3. Menus are not working, I set new menu and it uses old for Top and Primary. How can I fix this?
Please visit profile page and send us FTP and admin details.
Hi I sent details can you please assist im several weeks over deadline and cant sort this out
1. please send us screenshot of that image slider we will try resovle your issue 2. Go to Wp-admin-> Theme Editor> Home.php and moify the Stay in touch or Our Brands part to suit your need. 3. You create new menu and name it as ” mainmenu ” and don’t select any top or primary menu.
thanks for the updates….
/ * Hide slideshow product category / needed to be changed to
/ Hide slideshow product category */ – this has now worked.
CSS fix does not have done the trick though….
http://seatingworld.co.uk/wordpress/shop-2/I would like the “PRODUCT CATEGORIES” to be exactly the same format as the menu above it so I can remove the custom menu and just have the product categories shown.
Thanks Deb
Visit profile page and send us FTP and admin details.
I had your email from when you had a look at the Joomla template – just sent over the access details for the Wordpress one – thank you!
Can you please confirm you revived the access details yesterday? – any ideas when you will be able to sort this please?
Please send again as not received the details.
just resent – did you get it ok?
ok have it now
1. I don’t want to hide the sub categories – I want them to be displayed in the same format that the menu is – showing on hover – what css do I need to add to get the categories to show like the custom menu does?
2. I have added the widget tot he side bar – how do I get the side bar on the products page?
3. the code you sent above is giving a syntax error!
1) read comments and past code.
/replace this code mj-template.css file line 1165 */
.product-categories li a:hover {
background: url("../images/topbar-arrow-white.png") no-repeat scroll 95% center hsl(0, 71%, 39%)!important;
color: hsl(0, 0%, 100%) !important;
}
/replace this code mj-template.css line 753 /
.product-categories li a {
background: url("../images/slategray-arrow.png") no-repeat scroll 95% center hsla(0, 0%, 0%, 0)!important;
color: hsl(0, 0%, 25%);
display: block;
padding: 10px;
}
/past this code in mj-template.css file/
.widget_product_categories .children {
margin-left: 0 !important;
padding-left: 10px;
}
2) can not provide side bar in product page.
3) This code is working our theme, plz check and past proper code.
/ * Hide slideshow product category */
add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );
function get_subcategory_terms( $terms, $taxonomies, $args ) {
$new_terms = array();
// if a product category and on the shop page
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin()) {
foreach ( $terms as $key => $term ) {
if ( ! in_array( $term->slug, array( 'slideshow' ) ) ) {
$new_terms[] = $term;
}
}
$terms = $new_terms;
}
return $terms;
}
Thanks
There appears to be an issue with the “Product Categorises” site bar – it is not hiding the “Children”.
I have added a custom menu to the same page and it works fine – please advise how I can get the same effect on the Categories http://seatingworld.co.uk/wordpress/shop-2/Also, how to I add a sidebar to the “category” page
http://seatingworld.co.uk/wordpress/product-category/beds/I want to be able to use the price filter etc.
Thanks
1) If you want to hide children categories, past this code in style.css file.
.widget_product_categories .children { display: none; }
2) Woo commerce plugin can not provide price filtering in product listing page but woo commerce provide price filtering widget. You can go widget page and add Woocommerce Price Filter widget in specific sidebar.
3) Hide slideshow category.You can go to theme root directory and open function.php file and past this code in this file.
add_filter( ‘get_terms’, ‘get_subcategory_terms’, 10, 3 ); function get_subcategory_terms( $terms, $taxonomies, $args ) { $new_terms = array(); // if a product category and on the shop page if ( in_array( ‘product_cat’, $taxonomies ) && ! is_admin()) { foreach ( $terms as $key => $term ) { if ( ! in_array( $term->slug, array( ‘slideshow’ ) ) ) { $new_terms[] = $term; } } $terms = $new_terms; } return $terms; }
I have gone through all the CSS and changed everything so they look the same…..so it is possible….
Really I think this is what I was expecting to have purchased…..did not expect to have as to re-design it myself!
I am glad that it worked out for you.
I purchased this as it stated that “Mj Cart – Responsive Virtuemart Template” was available for Wordpress…...BUT it does not look the same when you add it to Wordpress…...navigation and areas all appear different – how do I get it to look like the Joomla version?
There will be some changes on home page for WP version as shown in demo. Product listing and details page are almost same. It tries to use woocommerce natural flow.
Hello there!
I’ve bought MJ Simple theme all is ok, but dumb question: how to attach images to a slider?
Okay. I’ve figured out how to display products in slider. But there are 2 more problems: 1. How to hide ‘slideshow’ group from menu? 2. Product slide is broken, as you can see on http://http://easy-robo.ru/
Hello,
You can go theme root directory and open function.php file and past this code in this file.
add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );
function get_subcategory_terms( $terms, $taxonomies, $args ) {
$new_terms = array();
// if a product category and on the shop page
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin()) {
foreach ( $terms as $key => $term ) {
if ( ! in_array( $term->slug, array( 'slideshow' ) ) ) {
$new_terms[] = $term;
}
}
$terms = $new_terms;
}
return $terms;
}
Thanks.
Hi, I want to use this template with ecwid. Can the WooCommerce plugins connect to ecwid to bring in featurted products etc?
Also, every time I try to add slideshow in widgekit word press freezes. Any ideas?
you can create link named as feature products and associate ecwid page with that link. If you can explain more in slideshow part I will be able to help you out.
Ever since I upgraded my theme and WooCommerce I only get this at the bottom of my checkout page, no way to checkout.
Fatal error: Call to undefined method WC_Shipping::get_available_shipping_methods() in /home/content/15/10015115/html/gicoffee/wp-content/themes/MJ-Simple_theme-new/woocommerce/checkout/review-order.php on line 12
please visit profile page and email us issue details. We will reply with updated review-order.php file.