Home › Forums › Pro Themes › Yummy Pro › Customize products pages backgroung and header
Tagged: signify pro
- This topic has 10 replies, 1 voice, and was last updated 3 years ago by Paola Marlene Mora Rojo.
-
AuthorPosts
-
December 7, 2017 at 6:51 am #59897Lin JiangParticipant
Hello, everybody.
I’m using Yummy pro for a sushi restaurant take away.
My problem is that I cannot manage to change background and header images on inner pages of shop and product. (I use woocommerce plugin).
In other words I want to change strawberry img (header) and traditional dishes (backgroud) imgs with a custom img.
Thank you.December 7, 2017 at 11:30 pm #59965wensolutionsKeymasterHello @yisushiforyou,
The theme has already provided the option where you can set the header image for the individual page through the meta option available in the individual post.
For shop page go to Admin Panel > Pages > All Pages > Shop Page . There you will find the Yummy Pro meta option. Here in Header Image option chose Enable Featured Image option and whatever image you upload in the Featured image section of Shop page will appear as the header image.
Screenshot:
https://image.prntscr.com/image/mf_jHZMUTh6PZ1diAoZhew.png
As for the background image, you can change the image from the Customizer itself. Just go to Admin panel > Appearance > Customize > Background image . But the image upload here will be on the entire site.
If you want to change the image of orange, plates etc that is in the background of sho page you have to customize the code itself.
For this, you have to activate the child theme. You can activate the child theme using the plugin given below.
https://wordpress.org/plugins/wp-child-theme-generator/
After activating the child theme in your child theme functions.php file paste below-given code and place your desired image URL .
https://gist.github.com/anonymous/b79a8cbbe7ee28a6c065076f15b5c0c8
As for the specific product page theme does not have a feature to set specific header image and background image.
Hope this helps.
Best Regards!!
Have a good day.
December 12, 2017 at 5:05 am #60432Lin JiangParticipantHello and thank you for your answer.
But the problem is not in the Shop page, for which I have already set your instructions. The problem with the header image, and with background dishes are in single product pages, since from “All pages” is not possible to reach the single product pages and set them as I want.Thank you!
December 12, 2017 at 6:47 am #60450wensolutionsKeymasterHello @yisushiforyou,
Since the product comes from the WooCoomerce, there is no option in theme to upload the header image for each individual product page.
However, you can add the header image for each product page using the ID of the product but it would be tedious because there are so many products for which you need to add the header image. But here is the solution for two different cases.
If you want the same header image for all product page the use below given CSS.
.single-product section#banner-image { background-image: url(http://localhost/wordpress/wp-content/uploads/2017/11/cinque-terre-279013_640.jpg)!important; }
If you want to change the header image for individual product page then you have to use the id of that page. For this use below given CSS.
.single-product .postid-1774 #banner-image { background-image: url(http://localhost/wordpress/wp-content/uploads/2017/11/cinque-terre-279013_640.jpg); }
Here replace the image URL with your image URL and replace the ID with the ID of that product page.
Screenshot:
https://image.prntscr.com/image/09pGwey6S9eqDXgzW3y4dw.pngNow to change the image of the dishes in individual paste below-given code in your child theme functions.php file.
https://gist.github.com/anonymous/fa9a798510432320ecf25d2f6c0c6d35
Hope this helps.
Best Regards!!
December 12, 2017 at 6:53 am #60451Lin JiangParticipantThank you very much, now I’m goig to try. I will use the same header image for product.
Ust another question: and if I want to set no background (no dishes) on all product pages, what I have to do?
Thank you very much for your help.
Best regardsDecember 12, 2017 at 11:01 pm #60524wensolutionsKeymasterHello @yisushiforyou,
IF you do not want to display any image in single product page then please add below given code in your child theme functions.php file.
function yummy_pro_child_remove_image(){ remove_action('woocommerce_after_main_content', 'yummy_pro_before_product_end', 10); remove_action( 'woocommerce_after_single_product', 'yummy_pro_single_product_end', 20 ); } add_action('init','yummy_pro_child_remove_image');
Hope this helps.
Best Regards!!
December 13, 2017 at 4:55 am #60548Lin JiangParticipantHello, thank you very much. The CSS for single product header is ok.
The very last question. Could you please provide me the CSS code to set “no sidebar” on all product pages? In this way, I think, the background will be white.
Thank you.December 13, 2017 at 10:17 am #60581wensolutionsKeymasterHello @yisushiforyou,
Actually there is no sidebar displayed in the product pages .
Also, the code we have provided above will remove the images in all single product page thus making the background white.
Hope this clears the confusion.
Best Regards!!
December 14, 2017 at 4:16 am #60804Lin JiangParticipantOk, thank you!
December 14, 2017 at 5:56 am #60813wensolutionsKeymasterHello @yisushiforyou,
Glad we could help you !!
If you have any issues further, please feel free to post your queries and we will happily help you further.
We will really appreciate if you could help us too by rating our theme in WordPress repo here:-
https://wordpress.org/support/theme/yummy/reviews/
Best regards !!
November 5, 2021 at 4:19 am #170707Paola Marlene Mora RojoParticipantHello!
I have this same problem but for Signify Pro. My product pages have the header deleted
How can I change this?
https://magichealingbo.wpcomstaging.com/?product=sails-planets-astros
-
AuthorPosts
- You must be logged in to reply to this topic.