Digital experiences for all disciplines
Forum Replies Created
-
-
hi,
sorry it’s actually on the checkout page. Sorry about that!!
but now that I am at it… I’d like to know if it is possible to look at the alignment on the cart page. it’s more cosmetics that the problem we have on on the checkout page i mentioned above.
Basically, I’d like to know if it possible to move down the info underneath the title “Cart Toatl” so the grey line is inline with the one on the “your selection” section. Sorry I do realise it sounds a bit obscure but not sure how to describe it better. I have added a pic to help.
Let me know if I make sense and if you have any question!
Crossing finger it’s possible without messing ip mobile.Thanks a lot!!
Attachments:
You must be logged in to view attached files.September 5, 2015 at 2:31 pm in reply to: Issues following update on storefront and product page #210590Hi David!
Sorry for my late reply!! Thanks so much for fixing the product title and the CSS code!!! Yay!!!
Regarding the zoom problem, the weird problem with the zoom is fixed but now I have a new one 🙁 if I select a product variation and zoom over its image, the zoom shows the principle image instead of the one of the product variation.Also, would you have a css for me to change the size of the text in the section area (see pic 2)?
Thanks a lot!!
G
Attachments:
You must be logged in to view attached files.September 1, 2015 at 12:32 pm in reply to: Issues following update on storefront and product page #209154Hi David,
Thanks so much for your help!!!
I am more than happy for you to edit the php file :-). Should we remove the CSS code then (which doesn’t seem to work for some reason)?
Regarding point 3, I re-updated the single image php and that seemed to have done the trick so it’s all good on that one.I also have a new question: we would like to have the whole website in helvetica uppercase. I have done some painstaking CSS but it threw away our font size customisation on 2 areas: 1/ front store/woocommerce widget for product category & colour and 2/single product page/short product description & Select option area. I tried to add font size customisation to the CSS but no luck :-(. Would you have any idea why?
Thanks so much!!
Hi,
I took the Css code ut after my last reply and tried to put it back in to give you a screen shot but somehow it doesn’t work anymore. I emptied my cache but nothing.
anything I am missing?:woocommerce ul.products li.product .price del {
float: left !important;
margin-right: 4px !important;
}
.woocommerce ul.products li.product .price ins{
float: right !important;
}Perfect!! Thanks a lot Mohammad! you’re a star!!
Hi!
I cleaned the cash and in fact, it is working on laptop screen. it looks super weird on mobile though.
Anything we can do to affect this only on pc/laptop and not on mobile?
ThanksHi
Thanks a lot for the code. just pasted it to my custom Css but it is not working.
G
Hi
I just re-read my message and realised it is full of typo that make it hard to understand. What I meant is that the code isn’t working for my screen. It made the whole menu fall down completely at the slider level instead of being aligned with the bottom of the logo.
sorry about that! thanks
GHi Mohammad
this isn’t working on my screen. I made the whole menu fall down completely instead of being alive to the bottom of the logo.
I have attached a pic to show you what it looks like on my screen.thanks
GAttachments:
You must be logged in to view attached files.This reply has been marked as private.August 29, 2015 at 10:30 am in reply to: Hiding irrelevant shipping options according to order amount #208583Hi
this is resolved. I found a new code on the woocommerce site:
/**
* woocommerce_package_rates is a 2.1+ hook
*/
add_filter( ‘woocommerce_package_rates’, ‘hide_shipping_when_free_is_available’, 10, 2 );/**
* Hide shipping rates when free shipping is available
*
* @param array $rates Array of rates found for the package
* @param array $package The package array/object being shipped
* @return array of modified rates
*/
function hide_shipping_when_free_is_available( $rates, $package ) {// Only modify rates if free_shipping is present
if ( isset( $rates[‘free_shipping’] ) ) {// To unset a single rate/method, do the following. This example unsets flat_rate shipping
unset( $rates[‘flat_rate’] );// To unset all methods except for free_shipping, do the following
$free_shipping = $rates[‘free_shipping’];
$rates = array();
$rates[‘free_shipping’] = $free_shipping;
}return $rates;
}August 28, 2015 at 3:20 pm in reply to: Issues following update on storefront and product page #208454hi David,
Thanks so much for coming back to me.
1/ I haven’t made any modification to child theme or anything else since the creation of the website (nov 2014) so I don’t understand why the last update would suddenly affect the single product page to the point that I have to re-install everything.
if so, would re-dowloading the theme and overwrite the current parent theme affect any of my content and settings? or is this just like a *manual* update? Could you be a tight more specific as to what should be done? (sorry…). busy downloading the latest thing from theme forest.2/ I am confused and don’t quite understand why you are speaking about mobile page title.
My question concerned the product name on the single product page. My main users use their pc/laptop so currently it’s my main concern (South Africa is a developing country and the online shopping is indeed booming but not very sophisticated yet to say the least…).
I have added a pic of how the single product page use to look like before the latest update and how it looks now. I do not use a page title and don’t want to use one.Any chance you could also have a look at the issues 2 and 3 (repasted below)?
2-> When a product variation is selected, there is a weird problem with the zoom for the pic. I tried to use regenerate thumbnail pluggin toll after all the changes I made, but that did not help. it also happens on the
3-> the small images of the other product images available underneath the big main one have desappeared (see image 2).Attachments:
You must be logged in to view attached files.August 28, 2015 at 8:26 am in reply to: Issues following update on storefront and product page #208339Hi David
I found a temporary solution but it doesn’t work on all screen – it’s just less bad –
I modified the code above to this:
.woocommerce div.product .entry-title {
display: block; !important;
float: left;
margin-left: 51.5% !important;
margin-bottom: 25px !important;
color: #000000 !important;
font-size: 12px !important;
font-weight: bold !important;
text-transform: uppercase !important;
}And it helps but still this is not a solution.
I am sure you are super busy but I did start this thread about 2 month ago now and we are launching ur new collection next week.Help!
Thanks a lot
GAugust 27, 2015 at 1:13 pm in reply to: Issues following update on storefront and product page #208123Hi
I *think* I’ve found the source of the problem.
It may come from a custome Css modification I did when I created the website. The intent was to move the product name above its price. I used a code that found on your support forum:
.woocommerce div.product .entry-title {
display: block !important;
margin-bottom: 20px !important;
color: #000000 !important;
font-size: 12px !important;
font-weight: bold !important;
text-transform: uppercase !important;
}It worked fine until the latest upgrade.
I tried to take out that code, but then the product name just simply disappear, so it is not a solution.
Basically I just want the product name to be above the price and aligned left to the price.
Not sure it helps… Let me know.
August 27, 2015 at 11:40 am in reply to: Issues following update on storefront and product page #208085This reply has been marked as private. -