Tehseen Ahmed
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] How to design this simple thing?select#pa_color {
margin-bottom: 12px;
}try this one
Forum: Plugins
In reply to: [WooCommerce] How to design this simple thing?oppppss add this one and tell me please if its work for you.
table.variations tr td {
display: inherit;
}Forum: Plugins
In reply to: [WooCommerce] How to design this simple thing?i dont get your point its already under the title. kindly explain
Forum: Plugins
In reply to: [WooCommerce] How to design this simple thing?Hi
if you really want to separate the sku and category as you say in your above problem. add below css i guess it solve your problem.
.product_meta span {
display: -webkit-box;
}regards
Forum: Plugins
In reply to: [WooCommerce] separate login and register sections to two pagesHi. You just have a look below link once i guess this solve your problem instead i can teach you step by step you simply follow the tutorial.
http://cubiq.org/front-end-user-registration-and-login-in-wordpress
your welcome thankyou
Faizan bro you simply add this code in you function.php this will change the things for you. You dont modify the below code simply copy an past.
for account user name:
add_filter( 'woocommerce_checkout_fields' , 'hjs_wc_checkout_fields' ); function hjs_wc_checkout_fields( $fields ) { $fields['account']['account_username']['label'] = 'Select A State'; return $fields; }for account user password:
add_filter( 'woocommerce_checkout_fields' , 'hjs_wc_checkout_fields' ); function hjs_wc_checkout_fields( $fields ) { $fields['account']['account_password']['label'] = 'Select A State'; return $fields; }you just change the [‘label’] to [‘placeholder’] if and only if you change the placeholder of text and if you change label use same code as above.
Forum: Plugins
In reply to: [WooCommerce] “Shipping” Translation is not working.Hi Michele.
kindly clear your question . What you really want to do with this..? what you need ..?
Regards
Here is the way you can change the label of checkout fields as well as the placeholder of those fields.
Simplay copy and past below code in your function.php save and refresh the checkout page label of first name was changed to (“select a state”),
and if you want to change the place holder of those fields you simply replace the [‘label’] to [‘Placeholder’].
add_filter( ‘woocommerce_checkout_fields’ , ‘hjs_wc_checkout_fields’ );
function hjs_wc_checkout_fields( $fields ) {
$fields[‘billing’][‘billing_first_name’][‘label’] = ‘Select A State’;
return $fields;
}Forum: Themes and Templates
In reply to: [Dynamic News Lite] Removing white space at top/header issuesyour welcome, And it did not effect any settings.
Forum: Themes and Templates
In reply to: [Dynamic News Lite] Removing white space at top/header issuesForum: Themes and Templates
In reply to: [Dynamic News Lite] Removing white space at top/header issuesnav#mainnav ul#mainnav-menu li {
display: inline-block;
padding: 12px 8px;
}
#header {
padding: 0px !important;
}Please add above css in you child theme style.css.
Happy coding.Regards
Tehseen Ahmed.Forum: Fixing WordPress
In reply to: How to have a new staging site and then switch to itHave you a server access…. ? Mean you want to install multiple WordPress on you server if yes you can easily do this task.
Simply install new wordpress copy full zip theme from old to new install wordpress and active new one once you active you new install theme . you simply import .xml and theme options form your old site to new site.
Forum: Themes and Templates
In reply to: Integration of existing CSS Theme into WP blogIf you export .xml file and theme options form your site and import into blog i guess 80% of your work will complete through this and then you can set rest of css.
Forum: Plugins
In reply to: Custom post with metaboxWhere can woocommerce save order item price in post meta …? how we can find specific product price which is been ordered ..??
thanks in advance