rickgrevatt
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Woocommerce] – CustomizeJust an FYI but I have found that editing the core woocommerce code is not a great idea. You can run into problem when upgrading. I had this same problem and instead added the following to my themes functions.php
‘remove_action( ‘woocommerce_before_shop_loop’, ‘woocommerce_catalog_ordering’, 30 );’Which took care of it
Forum: Plugins
In reply to: [WooCommerce] Checkout form fields have bad positioningI tried your fix and must be missing something. I too have the same problem for a site in development. I updated my woocommerce-templae.php as follows
case "country" : $field = '<p class="form-row ' . implode( ' ', $args['class'] ) .'" id="' . $key . '_field">'; $field .= '<label for="' . $key . '" class="' . implode( ' ', $args['label_class'] ) .'">' . $args['label']. $required . '</label>'; $field .= '<select name="' . $key . '" id="' . $key . '" class="country_to_state ' . implode( ' ', $args['class'] ) .'">'; $field .= '<option value="">'.__( 'Select a country…', 'woocommerce' ) .'</option>'; foreach ( $woocommerce->countries->get_allowed_countries() as $ckey => $cvalue ) { $field .= '<option value="' . $ckey . '" '.selected( $value, $ckey, false ) .'>'.__( $cvalue, }All I managed to do was break the site. Can you tell me what I am doing wrong please?
Thanks
Having the same problem, any response yet?
Did you upload the image to the correct folder?
Is the image the correct size and format? Mine is 468 X 130 pixels and works fine
add a blank line below those tags and insert your IMG tag like this
<header id="branding"> <hgroup class="fleft"> <img src=/wp-content/uploads/XXX.png>Then save your file
[Please post code snippets between backticks or use the code button.]
Thanks that did it
Can you please let m know how you got your logo to display where the header text is located? thx