Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Thanks for Helpful Post & Reply.
    I having issue like following:

    Warning: file_get_contents(https://ipinfo.io/): failed to open stream: HTTP request failed! HTTP/1.0 429 Too Many Requests in /home/zoetal5/public_html/wp-content/plugins/country-phone-field-contact-form-7/includes/include-js-css.php on line 8

    Warning: file_get_contents(https://ipinfo.io/): failed to open stream: HTTP request failed! HTTP/1.0 429 Too Many Requests in /home/zoetal5/public_html/wp-content/plugins/country-phone-field-contact-form-7/includes/include-js-css.php on line 8

    Site Link: https://zoetalentsolutions.com

    Any help will be much appreciated.
    Thanks in advance

    Hi Sportivo 147,

    Recently I have faced the same problem with flatsome themes. I got some sort of solutions for this problem with the following code. I’m not sure that it will help you or not but lets try.

    <?php
    /**
    * Single Product Thumbnails
    *
    * @author WooThemes
    * @package WooCommerce/Templates
    * @version 2.6.4
    */

    if ( ! defined( ‘ABSPATH’ ) ) {
    exit; // Exit if accessed directly
    }

    global $post, $product, $woocommerce;

    $attachment_ids = $product->get_gallery_attachment_ids();
    $thumb_count = count($attachment_ids)+1;

    // Disable thumbnails if there is only one extra image.
    if($thumb_count == 1) return;

    $rtl = ‘false’;

    if(is_rtl()) $rtl = ‘true’;

    $thumb_cell_align = “left”;

    if ( $attachment_ids ) {
    $loop = 0;
    $columns = apply_filters( ‘woocommerce_product_thumbnails_columns’, 4 );

    $gallery_class = array(‘product-thumbnails’,’thumbnails’);

    if($thumb_count <= 5){
    $gallery_class[] = ‘slider-no-arrows’;
    }

    $gallery_class[] = ‘row row-small small-columns-4’;
    ?>

    <div class=”<?php echo implode(‘ ‘, $gallery_class); ?>”

    >

    <?php

    if ( has_post_thumbnail() ) : ?>
    <div class=”col is-nav-selected first”><?php echo get_the_post_thumbnail( $post->ID, apply_filters( ‘single_product_small_thumbnail_size’, ‘shop_thumbnail’ ) ) ?></div>
    <?php endif;

    foreach ( $attachment_ids as $attachment_id ) {

    $classes = array( ‘zoom’ );
    $image_title = esc_attr( get_the_title( $attachment_id ) );
    $image_caption = esc_attr( get_post_field( ‘post_excerpt’, $attachment_id ) );
    $image_class = esc_attr( implode( ‘ ‘, $classes ) );

    $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
    ) );

    echo apply_filters( ‘woocommerce_single_product_image_thumbnail_html’, sprintf( ‘<div class=”col”>%s</div>’, $image_class, $image_caption, $image ), $attachment_id, $post->ID, $image_class );

    $loop++;
    }
    ?>
    </div><!– .product-thumbnails –>
    <?php
    } ?>

Viewing 2 replies - 1 through 2 (of 2 total)