Forum Replies Created
-
in reply to: Shop not displaying products using Internet Explorer
Hello,
Sorry for the delay:
1. Stock displaying incorrectly for variable products – doesn’t work on fresh install. Reported over 3 weeks ago? – Fixed on last update (will be online today)
2. Credit Card Fields displaying out-with container box – same on fresh install. Reported over 3 weeks ago? – Checked in your website everything is ok!
3. Display variable pricing as “From : £lowest price” – same on fresh install. Requested over 3 weeks ago? – Just changed the order by default from lowest to largest. To create the needed text please add this on functions.php:
add_filter( 'woocommerce_variable_sale_price_html', 'get_min_variation_price_format', 10, 2 ); add_filter( 'woocommerce_variable_price_html', 'get_min_variation_price_format', 10, 2 ); function get_min_variation_price_format( $price, $product ) { $min_variation_price = $product->get_variation_regular_price( 'min'); return '<span class="prefix-from">' . esc_html__( 'From', 'june' ) . ": </span>" . wc_price($min_variation_price); }4. Issues with shopping cart reported over 3 weeks ago. – Checked on your site, works fine
in reply to: woo commerce pageHello,
Can you please share a link and WP credentials so I can take a look what can cause that?
Sorry for the delay
Thanks
in reply to: Quantity box issueHello,
Product quantity disappeared because you have set the product to be sold as individual. For each product, go to Inventory and dis-active that option.
Please remove the CSS added before to fix that css issue with simple products. About the variable product, please add this css line:
.woocommerce-variation-add-to-cart.variations_button{ display:flex; }It should be fine now.
Thanks
in reply to: Gallery is not showing in post pageHello,
Sorry for the delay but we have not fixed yet this issue. I sent you the code to modify:
Please first go to template-parts/blog/parts/entry-content.php and remove this line:
$content = codeless_strip_shortcode_gallery( str_replace($page_header, '', $content ) );After that add this css line in css file or custom css option:
.entry-content .gallery{ display:flex; }Let me know if it works now
Thanksin reply to: several issuesHello,
We will make a new update of June theme as soon as possible. Thanks for helping us to identify these points for improvement. I think that we can update theme next week.
Thanks
in reply to: TEAM MEMBERS – staff positionPlease try to replace this function “codeless_get_meta” on functions.php
function codeless_get_meta( $meta, $default = '', $postID = '' ){ if( function_exists('codeless_get_post_id') ) $id = codeless_get_post_id(); if( $postID != '' ) $id = $postID; $value = get_post_meta( $id, $meta ); $return = ''; $nr = count($value); if( is_array( $value ) && ( count( $value ) == 1 || ( count($value) >= 2 && $value[0] == $value[1] ) ) ) $return = $value[$nr-1]; else $return = $value; if( is_array( $value ) && empty( $value ) ) $return = ''; if( $default != '' && ( $return == '' || ! $return ) ) return $default; return $return; }in reply to: state county issueHello,
Trying several times, and it works on me. On our demo and on your website too. Can you please let me know the browser that are you working? Thanks
in reply to: TEAM MEMBERS – staff positionHello,
Can you please provide me a FTP account?
Thanks
in reply to: Porfolio categories issueHello,
About the filter, you have two possibilities:
1) Show all the items without pagination, and in that way filter will work properly
2) I can modify the code, in a way that everytime users clicks on the filter page redirects to the new category.
Let me know what works better for you.
Also, we can update the theme to make it possible that, filters and pagination can work properly together.About the tags, can you help me understand, which is the issue? Can’t reproduce this.
Thanks
in reply to: Gallery is not showing in post pageHello,
We are working in a new update of the theme.
Please be patient. We will add a new update this week.
Thanks
in reply to: Site breakdown after installHello,
You are missing a WordPress core function. This can be caused by a old WP version or please try to re-install wp version, maybe manually.
This function is introduced initially in WP 4.7
Thanks
in reply to: My cart doesn't work in theme "June"Hello,
Fixed this issue, the codeless builder has replaced the content of Cart page. Now it’s ok.
Please activate plugins one by one, to test if one of them can cause the issue.
Thanks
in reply to: Dummy Data not installingHello,
Can you please send me the credentials?
Thanks
Hello,
Just fixed the main menu issue: You have changed the used selected menu on Menu Element Options. By clicking the draggable Menu element, you can change menu options.
On responsive it is ok, let me know if it’s not working for you.
Also i have fixed the sticky header issue.
Thanks
Hello,
Yes, I have removed the comment because i have understand the issue.
I will update as soon as possible on new update.Thank you