Forum Replies Created

Viewing 13 posts - 91 through 103 (of 103 total)
  • Avatar: ianabel
    ianabel
    Participant
    September 30, 2019 at 14:44

    Here you have the admin Logins.

    Regars

    Please contact administrator
    for this information.
    Avatar: ianabel
    ianabel
    Participant
    September 28, 2019 at 10:17

    But if I go to Theme Options > WooCommerce (Shop) > Single product layout > Location Of Upsell Products I can choose “After content” and it show in mobile version exactly as I want. The problem is that I can not select that option ONLY for mobile version and in desktop version keep it in the sidebar. Are you sure there is no way to do that with some code? Both options already exit, is just a matter of make the difference between mobile and desktop version.

    Avatar: ianabel
    ianabel
    Participant
    September 27, 2019 at 19:06

    Mmm… I dont like very much that gap. But it is a problem that the product description is so far.
    It is not possible to exchange this position https://www.ia-incosmetics.com/wp-content/uploads/2019/09/posicion-1.jpg with this one https://www.ia-incosmetics.com/wp-content/uploads/2019/09/posicion-2.jpg ?

    Avatar: ianabel
    ianabel
    Participant
    September 27, 2019 at 17:22

    I think I did not explain myself well. I don’t want to change the position of the left side bar wich is the shop sidebar. I want to change the position of the related products that appears as “you may also like” wich is located by default at the right side. In desktop version I have both side bars, one on each side. But in mobile version the “you may also like” section appears bellow cart button and before the product description. I want to move “you may also like” section bellow product description and I want to keep at the top the shop sidebar.

    Avatar: ianabel
    ianabel
    Participant
    September 27, 2019 at 15:45

    OMG. So simple…

    Thankkkkkks

    Avatar: ianabel
    ianabel
    Participant
    September 27, 2019 at 14:48

    Hello Rose,

    Thank you very much!
    1. My mistake, I was setting the value without “px”, that’s why it didn’t work.
    2. OK
    3. Done.

    Thanks!

    Avatar: ianabel
    ianabel
    Participant
    September 26, 2019 at 21:41

    OK here I send you the access.

    I have a few more questions:

    1- The Quick View Dimensions (Width And Height) option doesn’t change the size of the quick view frame when I set a width or height value. I need more height.

    2- I need to change the font size of the price but ONLY FOR MOBILE VERSION. I need it bigger. How can I make that? I set this code in Global Custom CSS for price font costumization, but in addition to this I need an specific code only for mobile font size.

    .woocommerce-Price-amount {

    color: #000000 !important;

    font-size:16px !important;

    font-weight: bold !important;

    }

    3- It is possible that every time that I update the theme the translation I did with Loco translate don’t get lost?

    Thank you!

    Please contact administrator
    for this information.
    Avatar: ianabel
    ianabel
    Participant
    September 26, 2019 at 10:47

    Hello,

    Already found xstore folder. I wasn’t looking at the right place. Thank you!
    I made the change in the code but still not working. Price is still under product title. This is my product-quick-view.php code after suggested change:

    <?php
    
    if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    global $product, $etheme_global, $post;
    $product_settings = etheme_get_option('quick_view_switcher');
    
    $zoom = etheme_get_option('zoom_effect');
    if( class_exists( 'YITH_WCWL_Init' ) ) {
    	add_action( 'woocommerce_single_product_summary', function () { echo do_shortcode( "[yith_wcwl_add_to_wishlist]" );}, 31 );
    }
    remove_all_actions( 'woocommerce_product_thumbnails' );
    
    $etheme_global['quick_view'] = true;
    
    if( get_option('yith_wcwl_button_position') == 'shortcode' ) {
    	add_action( 'woocommerce_after_add_to_cart_button', 'etheme_wishlist_btn', 30 );
    }
    
    $class = '';
    if ( etheme_get_option('quick_view_layout') == 'centered' ) $class = 'text-center';
    if ( etheme_get_option('quick_images') == 'slider') $class .= ' swipers-couple-wrapper swiper-entry arrows-hovered';
    
    $product_class = array();
    $product_class[] = 'product-content';
    $product_class[] = 'quick-view-layout-' . etheme_get_option( 'quick_view_layout' );
    $product_class[] = ( $product->is_sold_individually() ) ? 'sold-individually' : '' ;
    
    ?>
    
        <div <?php wc_product_class( $product_class, $product ); ?> >
            <div class="row">
    
    			<?php if (etheme_get_option('quick_images') != 'none'): ?>
    				<div class="col-lg-6 col-sm-6 product-images <?php echo esc_attr($class); ?>" data-image_height="<?php echo esc_attr( etheme_get_option('quick_image_height') ); ?>">
    					<?php
                        if (etheme_get_option('quick_images') == 'slider'): ?>
    						<?php
    						/**
    						 * woocommerce_before_single_product_summary hook
    						 *
    						 * @hooked woocommerce_show_product_sale_flash - 10
    						 * @hooked woocommerce_show_product_images - 20
    						 */
    						do_action( 'woocommerce_before_single_product_summary' );
    						?>
    					<?php else: ?>
    						<?php the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ) ); ?>
    					<?php endif; ?>
    				</div><!-- Product images/ END -->
    			<?php endif; ?>
                
                <div class="col-lg-<?php if (etheme_get_option('quick_images') != 'none'): ?>6<?php else: ?>12<?php endif; ?> col-sm-6 product-information <?php if (!in_array('quick_categories', $product_settings)) { echo 'hide-categories'; } ?>">
    				<?php if (in_array('quick_product_name', $product_settings)): ?>
    					<h3 class="product-name"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
    				<?php endif ?>
    
    				<div class="quick-view-info">
    
    					
    
    					<?php if (in_array('quick_rating', $product_settings)): ?>
    						<?php woocommerce_template_single_rating(); ?>
    					<?php endif ?>
    
    					<?php if (in_array('quick_short_descr', $product_settings)): ?>
    						<?php woocommerce_template_single_excerpt(); ?>
    					<?php endif ?>
    
                                            <?php if (in_array('quick_price', $product_settings)): ?>
    						<?php woocommerce_template_single_price(); ?>
    					<?php endif; ?>
    
    					<?php do_action( 'et_quick_view_swatch' ); ?>
    
    					<?php
    						if (in_array('quick_add_to_cart', $product_settings)) {
    							if ( etheme_get_option('just_catalog') ) {
    								echo sprintf( '<div class="cart"><a rel="nofollow" href="%s" class="button single_add_to_cart_button show-product">%s</a></div>',
    									esc_url(  $product->get_permalink() ),
    									__('Show details', 'xstore')
    								);
    							}
    							else {
    								if( $product->get_type() == 'simple' ) {
    									woocommerce_template_single_add_to_cart();
    								} else {
    									woocommerce_template_loop_add_to_cart();
    								}
    							}
    						}
    
    						woocommerce_template_single_meta();
    					?>
    
    					<?php if ( in_array('quick_share', $product_settings)) : ?>
    						<div class="product-share">
    	                		<?php echo do_shortcode('[share title="' . esc_html__( 'Share:', 'xstore' ) . '" text="' . get_the_title() . '"]'); ?>
    	           			</div>
    					<?php endif ?>
    
    				</div>
    
    				<?php
    					$length = etheme_get_option( 'quick_descr_length' );
    					$length = ( $length ) ? $length : 120;
    					$description = etheme_trunc( etheme_strip_shortcodes(get_the_content()), $length );
    					$description = trim($description);
    				?>
    				
    				<?php if (etheme_get_option( 'quick_descr' ) && !empty( $description )): ?>
    					<div class="quick-view-excerpts">
    						<div class="excerpt-title"><?php esc_html_e('Details', 'xstore'); ?></div>
    						<div class="excerpt-content">
    							<div class="excerpt-content-inner">
    								<?php echo wp_kses_post($description); ?>
    							</div>
    						</div>
    						<?php if (in_array('product_link', $product_settings)): ?>
    							<a href="<?php the_permalink(); ?>" class="show-full-details"><?php esc_html_e('Show full details', 'xstore'); ?></a>
    						<?php endif; ?>
    					</div>
    				<?php elseif (in_array('product_link', $product_settings)): ?>
    					<a href="<?php the_permalink(); ?>" class="show-full-details"><?php esc_html_e('Show full details', 'xstore'); ?></a>
    				<?php endif; ?>
    
                </div><!-- Product information/ END -->
            </div>
            
        </div> <!-- CONTENT/ END -->
    Avatar: ianabel
    ianabel
    Participant
    September 25, 2019 at 07:54

    In wp-content/themes/ I only have these three folders:
    /twentynineteen
    /twentyseventeen
    /twentysixteen
    No Xstore folder.

    Avatar: ianabel
    ianabel
    Participant
    September 24, 2019 at 16:44

    Can you please tell where to find xstore folder? I can’t find it in wp-content, wp-admin or wp-includes. Thanks

    Avatar: ianabel
    ianabel
    Participant
    September 23, 2019 at 16:10

    Hello,

    1) Ok.
    2) I would like the following tabs order:
    1st-Descripción (this is a default tab)
    2nd-Información adicional (tab that shows attributes)
    3rd- Modo de empleo (this is the custom product tab)
    4th-Valoraciones (this is the review tab). Right now this is in the 3rd position.

    Avatar: ianabel
    ianabel
    Participant
    September 21, 2019 at 16:17

    Thanks! Works perfectly 🙂

    Avatar: ianabel
    ianabel
    Participant
    September 21, 2019 at 15:49

    Thank you. It works perfectly, but it doesn’t apply to custom tab text. With description tab works ok.

  • 1 2 3 4
    Viewing 103 results - 91 through 103 (of 103 total)
Viewing 13 posts - 91 through 103 (of 103 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.