Digital experiences for all disciplines
New Landing › How can we help? › Themeforest Theme Support › Neighborhood › Website with errors
New Landing › How can we help? › Themeforest Theme Support › Neighborhood › Website with errors
- This topic has 28 replies, 3 voices, and was last updated 9 years by David Martin – Support.
-
Posted in: Neighborhood
-
September 9, 2015 at 7:59 am #211558
Hello,
When will be the next update?
I need to know to make my web work correctly.
Thanks.
September 9, 2015 at 4:08 pm #211749Hi,
Just confirmed with the development team and the update will be release in the next 24 hours.
Thanks-Rui
September 14, 2015 at 3:46 pm #212825Hello,
When will the next update?I need to know when I will have my website without errors.
Thank you
September 14, 2015 at 3:49 pm #212827Hi,
It was released in 9th of September( a few hours after my reply) the version 3.15
go to Appearance-> Themes and check for the update.
-Rui
September 15, 2015 at 8:39 pm #213334Sorry, I didn’t read your answer of the update.
I just updated the theme but I still have the same issues 🙁
September 16, 2015 at 3:54 pm #213708Hi,
Your variable products are now correct in catalogue mode, you have no add to cart button which is correct: http://www.stopanddream.es/producto/invitacion-de-boda-aqua/
Can you clear your browser cache?
Thanks,
DavidSeptember 16, 2015 at 7:06 pm #213834Hi!
When I created the web at first, the option to select the variations does not appear (Cantidad: escoge una opción).
And prices did not appear as now “2.60 €–2.75 €”. Prices showed: “Desde: 2.60€” (In English: “From: 2.60€”)And I have one more issue, in the woocommerce options I hide the “Product Description on Shop Pages” option and it appears in the product page.
Thank you so much.
Attachments:
You must be logged in to view attached files.September 18, 2015 at 1:24 pm #214505Try to add this css to remove the variations dropdown and the Woocommerce Tabs.
.woocommerce div.product form.cart .variations, woocommerce-tabs { display: none; }
-Rui
September 21, 2015 at 8:57 am #214831Hello,
Thanks to solve the variations issue.
But there are still troubles that need solution:
1. Additional information tab:
I Try this css:
.additional_information_tab {
display: none !important;
}But not working properly. The tab tittle has been removed but not the content (Attachment image).
2. Prices:
After updating prices did not appear as now “2.60 €–2.75 €”. Prices showed: “Desde: 2.60€” (In English: “From: 2.60€”)
3. Issue refreshing product page.
When I visualize a product page and try refresh the page does not load.
Thanks for your help.
Attachments:
You must be logged in to view attached files.September 22, 2015 at 9:57 am #2152851)
Please also add this:
div#tab-additional_information { display: none!important; }
2)
Do you mean you want your variation prices to show like this ex
From: 1.99
this sounds like the theme has been modified?3)
What page is this, it looks to be fine for me? http://www.stopanddream.es/shop/
Thanks,
DavidSeptember 23, 2015 at 6:38 pm #2158961)
Thanks, it worked. But, it would be possible the tab “Solicitud de información” appears always open?
(Look at the attachment image).2)
Yes, after the updates my variations prices showed like this ex “From: 1.99”.
3)
When I visualize a product page and try refresh the page does not load.
For ex: http://www.stopanddream.es/producto/invitacion-de-boda-calm/
First, I visualize this page fine, but when I refresh the page it doesn’t load.
Thanks for your patience and your help.
Attachments:
You must be logged in to view attached files.September 24, 2015 at 4:08 pm #216207Hi,
1)
As this is more complex then initially thought, you will need to activate your child theme. Within the child theme
functions.php
file please add this code:add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 ); function woo_remove_product_tabs( $tabs ) { unset( $tabs['additional_information'] ); // Remove the additional information tab return $tabs; }
This code will remove the tab properly, leaving the other tabs to correctly display.
2)
In your child theme please also add:
// Use WC 2.0 variable price format add_filter( 'woocommerce_variable_sale_price_html', 'wc_wc20_variation_price_format', 10, 2 ); add_filter( 'woocommerce_variable_price_html', 'wc_wc20_variation_price_format', 10, 2 ); function wc_wc20_variation_price_format( $price, $product ) { $min_price = $product->get_variation_price( 'min', true ); $max_price = $product->get_variation_price( 'max', true ); if ($min_price != $max_price){ $price = sprintf( __( '<span class="">From %1$s</span>', 'woocommerce' ), wc_price( $min_price ) ); return $price; } else { $price = sprintf( __( '<span class="">%1$s</span>', 'woocommerce' ), wc_price( $min_price ) ); return $price; } }
3)
I get this also. Can you deactivate all plugins apart from WooCommerce and test this?
Thanks,
David.September 24, 2015 at 6:02 pm #216277Good news! All problems are solved.
Again, thank you very much for your help 😀
September 24, 2015 at 6:08 pm #216281Great, glad to help you !
– David. -
Posted in: Neighborhood
You must be logged in and have valid license to reply to this topic.