Viewing 14 posts - 16 through 29 (of 29 total)
  • #211558
    stopandthink
    Member
    Post count: 15

    Hello,

    When will be the next update?

    I need to know to make my web work correctly.

    Thanks.

    #211749
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    Just confirmed with the development team and the update will be release in the next 24 hours.
    Thanks

    -Rui

    #212825
    stopandthink
    Member
    Post count: 15

    Hello,
    When will the next update?

    I need to know when I will have my website without errors.

    Thank you

    #212827
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    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

    #213334
    stopandthink
    Member
    Post count: 15

    Sorry, I didn’t read your answer of the update.

    I just updated the theme but I still have the same issues 🙁

    #213708
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    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,
    David

    #213834
    stopandthink
    Member
    Post count: 15

    Hi!

    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.
    #214505
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Try to add this css to remove the variations dropdown and the Woocommerce Tabs.

    .woocommerce div.product form.cart .variations, woocommerce-tabs {
         display: none;
    }

    -Rui

    #214831
    stopandthink
    Member
    Post count: 15

    Hello,

    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.
    #215285
    David Martin – Support
    Moderator
    Post count: 20834

    1)

    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,
    David

    #215896
    stopandthink
    Member
    Post count: 15

    1)

    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.
    #216207
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    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.

    #216277
    stopandthink
    Member
    Post count: 15

    Good news! All problems are solved.

    Again, thank you very much for your help 😀

    #216281
    David Martin – Support
    Moderator
    Post count: 20834

    Great, glad to help you !
    – David.

Viewing 14 posts - 16 through 29 (of 29 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register