Block Shippings & Payments Methods Not Displayed

Hi ,



I am trying to display the block shippings methods & payments methods at product page and nothing displayed



I add the block shipping methods & payment methods at layouts but nothing happens.



Can anybody give me some help do i missing something about the way thoses blocks are displayed



Thanks

[quote name='jtheogr' timestamp='1417780470' post='198833']

Hi ,

I am trying to display the block shippings methods & payments methods at product page and nothing displayed

I add the block shipping methods & payment methods at layouts but nothing happens.

Can anybody give me some help do i missing something about the way thoses blocks are displayed

Thanks

[/quote]



The question is the “Payment methods” and the “Shipping methods” blocks show only icons of methods which are attached to Payment/Shippings.



You just need go to the “Payment/Shipping” detailed page and add icon for methods. After that images of methods will be displayed in store front.



I hope it makes sense.



Best regards,

Leonid

Chief Technology Officer of CSExperts

Thanks for the clarification.

Does anybody have a list of named hooks i need to make some changes at category list and i don't know the *.tpl name for the hook.

[font=“arial, verdana, tahoma, sans-serif”][color=“#282828”]i would like to add a custom text above or below quantity at the category view product list with option.[/color][/font]

The file is



design\themes\THEME\templates\blocks\list_templates\products_list.tpl



But it does not contain hooks. The following file collects all information for the template above. Try to find desired hooks here



design\themes\THEME\templates\common\product_data.tpl

Finally i made the addon with the desired changes , i have one more question



I want to hide the availability label but as i see the only way i can do it is to deleted it from product_data.tpl if you know other way with my_changes addon it will be very helpful for me, i think the problem is because the label has not declared and i cannot hide it through css.



Thanks for your help.

[quote name='jtheogr' timestamp='1417815892' post='198893']

Finally i made the addon with the desired changes , i have one more question



I want to hide the availability label but as i see the only way i can do it is to deleted it from product_data.tpl if you know other way with my_changes addon it will be very helpful for me, i think the problem is because the label has not declared and i cannot hide it through css.



Thanks for your help.

[/quote]



Try this way:


  1. Create “styles.css” in “/design/themes/responsive/css/addons/my_changes” folder with this content:



.stock-wrap {
display: none;
}




2. Create “styles.post.tpl” in “/design/themes/responsive/templates/addons/my_changes/hooks/index” folder with this content:


{style src="addons/my_changes/styles.css"}



3. Don't forget enable the “My changes” add-on.



[color=#282828][font=arial, verdana, tahoma, sans-serif]Best regards,[/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif]Leonid[/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif]Chief Technology Officer of CSExperts [/font][/color]

Nothing changed only the availability message i was be able to hide not the label with the command below



.ty-qty-in-stock {
visibility: hidden;
}

[quote name='jtheogr' timestamp='1417858141' post='198925']

Nothing changed only the availability message i was be able to hide not the label with the command below



.ty-qty-in-stock {
visibility: hidden;
}


[/quote]



Sorry, please change to:



.stock-wrap {
display: none;
}




[color=#282828][font=arial, verdana, tahoma, sans-serif]Best regards,[/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif]Leonid[/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif]Chief Technology Officer of CSExperts [/font][/color]

Thanks its working , what the difference from your other suggestion i see only some space added to the last one.

[quote name='jtheogr' timestamp='1417898523' post='198959']

Thanks its working , what the difference from your other suggestion i see only some space added to the last one.

[/quote]



Before:



.stock-wrap {
display: hidden;
}




now:



.stock-wrap {
display: none;
}




There is no such combination “display: hidden;” at all. My error.



[color=#282828][font=arial, verdana, tahoma, sans-serif]Best regards,[/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif]Leonid[/font][/color]

[color=#282828][font=arial, verdana, tahoma, sans-serif]Chief Technology Officer of CSExperts [/font][/color]

Your system does not respond to the operating options it? Generally, it has,perhaps you can consult the developers?

Hi to everyone ,



I am looking to find a way to replace the stock.wrap message with a message of i choose, i already did that but now i need to display the message at the same position of the generic availability message.



I already use my_changes addon for this changes and “product_amount.post.tpl” my question is if i use “product_amount.override.tpl”

its going to work ?



For now i hide the stock.wrap from css and display my own message i think the proper way to do that is to replace the stock.wrap with

my message.





Can anyone one give some help with that.

[quote name='jtheogr' timestamp='1419592703' post='200997']

Hi to everyone ,



I am looking to find a way to replace the stock.wrap message with a message of i choose, i already did that but now i need to display the message at the same position of the generic availability message.



I already use my_changes addon for this changes and “product_amount.post.tpl” my question is if i use “product_amount.override.tpl”

its going to work ?



For now i hide the stock.wrap from css and display my own message i think the proper way to do that is to replace the stock.wrap with

my message.





Can anyone one give some help with that.

[/quote]



Could you please clarify what do you mean by “[color=#282828][font=arial, verdana, tahoma, sans-serif]stock.wrap[/font][/color]”?

Sorry i mean “.stock-wrap” is the class name for stock availability message.

[quote name='jtheogr' timestamp='1419594088' post='201000']

Sorry i mean “.stock-wrap” is the class name for stock availability message.

[/quote]



Thank you for the answer. Yes, you should use override template here. It will work