Hi there,
Firstly, I’d like to congratulate you on the release of V6 however I’m a little bemused by the jump from 4.x to 6.x… anyway…
The logo seems a little misplaced. Here’s how the logo looks on V6: http://take.ms/Y5bmk and here’s how I’d like it to look: https://api.monosnap.com/rpc/file/download?id=0ufedrMtqNKYbA2dJ0GC66ChFb09qc (ignore the colour difference)
Big chunk missing from header when using post template 4: http://monosnap.com/file/ghiiwYH0xkXKXxRajqypUazkupEneP
Is it possible to close these gaps: http://take.ms/cloVH and http://take.ms/yO4HI?
Everything else is great so far..
-
This topic was modified 11 years by
Daniel Finch.
Hi,
1. Please provide a link as I need to check this on your site.
2. I have added this on our list and it will be fixed in future update, thanks for reporting this.
Please try this custom css in Theme Panel till then – http://screencast.com/t/ye67hUkd8E2w
.td-post-template-4 .td-post-header-holder {
margin-top: 0;
}
3. Please try this custom css:
.td-post-source-tags {
margin-bottom: 10px;
}
.td-post-content {
padding-bottom: 5px;
}
Thanks!
Talking about bugs and adjustments, I cannot edit any element of any page using visual composer after updating. I only can move elements, but not edit them.
Moreover, only standard and video post types are available.
Thanks for getting back to me…
I’m not able to close the gaps with the CSS you gave me: http://take.ms/T7Xe9, http://take.ms/XgVIC
Link to my site to take a look at the logo: http://news.snowwatch.org.uk/
I don’t want to leave my site live for too long as it’s not finished please respond ASAP.
Hi,
@snowwatchGB Please check this custom css for your logo and see if it helps: http://screencast.com/t/xsGckVM3vyGr
@media (min-width: 1141px){
.td-header-style-1 .td-header-sp-logo {
margin: 28px 0px 9px 0px;
width: 340px;
padding: 0px
}
.td-header-style-1 .td-header-sp-logo img {
right: auto;
}
}
Also for that gap please try this css – http://screencast.com/t/5D91dcqZUKmg try to use !important tag
.td-post-template-4 .td-post-header-holder {
margin-bottom: 20px !important;
}
@themeforest_antonio Did you updated also the Visual Composer plugin to the latest version provided with the theme?
Also did you removed the old theme and uploaded the new one properly using this guide – https://forum.tagdiv.com/how-to-update-the-theme-2/ Please provide more details about this, also you can check it without any plugins active leave just Visual Composer active, clear cache and check again if you can edit the blocks.
Unfortunately new version of the theme has only 2 formats like you already know. If you need to add more post formats please take a look here – https://codex.wordpress.org/Post_Formats and try to add more formats in theme functions: http://screencast.com/t/MsM6Dc3q9j
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
The problems with visual composer are already solved.
With regard to post types, I don’t understand why you have supressed the gallery type posts. I think it isn’t logical to eliminate a funcionality that lot of users have been using a long time, creating lot of posts, and that hits posts already published.
In gallery type post, although you assign a featured image, it isn’t shown in the post content. This was useful when you wanted show several images, because the featured image was shown in the blog page, but when you opened the post, it wasn´t. So, what I was doing was to insert a gallery with several images (including the featured one), so you could avoid having first the featured image and then the same image repeated in the gallery.
Now, in your new version of the theme without gallery type posts, my site has hundreds of published posts in which the first element shown is the featured image, and then the gallery shows the same image again. Moreover the aspect of a big image (the featured one) close to the thumbnails of the gallery is awful.
So, how am I suppossed to fix this problem that your new version has caused?. In my opinion, the changes that affect negatively to contents already published shouldn´t be done. I cannot understand this kind of updates that destroy a great part of my work.
Hi,
Unfortunately the developers decided to have only standard and video post formats as there is a post template (post style 5) that can be used to not display featured image in the post content. We are sorry for inconvenience!
A solution to fix this is to add gallery format again to post formats – http://screencast.com/t/XqX1Wkf5hjy and create a condition in the articles module – http://screencast.com/t/lIHWpS0V
if (get_post_format($this->post->ID) == 'gallery') {
return '';
}
Hope this helps!
-
This reply was modified 11 years by
Alin [tagDiv].
OK. Thank you for the information about the solution.