Softound Solutions
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Query String with WooCommercedo the above codes work ?
Forum: Fixing WordPress
In reply to: Query String with WooCommerceHi,
Rename this “custom_override_checkout_fields” function and try this following function
function custom_override_checkout_fields( $fields ) { global $wp_query; $thename = 'defaultName'; if(isset($wp_query->query_vars['username']) && !empty($wp_query->query_vars['username'])) { $thename = $wp_query->query_vars['username']; } $fields['billing']['billing_first_name'] = array( 'label' => __($label, 'woocommerce'), 'placeholder' => _x($placeholder, 'placeholder', 'woocommerce'), 'required' => true, 'class' => array('form-row-wide'), 'clear' => true, 'default' => $thename ); return $fields; }Forum: Fixing WordPress
In reply to: Query String with WooCommerceHi,
I will check the issue.
Hi,
Yes, there is solution, use the following CSS
.tagline, #footer .site-logo{ display:none; }Did you activate your child theme once inserted codes into your child theme functions.php ?
Ok, let me try.
Forum: Plugins
In reply to: [Contact Form 7] Styling the buttonHi,
can you send your page link where the button exist ?
thanks
Forum: Plugins
In reply to: [WooCommerce] Stock – "In stock" or "Out of stock"Forum: Plugins
In reply to: [WooCommerce] Stock – "In stock" or "Out of stock"Hi,
You can download the Woo Custom Stock Status plugin from Github https://github.com/softound/woo-rename-stock-status
thanks
Forum: Themes and Templates
In reply to: Drop-Down Menu Background Missinghi, send your site link.
Forum: Themes and Templates
In reply to: Remove header colorThis will work
#wrapper{ background: none; } #wrap{ background: #FFF; }Forum: Themes and Templates
In reply to: Remove header colorAre you looking like this http://www.openscreenshot.com/i3/572f53c2037b96-51723759 ?
Forum: Themes and Templates
In reply to: Font size huge on mobile siteHi
In which resolution the font size is huge, can you send a screenshot ?
Forum: Themes and Templates
In reply to: Remove header colorHi Martin,
Use this CSS
#header-wrap { background-color: red !important; }Hi
wp-admin -> Appearance -> Customize -> Header area -> Header Slider
Here you can see the slider speed options, set same speed for both slider and text slider
Regards
Softound Solutions