Discussion on Electro Electronics Store WooCommerce Theme

Discussion on Electro Electronics Store WooCommerce Theme

Cart 25,845 sales
Recently Updated
Well Documented

MadrasThemes supports this item

Supported

This author's response time can be up to 1 business day.

7928 comments found.

On a single product page, i noticed a very large gap between the product image and the description section How can this be removed?

Also, certain products don’t have any accessories – how can we disable the accessories tab for such products?

Screenshot : http://prntscr.com/levvr8

Hello there,

Thank you for reaching us. Please add this custom CSS to Appearance > Customize > Additional CSS to remove the gap :

.single-product.full-width .single-product-wrapper { margin-bottom: 15px; }

As for accessories, if you don’t add any products to accessories in edit tab, it will not appear.

Hope this clarifies. Let us know if you have any other questions or need further help with the theme.

Thanks, Ibrahim

Thanks. This piece of css worked! Also, thanks for the help disabling the Accessories tab.

hi there my dear. I want to add additional buttons before and after ‘add to cart’. so many themes support this feature (for example, woodmart theme). Is it possible to add custom buttons without coding? or can you help us to setup this buttons which one will be default for all products? Cheers

Hello there,

Thank you for purchasing our theme and for reaching us. All additional buttons will have to be added via custom code only ( this holds true for Woodmart theme as well ). Some plugins add this custom code, some themes re-arrange the hooks. For example, in our theme, we’ve added wishlist and compare as additional links, you can add any additional code via custom code by hooking the function to the actions.

Hope this clarifies. Let us know if you have any other questions or need further help with the theme.

Thanks, Ibrahim

is it possible to add more tab in single product? like this pic https://i.imgur.com/Ee3Cvqr.jpg

Hello there,

Thank you for your interest in our theme. You can add/edit product tabs using custom code : https://docs.woocommerce.com/document/editing-product-data-tabs/ or using a tab manager plugin like this : https://wordpress.org/plugins/wpb-woocommerce-custom-tab-manager/

Hope this helps. Let us know if you have any other questions or need further help.

Thanks, Ibrahim

Hi, Is there a way to remove the ‘Availability’ section next to the brand logo on the single product page?

Also, can we replace the price with a ‘inquire now’ button?

Screenshot : http://prntscr.com/levhcp

Would really appreciate your support on this as usual…

Plz ignore this request. I’ve managed to get this done via the child theme function as per your instructions.

Thanks

Hello again,

Glad your issue is resolved. Child theme is recommended for all custom modifications. Otherwise your changes will be lost during updates.

Thanks, Ibrahim

Got stupid error: -> Can not enter many catogories slug with comma: In Home v7 -> Vertical Menu, Slider, Catergory & banners -> Category Block

I need 5mins to lookup your code, in inc/stucture/homepage.php -> electro_product_categories_list() -> slug always is string -> not explode if have comma

Hello there,

Thank you for reaching us. Please update the theme. We’ve fixed the issue in v2.2.2.

Thanks, Ibrahim

Hi again, Can you plz advise how we can resize the theme logo? I’ve tried uploading my logo in various sizes and it still blows up to a large size.

Is there a way to control the size of the logo in both non-scroll and sticky scroll situations?

Thanks

To add to this comment, please note that i noticed that the logo size looks perfect when i enable the option for ‘Off Canvas Menu in Desktop ?’

I don’t need the off-canvas menu and also want the logo to not be very large. Kindly advise.

Hello again,

Please use this custom CSS to adjust the logo size :

.electro-navbar-inner .departments-menu-v2, .electro-navigation .departments-menu-v2, .header-v2 .header-logo-area, .masthead .header-logo-area {
    min-width: auto;
    max-width: none;
}
@media (min-width: 768px) { 
    .masthead .header-logo-area {
        flex: 0 0 20%;
    }
}

Hope this helps. Let us know if you have any other questions or need further help.

Thanks, Ibrahim

Thanks. That worked as well!

Hi, I just bought this theme and it’s absolutely great so far!

Is there a way that i can remove all Electro branding from the theme so anyone who looks at the source code cannot identify this to be a purchased theme?

Plz advice

Hello there,

Thank you for purchasing our theme and for reaching us. Unfortunately there are no automatic ways to remove references to electro. You’ll have to manually remove from all places in the code.

It is a requirement in TF that we prefix all our function names and custom classes with the theme name.

Hope this clarifies. Let us know if you have any other questions or need further help with the theme.

Thanks, Ibrahim

Thanks Ibrahim.

Hello , I bought a theme tomorrow but when i import data it’s not getting images with it. Can you please guide me why images are not importing ?

Hello there,

Thank you for purchasing our theme and for reaching us. Our dummy content will only contain placeholder images and not the real product image as we do not have the rights to distribute theme.

Placeholder images are easier to import, easier to identify and remove them and saves you from DMCA takedown notice from copyright holders.

Hope this clarifies. Let us know if you have any other questions or need further help with the theme.

Thanks, Ibrahim

Hi, you have this for magento?

Hello there,

Thank you for your interest in our theme. We are WooCommerce developers and we’ve developed the WooCommerce version of Electro. We did not develop Magento version but I suppose there is an Electro Magento but we are not aware of it.

Hope this clarifies. Let us know if you have any other questions or need further help with the theme.

Thanks, Ibrahim

Hello Ibrahim. Thank you for one of the best template. I have only three questions:

1. How to display the “product-thumbnail” in the cart page on mobile?

2. How to display “add to cart” button in the grid/list on mobile (add item to the cart without opening item page)?

3. How to add quanity input box near the “add to cart” button in the grid/list on mobile and desktop?

Hello there,

Thank you for purchasing our theme and for reaching us. To answer your questions :

1. Please add this custom CSS to Appearance > Customize > Additional CSS :

https://gist.github.com/ibndawood/24e7cdec811e38390f53ed59ea1c4c1f

2. Please add this custom CSS to Appearance > Customize > Additional CSS :

https://gist.github.com/ibndawood/19fc3e10c4d19c9c3a2e074a157ec676

3. Unfortunately it is not possible to add quantity box. You’ll have to rely on third-party plugins or use custom PHP code.

Hope this helps. Let us know if you have any other questions or need further help.

Thanks, Ibrahim

Hi,

i’am at optimizing the speed of my site for google and found some problems.

your theme is always loading the fonts https://fonts.googleapis.com/css?family=Open+Sans:400,600,700

i have set Use default font scheme ? to NO but they still get imported

Can you add an option to disable all font’s and fontawesome on a future update

This also get loaded: /electro/assets/css/font-electro.css /electro/assets/fonts/font-electro.woff and fontawesome…

b. regards

Hello there,

Thank you for reaching us. The theme uses Open Sans which is the default font family and hence it is loaded. Removing them would not improve your site’s speed as they are small size, non-blocking and are delivered from Google’s CDN. There is no need to score a perfect score in Google PageSpeed. Ref: https://wp-rocket.me/blog/the-truth-about-google-pagespeed-insights/

Icon fonts are lighter alternative to using images. I cannot image not using icons in your website. You can de-queue them from your child theme.

Hope this helps. Let us know if you have any other questions or need further help.

Thanks, Ibrahim

Ηι! I can not get on the page: https://www.wizbox.gr/wizbox.jpg Any idea?

I checked it and the problem remains.

Any idea?

Hello again,

Please clarify what is the JS error that you are getting.

Thanks, Ibrahim

Website slows down terribly after upgrading woocommerce plugin. Kindly look into it. I have mailed details of my FTP and WP-Admin to support. Due to reverting back of Woocommerce to 3.4.7 (Where theme works fine), Few other plugins are not working due to old version of woocommerce. Kindly assist.

Please give me your ticket number.

32074 I have mentioned all the Admin and FTP related details

Thanks for the support.

Hello Mr. Ibrahim, I really love your theme. Right now I set it up home-v7 for my homepage and there is something that you need to improve on home-v7, I have some issues 1, The home-v7 template appears to be a bug in the “Vertical Menu, Slider, Category & banners” section. By filling out the “Category Block” with one/more than one category slug, the site does change anything.

2. Products with image 1 & 2, I can set different category under different slug, but on my home page, if I click on a category, it brings a hole new page under the category, I think it could be better if it changes the product only under the same category in the same block. And It could be more better, if we can put a carousal on the block. I don’t know, we can or not..

03. Let me how to set different category operator..

I’m new with your theme. I really love Electro. Hopefully I’ll get more support from you. Please, let me know if you have any article that I can learn deeply about Electro

Thank you brother Amil

Thank you Ibrahim for prompt response

Hello Ibrahim, I don’t see any changes made as you commit to change!!

We haven’t included this change yet in our update.

Respected I noticed that your product does not work with WooCommerce Composite Products

Hello there,

Thank you for purchasing our theme and for reaching us. Can you please clarify what is the issue you are facing ?

Thanks, Ibrahim

There is a conflict when all three connections are involved Electro Version 2.2.1/2 – WPBakery Page Builder 5.5.5 – Yoast SEO Premium 9.0.3. I recorded video problems https://zoom.rs/problem2.mp4

Hello there,

Thank you for the details. Please email our support from here : https://themeforest.net/item/electro-electronics-store-woocommerce-theme/15720624/support and let us know your WP admin details and FTP ( or cPanel ) details. I will take a look into the issue.

Thanks, Ibrahim

Hi, we have just updated the woo commerce plugin and now some CSS is not working as it should https://clubhoreca.ca/ in the bottom of the footer element “featured Products” Onsale, etc.

http://prntscr.com/ldjo9j

Please let me know how I can fix it.

where i can update the update

The theme can be updated in 3 ways :

1. Automatically : You can use Envato Market plugin to update the theme automatically. Instructions here : https://ibndawood.com/how-to-update-a-themeforest-wordpress-theme-or-a-codecanyon-wordpress-plugin/

2. Semi-Automatically : Sometimes (1) does not work. You should install this plugin : https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/ , download the latest installable WP theme zip file from your Themeforest downloads page and then upload it via Appearance > Themes > Add New > Upload Theme and upload the zip file. The “easy upgrades” plugin will backup the old theme and install the new one.

3. Manually : You should download the latest installable WP theme from your themeforest downloads page, rename your current theme folder in wp-content/themes folder, unzip the downloaded WP theme from your Themeforest downloads page and upload it to wp-content/themes folder.

Please note that updating a theme will override any custom changes that you make to the parent theme. Hence we recommend using a child theme. A child theme is not meant to be updated and should contain only your custom changes. 

Thank you it has fixed

when i try go to the plugins page i keep getting redirected to the redux welcome page do you know why this is?

Hello there,

Thank you for reaching us. I am not sure what it the cause of the redirection issue. Please try clearing your browser and server caches and try again.

Thanks, Ibrahim

Thanks :D

Hi, I cannot see the “availability: in stock” in single product page

Hello there,

Thank you for purchasing our theme and for reaching us. Stock availability is visible only if you’ve enabled inventory management. Hope this clarifies. Let us know if you have any other questions or need further help with the theme.

Thanks, Ibrahim

Why FontAwesome Icons aren’t showing on my site?

Please give me your website URL for me to check.

Thanks.

There is a fontawesome code generated by Uber menu plugin that you are using. Please contact uber menu plugin developer regarding this or de-activate the plugin.

Hope this helps. Let us know if you have any other questions or need further help.

Thanks, Ibrahim

Hello Ibrahim, thanks for a super template!

Problems with Electro 2.2.1:

1) 1000 Russian rubles and more prices do not fit into a line in the basket (maybe with dollars too). Screen resolution 1366 * 768 – https://www.dropbox.com/s/ky0z2cf15q5bmzm/Ruble%20prices.JPG?dl=0 And is it possible to view items photos in the cart on mobile devices?

2) YITH WooCommerce Vishlist 2.2.5 does not work correctly: when you click on “Wishlist” near the basket, it does not link to /wishlist, and when you click “Add to Wishlist” on the product, it link: /view/VIA6VEWFXAFG – error 404

3) About non-standard Grid/List Views. I disabled reviews for products (Woocommerce – Settings – Products), but stars with zero ratings are still present, how to remove them? And how to increase titles to three lines, or just tell in which template file to search? https://www.dropbox.com/s/xrytyx6k0n18caq/Grid%20Extended.JPG?dl=0

Best regards, Prokhor.

Hello Prokohr,

Thank you for purchasing our theme and for reaching us. I also appreciate your feedback. We are happy to answer your questions :

1. Can you please try adding this CSS to Appearance > Customize > Additional CSS :

.woocommerce-Price-amount {
    white-space: nowrap;
}

2. Please make sure you’ve assigned a wishlist page in YITH > Wishlist > Wishlist Page.

3. Please use this custom CSS :

.owl-item>.product .product-rating, li.product .product-rating { display: none; }
@media (min-width: 992px) {
    .woocommerce-loop-product__title { 
        height: 3.85716em;
    }
}

Hope this helps. Let us know if you have any other questions or need further help.

Thanks, Ibrahim

Thank you Ibrahim! Best support ever! 1-2-3 works well!

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey