Forum Replies Created

Viewing 15 posts - 20,026 through 20,040 (of 20,136 total)
  • Posted in:
  • in reply to: YouTube #188094
    David Martin – Support
    Moderator
    Post count: 20834

    Hey,

    You would need to amend the URL and add in the available option parameters that you can pass to a video. Try this new updated video URL:

    https://youtube.com/watch?v=4guabsS6G4s%3Fshowinfo%3D1%26autohide%3D0%26cc_load_policy%3D1

    Breakdown:

    showinfo=1 = causes the player to not display the video title and uploader before the video starts
    autohide=0 = player’s video controls on/off
    cc_load_policy=1 = show subtitles

    Thanks,
    David.

    in reply to: Naked header not showing #188078
    David Martin – Support
    Moderator
    Post count: 20834

    A variation:

    body[class*="header-naked"] #header-section .is-sticky #header {
    	-moz-box-shadow: none;
    	-webkit-box-shadow: none;
    	box-shadow: none;
    }
    
    #header-section .is-sticky .sticky-header {
    	  border-bottom: none;
    }

    Let us know how you get on.

    Thanks.

    in reply to: Load More Not Working #188070
    David Martin – Support
    Moderator
    Post count: 20834

    Hey,

    There is a new update for this theme available, are you able to update to the latest version?

    http://ergonomi.co.uk/wp-admin/update-core.php

    – Let me know when you have.

    Thanks,
    David.

    David Martin – Support
    Moderator
    Post count: 20834

    Hey,

    Sure, are you using a child theme?

    You will want to create a file called meta.php in this location: atelier theme folder woocommerce/single-product/meta.php. (Ideally in your child theme)

    Then add this code to the new file:

    <?php
    /**
     * Single Product Meta
     *
     * @author 		WooThemes
     * @package 	WooCommerce/Templates
     * @version     1.6.4
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	exit; // Exit if accessed directly
    }
    
    global $post, $product;
    
    $cat_count = sizeof( get_the_terms( $post->ID, 'product_cat' ) );
    $tag_count = sizeof( get_the_terms( $post->ID, 'product_tag' ) );
    
    ?>
    <div class="product_meta">
    
    	<?php do_action( 'woocommerce_product_meta_start' ); ?>
    
    	<?php if ( wc_product_sku_enabled() && ( $product->get_sku() || $product->is_type( 'variable' ) ) ) : ?>
    
    		<span class="sku_wrapper"><?php _e( 'SKU:', 'woocommerce' ); ?> <span class="sku" itemprop="sku"><?php echo ( $sku = $product->get_sku() ) ? $sku : __( 'N/A', 'woocommerce' ); ?></span></span>
    
    	<?php endif; ?>
    
    	<?php echo $product->get_categories( ', ', '<span class="posted_in">' . _n( 'Category:', 'Categories:', $cat_count, 'woocommerce' ) . ' ', '</span>' ); ?>
    
    	<?php echo $product->get_tags( ', ', '<span class="tagged_as">' . _n( 'Tag:', 'Tags:', $tag_count, 'woocommerce' ) . ' ', '</span>' ); ?>
    
    	<?php do_action( 'woocommerce_product_meta_end' ); ?>
    
    </div>

    You can then edit the output to match your needs 🙂

    Thanks,
    David.

    in reply to: Load More Not Working #187994
    David Martin – Support
    Moderator
    Post count: 20834

    Could you please supply a WP login credential for us to investigate further?

    Cheers,
    David.

    in reply to: Disable price range on startpage. #187984
    David Martin – Support
    Moderator
    Post count: 20834

    Hi Andy & Kyle,

    That CSS works perfectly for me, what page do you still see the ‘-‘?

    As mentioned above the CSS is an imperfect solution for this query, Kyle’s solution is the correct direction!

    Thanks.
    David.

    in reply to: Problems editing the content on the main page #187981
    David Martin – Support
    Moderator
    Post count: 20834

    Thanks Kyle,

    Lumieredays please let us know if you need any more assistance.

    Thanks,
    David.

    in reply to: Directory import of lat/long but no actual address #187979
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    I do not think this is possible, how have you imported those entries?

    You would likely need to use the Google Geo API to generate the address from the latitude/longitude meta data. – Do you have a developer to work with?

    Thanks,
    David.

    in reply to: Lightbox not working #187957
    David Martin – Support
    Moderator
    Post count: 20834

    Hey,

    1) It’s possible another plugin is interfering with this. Can we deactivate your plugins?

    2) I notice you are using a child theme, there is an update available for the main theme. Can you update this in your dashboard?

    2) When using the classic editor, you will need to alter the image settings when inserting it. ATTACHMENT DISPLAY SETTINGS => Link To => None.

    Thanks,
    David.

    in reply to: Hide all pricing and Add to Cart button for non-members #187865
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    The above CSS should do it, can you show me what you have tried? Likely I can provide you with some helper CSS.

    Also can you add your URL and login details?

    Thanks,
    David.

    in reply to: How to load Hero Image #187860
    David Martin – Support
    Moderator
    Post count: 20834

    Hey, no problem.

    You can use CSS3 scale with the below (add your classes/settings):

    img {
        -webkit-transition: all 1s ease; /* Safari and Chrome */
        -moz-transition: all 1s ease; /* Firefox */
        -o-transition: all 1s ease; /* IE 9 */
        -ms-transition: all 1s ease; /* Opera */
        transition: all 1s ease;
        max-width: 100%;
    }
    
    img:hover {
        -webkit-transform:scale(1.25); /* Safari and Chrome */
        -moz-transform:scale(1.25); /* Firefox */
        -ms-transform:scale(1.25); /* IE 9 */
        -o-transform:scale(1.25); /* Opera */
         transform:scale(1.25);
    }
    

    Thanks.

    in reply to: Disable price range on startpage. #187855
    David Martin – Support
    Moderator
    Post count: 20834

    Hey,

    When editing core files, you really must use the supplied child theme, this way updates will never remove these changes 🙂

    CSS would not be ideal for this, you would need to edit the actual file and do this at template level.

    However, if you cannot do this CSS like this should get you going in the right direction:

    .price .amount:before {
      content: "From ";
    }
    
    .price .amount:nth-of-type(2) {
    	display: none;
    }
    
    .amount font font {
      display: block!important;
    }
    
    .price font > font {
    	display: none;
    }
    
    .price font>font:nth-of-type(1) {
      display: none;
    }
    

    Thanks,
    David.

    in reply to: counter portfolio category #187826
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    1) Can you post us your FTP details?

    2) Can you switch the admin language back to English for us to help you better?

    Thanks,
    David.

    in reply to: counter portfolio category #187644
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    Please refrain from making new requests within this support thread, please open a new ticket so we can better help you.

    It looks like there is an error in the isotope.js file also? – Have you modified that?

    Thanks,
    David.

    in reply to: Parent page for custom post type #187642
    David Martin – Support
    Moderator
    Post count: 20834

    Hey Harsha,

    1) So we have a better understanding, could you post up how you want your portfolio URL’s to be?

    2) The WooCommerce reserved page contents are generated automatically, not related to the Page Builder. Those templates exist within the theme folder.

    Thanks.

Viewing 15 posts - 20,026 through 20,040 (of 20,136 total)