Forum Replies Created

Viewing 15 replies - 1 through 15 (of 27 total)
  • Thread Starter Pencetus Impian Terakhir

    (@mamiku)

    Hi.. sorry for interrupting you again, but I’m just feeling, my sidebar has moveup to bottom of the product. https://adshope.com/product/lecayee-for-vivo-y91c-tempered-glass-for-vivo-v9-youth-y95-v7-plus-v11i-y83-x21-y81/

    Can your please help me to take a look on this?.. thanks in advance.

    Thread Starter Pencetus Impian Terakhir

    (@mamiku)

    Hi..Thanks so much. you’re very helpful, we’ll buy a pro version later because our web definitely needs more.

    Thread Starter Pencetus Impian Terakhir

    (@mamiku)

    Hi thanks… but i face this error after replace that code: The site is experiencing technical difficulties.

    https://adshope.com/product/xper-autumn-winter-men-boots-big-size-40-48/

    I dont understand :(.

    Thread Starter Pencetus Impian Terakhir

    (@mamiku)

    Hi.. thanks so much for the help. its working now, but why the “Reviews Tab” is double?.

    https://adshope.com/product/ems-trainer-wireless-abs-stimulator-smart-fitness-abdominal-buttocks-muscle-stimulator-body-shaping-device-slimming-massager/

    I thing some code is duplicate?.

    Thread Starter Pencetus Impian Terakhir

    (@mamiku)

    Hi.. that file also dont have.. but i have this file single-product.php and the content is:

    <?php
    /**
     * The Template for displaying all single products
     *
     * This template can be overridden by copying it to yourtheme/woocommerce/single-product.php.
     *
     * HOWEVER, on occasion WooCommerce will need to update template files and you
     * (the theme developer) will need to copy the new files to your theme to
     * maintain compatibility. We try to do this as little as possible, but it does
     * happen. When this occurs the version of the template file will be bumped and
     * the readme will list any important changes.
     *
     * @see 	    https://docs.woocommerce.com/document/template-structure/
     * @author 		WooThemes
     * @package 	WooCommerce/Templates
     * @version     1.6.4
     */
    if (!defined('ABSPATH')) {
        exit; // Exit if accessed directly
    }
    
    global $adforest_theme;
    if (isset($adforest_theme['shop-turn-on']) && $adforest_theme['shop-turn-on']) {
        get_header();
        while (have_posts()) : the_post();
    
            global $product;
            ?>
            <section class="section-padding modern-version description-product"> 
                <div class="container"> 
                    <div class="row"> 
                        <div class="col-md-8 col-xs-12 col-sm-12">
                            <div class="row"> 
                                <div class="col-md-5 col-xs-12 col-sm-5">
                                    <?php get_template_part('woocommerce/product-detail/gallery'); ?>
                                </div>
                                <div class="col-md-7 col-xs-12 col-sm-7">
                                    <div class="description-right-area">
                                        <div class="description-text">
                                            <?php if (get_the_title() != '') { ?>
                                                <h2><?php echo get_the_title(); ?></h2>
                                            <?php } ?>          
                                        </div>
                                        <?php get_template_part('woocommerce/product-detail/total_reviews'); ?>
                                        <div class="clearfix"></div>
                                        <?php
                                        $currency = get_woocommerce_currency_symbol();
                                        $price = get_post_meta(get_the_ID(), '_regular_price', true);
                                        $sale = get_post_meta(get_the_ID(), '_sale_price', true);
    
                                        $product_type = adforest_get_product_type(get_the_ID());
                                        if (isset($product_type) && $product_type == 'variable') {
                                            $available_variations = $product->get_available_variations();
                                            if (isset($available_variations[0]['variation_id']) && !empty($available_variations[0]['variation_id'])) {
                                                $variation_id = $available_variations[0]['variation_id'];
                                                $variable_product1 = new WC_Product_Variation($variation_id);
                                                $price = isset($variable_product1->regular_price) ? $variable_product1->regular_price : 0;
                                                $sale = isset($variable_product1->sale_price) ? $variable_product1->sale_price : 0;
                                            }
                                        }
                                        ?>
                                        <?php if ($price) { ?>
                                            <div class="description-prices"> 
    
                                                <?php if ($sale) { ?>
                                                    <strike><?php echo esc_html(adforest_shopPriceDirection($price, $currency)); ?></strike>
                                                <?php } else { ?>
                                                    <?php echo "<span class='description-new-prices'>" . esc_html(adforest_shopPriceDirection($price, $currency)) . "</span>"; ?>
                                                <?php } ?>
                                                <span class="description-new-prices"><?php
                                                    if ($sale) {
                                                        echo esc_html(adforest_shopPriceDirection($sale, $currency));
                                                    }
                                                    ?>&nbsp;</span> 
                                            </div>
                                        <?php } ?>
                                        <div class="clearfix"></div>
                                        <?php get_template_part('woocommerce/product-detail/product_info'); ?>
                                        <?php get_template_part('woocommerce/product-detail/desc'); ?>
    
                                        <div class="description-number">
                                            <?php
                                            do_action('woocommerce_before_single_product');
                                            do_action('woocommerce_single_product_summary');
                                            ?>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="row">
                                <div class="col-md-12">
                                    <div class="tab-description"> 
                                        <!-- Nav tabs -->
                                        <div class="card">
                                            <ul class="nav nav-tabs" role="tablist">
                                                <li role="presentation" class="active"><a href="#home" aria-controls="home" role="tab" data-toggle="tab"><?php echo esc_html__('Description', 'adforest'); ?></a></li>
                                                <li role="presentation"><a href="#profile" aria-controls="profile" role="tab" data-toggle="tab">
                                                        <?php echo esc_html__('Reviews', 'adforest') . " (" . $product->get_review_count(false) . ")"; ?></a></li>
                                                <?php
                                                $product = wc_get_product(get_the_ID());
                                                $attributes = $product->get_attributes();
                                                if (is_array($attributes) && count($attributes) > 0) {
                                                    ?>
                                                    <li role="presentation"><a href="#settings" aria-controls="settings" role="tab" data-toggle="tab"><?php echo esc_html__('Additional Information', 'adforest'); ?></a></li>
                                                    <?php
                                                }
                                                ?>
                                            </ul>
    
                                            <!-- Tab panes -->
                                            <div class="tab-content">
                                                <div role="tabpanel" class="tab-pane active" id="home"> <?php the_content(); ?></div>
                                                <div role="tabpanel" class="tab-pane" id="profile">
                                                    <div class="comments">
                                                        <?php comments_template('', true); ?>
                                                    </div>
                                                </div>
                                                <div role="tabpanel" class="tab-pane" id="settings"><?php do_action('woocommerce_product_additional_information', $product); ?></div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
    
                                <?php if (isset($adforest_theme['shop-related-single-on']) && $adforest_theme['shop-related-single-on']) { ?>
                                    <?php
                                    $cats = wp_get_post_terms(get_the_ID(), 'product_cat');
                                    if (!empty($cats)) {
                                        $countRelated = (isset($adforest_theme['shop-number-of-related-products-single'])) ? $adforest_theme['shop-number-of-related-products-single'] : 4;
                                        $relatedTitle = (isset($adforest_theme['shop-related-single-title'])) ? $adforest_theme['shop-related-single-title'] : __("Related Products", "adforest");
                                        $categories = array();
                                        foreach ($cats as $cat) {
                                            $categories[] = $cat->term_id;
                                        }
                                        $loop_args = array(
                                            'post_type' => 'product',
                                            'posts_per_page' => $countRelated,
                                            'order' => 'DESC',
                                            'post__not_in' => array(get_the_ID()),
                                            'tax_query' => array(
                                                array(
                                                    'taxonomy' => 'product_cat',
                                                    'field' => 'id',
                                                    'terms' => $categories
                                        )));
                                        $loop_args = apply_filters('adforest_wpml_show_all_posts', $loop_args);
                                        $related_products = new WP_Query($loop_args);
                                        if ($related_products->have_posts()) {
                                            ?>
                                            <div class="clearfix"></div>
                                            <div class="heading-panel">
                                                <div class="col-xs-12 col-md-12 col-sm-12">
                                                    <h3 class="main-title text-left"><?php echo esc_html($relatedTitle); ?></h3>
                                                </div>
                                            </div>                
                                            <div class="related-product-animate1">
                                                <?php
                                                while ($related_products->have_posts()) {
                                                    $related_products->the_post();
                                                    $product_id = get_the_ID();
                                                    global $product;
    
                                                    $currency = get_woocommerce_currency_symbol();
                                                    $price = get_post_meta(get_the_ID(), '_regular_price', true);
                                                    $sale = get_post_meta(get_the_ID(), '_sale_price', true);
                                                    $product_typee = adforest_get_product_type(get_the_ID());
                                                    if (isset($product_typee) && $product_typee == 'variable') {
                                                        $available_variations = $product->get_available_variations();
                                                        if (isset($available_variations[0]['variation_id']) && !empty($available_variations[0]['variation_id'])) {
                                                            $variation_id = $available_variations[0]['variation_id'];
                                                            $variable_product1 = new WC_Product_Variation($variation_id);
                                                            $price = isset($variable_product1->regular_price) ? $variable_product1->regular_price : 0;
                                                            $sale = isset($variable_product1->sale_price) ? $variable_product1->sale_price : 0;
                                                        }
                                                    }
    
                                                    $layoutStyle = (isset($adforest_theme['shop-layout-style']) && $adforest_theme['shop-layout-style'] == true) ? $adforest_theme['shop-layout-style'] : 'layout1';
    
                                                    if ($layoutStyle == 'layout2') {
                                                        ?>
    
                                                        <div class="col-lg-4 col-xs-12 col-md-4 col-sm-6">
                                                            <div class="shop-main-section">
                                                                <div class="shop-products">                       	<?php if (get_the_post_thumbnail(get_the_ID())) { ?>
                                                                        <a href="<?php echo esc_url(get_the_permalink()); ?>"><?php echo get_the_post_thumbnail(get_the_ID(), 'adforest-shop-thumbnail'); ?></a>
                                                                    <?php } else { ?>
                                                                        <a href="<?php echo esc_url(get_the_permalink()); ?>"><img class="img-responsive" alt="<?php echo get_the_title(); ?>" src="<?php echo esc_url(wc_placeholder_img_src()); ?>"></a>
                                                                    <?php } ?>
                                                                    <div class="shop-main-title-area">
                                                                        <?php if ($sale) { ?>
                                                                            <div class="shop-new-product-area"><span><?php echo __("Sale", "adforest"); ?></span></div>
                                                                        <?php } ?>                                      
                                                                    </div>
                                                                </div>
                                                                <div class="shop-text-section">
                                                                    <div class="shop-lates-products"> <a href="#">
                                                                            <p><?php echo adforest_get_woo_categories(get_the_ID()); ?></p>
                                                                        </a> </div>
                                                                    <div class="shop-categories">
                                                                        <h5><a href="<?php echo get_the_permalink(); ?>" title="<?php echo get_the_title(); ?>"><?php echo get_the_title(); ?></a></h5>
                                                                    </div>
                                                                    <div class="shop-latest-price">
    
                                                                        <?php if ($price) { ?>
                                                                            <?php if ($sale) { ?>
                                                                                <div class="shop-old-price"><strike><?php echo esc_html(adforest_shopPriceDirection($price, $currency)); ?></strike> </div>
                                                                            <?php } else { ?>
                                                                                <?php echo ' <div class="shop-new-price">' . "<p>" . esc_html(adforest_shopPriceDirection($price, $currency)) . "</p></div>"; ?>
                                                                            <?php } ?>
                                                                        <?php } ?>                          
                                                                                <?php if ($sale) { ?>  <div class="shop-new-price"><p><?php echo esc_html(adforest_shopPriceDirection($sale, $currency)); ?>&nbsp;</p></div><?php } ?>
    
                                                                    </div>
                                                                    <div class="shops-cart"> <a href="<?php echo esc_url(get_the_permalink()); ?>"><i class="fa fa-cart-plus"></i></a> </div>
                                                                </div>
                                                            </div>
                                                        </div>
                                                        <?php
                                                    } else if ($layoutStyle == 'layout3') {
                                                        ?>
                                                        <div class="col-lg-4 col-xs-12 col-md-4 col-sm-6">
                                                            <div class="tech-great-products">
                                                                <div class="tech-new-arrivals-products"> <?php if (get_the_post_thumbnail(get_the_ID())) { ?>
                                                                        <a href="<?php echo esc_url(get_the_permalink()); ?>"><?php echo get_the_post_thumbnail(get_the_ID(), 'adforest-shop-thumbnail'); ?></a>
                                                                    <?php } else { ?>
                                                                        <a href="<?php echo esc_url(get_the_permalink()); ?>"><img class="img-responsive" alt="<?php echo get_the_title(); ?>" src="<?php echo esc_url(wc_placeholder_img_src()); ?>"></a>
                                                                    <?php } ?></div>
                                                                <div class="tech-products-details">
                                                                    <div class="tech-products-categories">
                                                                        <h4><?php echo adforest_get_woo_categories(get_the_ID()); ?></h4>
                                                                    </div>
                                                                    <div class="tech-different-categories">
                                                                        <h3><a href="<?php echo get_the_permalink(); ?>" title="<?php echo get_the_title(); ?>"><?php echo get_the_title(); ?></a></h3>
                                                                    </div>
                                                                    <div class="tech-price-categories">
                                                                        <div class="tech-new-prices">
    
                                                                            <p>
                                                                                <?php if ($price) { ?>
                                                                                    <?php if ($sale) { ?>
                                                                                    <strike><?php echo esc_html(adforest_shopPriceDirection($price, $currency)); ?></strike>
                                                                                <?php } else { ?>
                                                                                    <?php echo esc_html(adforest_shopPriceDirection($price, $currency)); ?>
                                                                                <?php } ?>
                                                                            <?php } ?>                          
                                                                                <?php if ($sale) { ?>  <?php echo esc_html(adforest_shopPriceDirection($sale, $currency)); ?>&nbsp;<?php } ?>                            
                                                                            </p>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="tech-arrival-tech-categories"> 
                                                                    <a href="<?php echo esc_url(get_the_permalink()); ?>" class="btn btn-theme">
                                                                        <?php echo __("View Product", "adforest"); ?>
                                                                    </a> </div>
                                                                <div class="shop-main-title-area">
                                                                    <?php if ($sale) { ?>
                                                                        <div class="shop-new-product-area"><span><?php echo __("Sale", "adforest"); ?></span></div>
                                                                    <?php } ?>  
                                                                </div>
                                                            </div>
                                                        </div>                    
                                                        <?php
                                                    } else {
                                                        ?>                          
    
                                                        <div class="col-lg-4">
                                                            <div class="product-description-about">
                                                                <div class="shop-box">
                                                                    <?php if ($sale) { ?>
                                                                        <div class="on-sale"><span><?php echo __("Sale", "adforest"); ?></span></div>
                                                                    <?php } ?>
                                                                    <?php if (get_the_post_thumbnail(get_the_ID())) { ?>
                                                                        <a href="<?php echo esc_url(get_the_permalink()); ?>"><?php echo get_the_post_thumbnail(get_the_ID(), 'adforest-shop-thumbnail'); ?></a>
                                                                    <?php } else { ?>
                                                                        <a href="<?php echo esc_url(get_the_permalink()); ?>"><img class="img-responsive" alt="<?php echo get_the_title(); ?>" src="<?php echo esc_url(wc_placeholder_img_src()); ?>"></a>
                                                                    <?php } ?>
                                                                    <div class="shop-overlay-box">
                                                                        <div class="shop-icon">
                                                                            <a href="<?php echo esc_url(get_the_permalink()); ?>" title="<?php echo get_the_title(); ?>"> <?php echo __("Add to Cart", "adforest"); ?> </a>
                                                                        </div>
                                                                    </div>
                                                                </div>
                                                                <div class="product-description">
                                                                    <div class="product-category"><?php echo adforest_get_woo_categories(get_the_ID()); ?></div>
                                                                    <div class="product-description-heading">
                                                                        <h3><a href="<?php echo get_the_permalink(); ?>" title="<?php echo get_the_title(); ?>"><?php echo get_the_title(); ?></a></h3>
                                                                    </div>
                                                                    <div class="product-description-icons">
    
                                                                        <ul class="on-product-custom-stars">
                                                                            <li>
                                                                                <?php
                                                                                $average_rating = $product->get_average_rating(false);
                                                                                echo adforest_get_woo_stars($average_rating);
                                                                                ?>
                                                                            </li>
                                                                            <li>
                                                                                <?php echo " " . $product->get_review_count(false) . ' ' . __("Review", "adforest"); ?>
                                                                            </li>
                                                                        </ul>                    
                                                                    </div>
                                                                    <div class="product-description-text"> 
                                                                        <?php if ($sale) { ?> <p><?php echo esc_html(adforest_shopPriceDirection($sale, $currency)); ?>&nbsp;</p><?php } ?>
                                                                        <?php if ($price) { ?>
    
                                                                            <?php if ($sale) { ?>
                                                                                <strike><?php echo esc_html(adforest_shopPriceDirection($price, $currency)); ?></strike>
                                                                            <?php } else { ?>
                                                                                <?php echo "<p>" . esc_html(adforest_shopPriceDirection($price, $currency)) . "</p>"; ?>
                                                                            <?php } ?>
    
                                                                        <?php } ?>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                        </div>
    
                                                        <?php
                                                    }
                                                }
                                                ?>
                                            </div>
    
                                            <?php
                                        } wp_reset_postdata();
                                    }
                                }
                                ?>          
    
                            </div>
                        </div>	
                        <div class="col-md-4 col-xs-12 col-sm-12"> 
                            <div class="sidebar">
                                <?php if (is_active_sidebar('adforest_woocommerce_widget')) : ?>
                                    <?php dynamic_sidebar('adforest_woocommerce_widget'); ?>
                                <?php endif; ?>                   
                            </div>
                        </div>
                    </div>    
                </div>
            </section>
            <?php
        endwhile; // end of the loop.        
        get_footer();
    }else {
        $sb_packages_page = apply_filters('adforest_language_page_id', $adforest_theme['sb_packages_page']);
        wp_redirect(get_the_permalink($sb_packages_page));
        exit;
    }

    I thing this is the right place?.

    Thread Starter Pencetus Impian Terakhir

    (@mamiku)

    Hi.. that file is nothing in there, i just have this:

    woocommerce/single-product/add-to-cart

    And inside the add-to-cart folder just this:

    external.php
    grouped.php
    simple.php
    variable.php

    Also nothing in child theme.

    Thread Starter Pencetus Impian Terakhir

    (@mamiku)

    Hi. yes im using child theme and im not fimiliar with woocommerce.

    It looks like we’ll need to change/override your theme’s template in order to get custom tabs to display.

    How to do this?.

    Hi also have this problem..

    Invalid Scopes: publish_pages, user_posts, manage_pages. This message is only shown to developers. Users of your app will ignore these permissions if present. Please read the documentation for valid permissions at: https://developers.facebook.com/docs/facebook-login/permissions

    Yes.. same here.. after liked, its not closed. but after unlike, its closed?..

    Thread Starter Pencetus Impian Terakhir

    (@mamiku)

    Hi.. this not the vendor pro… unistall the pro and the problem still happend..

    May your can make pro version for this to provide more feature.. 🙂

    Hi there.. i just reinstall it and its working again..try u selp. 🙂

    Yes, already.. i dont know why.

    Forum: Plugins
    In reply to: [YUZO] Only 5 Most Pupular

    There no any support for this plugin?

    No any aswer??

Viewing 15 replies - 1 through 15 (of 27 total)