Digital experiences for all disciplines
Forum Replies Created
-
-
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 subtitlesThanks,
David.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.
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.June 24, 2015 at 2:14 pm in reply to: Atelier, Advanced Custom Fields, and WooCommerce Products #188066Hey,
Sure, are you using a child theme?
You will want to create a file called
meta.php
in this location: atelier theme folderwoocommerce/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.Could you please supply a WP login credential for us to investigate further?
Cheers,
David.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.Thanks Kyle,
Lumieredays please let us know if you need any more assistance.
Thanks,
David.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.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.June 24, 2015 at 10:38 am in reply to: Hide all pricing and Add to Cart button for non-members #187865Hi,
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.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.
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.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.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.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.
-