sportivo147
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Show all shipping methods in Shopping cartThank you!!
Forum: Plugins
In reply to: [WooCommerce] Customer name not showing in admin user listingOk.. thank you Thomas for the information. Is there any automatic way to fill these informations when the customer fill the billing name and surname at the checkout ?
Thank you!!
Forum: Plugins
In reply to: [WooCommerce] Show all shipping methods in Shopping cartThank you D simth for your reply. Tell you the truth i have confused !!!
Atlhought i found a solution that fits my needs. i have checked the option “enable calculate shipping options in cart” at woocommerce —>shipping —-> shipping option. And now it shows to the customer a drop list to enter the postcode. I also change the name to show “for shipping option plesae enter here your postcode”.
Thank you.
GeorgeForum: Plugins
In reply to: [WooCommerce] Woocommerce Product fields suddently missing !!!Ok i will try with “say what” plugin! But i don’t want to use so much plugins at the site. Maybe will wait to update the new version of loco and see what will happens then.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Product fields suddently missing !!!There is not at theme strings. (i use flatsome theme). I change to the default theme and same problem.
For example this string : “From your account dashboard you can view your recent orders, manage your shipping and billing addresses and edit your password and account details.” is not changing in greek although it’s translated in the loco translate.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Product fields suddently missing !!!Yes it’s 94% but the strings of my account page are translated in greek. Although there are not showing!!! Also loco translate says that the greek translation file is 80%.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Product fields suddently missing !!!Thanks Caleb Burks,
I’m updating the language when the system automaticaly notify me. I click update and everything wis updated!! But this time all the field in general tab lost !!!
It’s not only the account page it’s 2-3 more translated strings that are not changing to greek.
It’s very weiard because if i click the sync button in loco translate it tells me that there are about 300 stringd added and outdated stringsd but after the sync the my account page is not translated in greek as it was before. So i translate it in greek and save it. It works !!! But immediately after that the system notify me for translate changes…. and here we go again!! If i click update then it looses everything and the account page is in english again.
I think i’m in a a dead end.. What i must do ??
Forum: Themes and Templates
In reply to: Translation lost after updateanyone??
Forum: Fixing WordPress
In reply to: Product image gallery remove the sliderHello Ravi patel, the site is in construction mode at localhost. Do you want me to send you some code which you may help ??
Forum: Fixing WordPress
In reply to: Product image gallery remove the sliderOk dartiss.. thank you!!
Forum: Fixing WordPress
In reply to: Product image gallery remove the sliderok so it’s the theme that causing the slider… can i disable it from the file product-thumbnails.php or it ism more complicated ??
Forum: Fixing WordPress
In reply to: Product image gallery remove the sliderYes that’s why i’m trying to find where to change it!! I use the flatsome theme. I read somewhere that it’s the product-thumbnails.php that use the slider. Here is the code of that file if that helps :
<?php /** * Single Product Thumbnails * * @author WooThemes * @package WooCommerce/Templates * @version 2.3.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $post, $product, $woocommerce; $attachment_ids = $product->get_gallery_attachment_ids(); if ( $attachment_ids ) { $loop = 0; $columns = apply_filters( 'woocommerce_product_thumbnails_columns', 4 ); $arrows = ''; $thumb_count = count($attachment_ids)+1; if($thumb_count <= 5){ $arrows = 'slider-no-arrows'; } ?> <ul class="product-thumbnails <?php echo $arrows; ?> thumbnails js-flickity slider-nav-small" data-flickity-options='{ "cellAlign": "left", "wrapAround": false, "autoPlay": false, "prevNextButtons":true, "asNavFor": ".product-gallery-slider", "percentPosition": true, "imagesLoaded": true, "pageDots": false, "selectedAttraction" : 0.1, "friction": 0.6, "rightToLeft": false, "contain": true }' ><?php $image_link = wp_get_attachment_url( get_post_thumbnail_id() ); if ( has_post_thumbnail() ) : ?> <li class="is-nav-selected first"><a href="<?php echo $src[0] ?>"><?php echo get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_small_thumbnail_size', 'shop_thumbnail' ) ) ?></a></li> <?php endif; foreach ( $attachment_ids as $attachment_id ) { $classes = array( 'zoom' ); $image_link = wp_get_attachment_url( $attachment_id ); if ( ! $image_link ) continue; $image_title = esc_attr( get_the_title( $attachment_id ) ); $image_caption = esc_attr( get_post_field( 'post_excerpt', $attachment_id ) ); $image = wp_get_attachment_image( $attachment_id, apply_filters( 'single_product_small_thumbnail_size', 'shop_thumbnail' ), 0, $attr = array( 'title' => $image_title, 'alt' => $image_title ) ); $image_class = esc_attr( implode( ' ', $classes ) ); echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', sprintf( '<li><a href="%s" class="%s" title="%s" data-rel="prettyPhoto[product-gallery]">%s</a></li>', $image_link, $image_class, $image_caption, $image ), $attachment_id, $post->ID, $image_class ); $loop++; } ?></ul> <?php } ?>