Hi Alvaro,
The best place to ask the questions in your previous post is by contacting the support forum for the theme, they usually have options to hide the areas that you are referring to.
The most I can do is to provide a css based solution.
1- It is showing the defauult Side Bar, in this case I don´t want to show it.
A. you can hide this with the css below.
.sidebar{
display: none;
}
2- 2- I don't want to show the "Post Featured Image" it is showing it by default, I just want to display the "Post Featured Image"
that I have added using the "Tool Set Layouts".
.post-thumbnail img{
display: none;
}
3- The same with the "POst title", it is showing by default, I just want to display the "Post title" that I have added using the
"Tool Set Layouts".
.entry-title{
display: none;
}
4- I have added 2 images, but none are shown, it should show after the red text "CUSTOM IMAGE Nº1 HERE:" and CUSTOM IMAGE Nº2
Since for this you are using a repeatable field group, then you will need to use a view to display these images. Take a look at the link below for a guide on how to do this.
hidden link
5- I add custom fields for 3 Links, each link has a field for the text to display and the URL, but no one is showing.
This is also a repeatable field group and would need to be displayed similarly to how I describe in 4 above.
6- Could you please tell me how I do hide a DIV that hold a field has not been filled?
To do this you will need to make use of our conditionals, have a look at this link below.
https://toolset.com/documentation/user-guides/conditional-html-output-in-views/checking-fields-and-other-elements-for-emptynon-empty-values/
You will need to then add your div within the conditional so it only displays if your item is not empty.
7- At the end of the page, you can see a red text "MORE OFFERS:" it should show the related offer post of the same category, but is no showing.
The problem with this is that you created your view but you have not told your view what to display. This is not an automatic process and you need to let you view know what to display after you've selected the post type.
Scroll to the Loop output section and use the loop output section in order to tell views what attributes from the post to display.
hidden link
Please let me know if this helps.
Thanks,
Shane