Hi,
Can you give us a link to see the issue. What I know, that iframe are not managed by us. The theme only have a share link with the details and that iframe is provided by the social network.
Thanks!
Great! Please contact us anytime!
Have a nice day!
Hi,
Ok, Emil will take a look.
Thanks for the message!
Hi,
All this should be in root, like here: http://screencast.com/t/avtT6JJP65
Of course if all those items is in a parent will be listed as a sub-menus like in your screenshot.
Put all those in root, not as a sub-list in a parent item.
Thanks for the message!
Hi,
Use an older plugin version. I know that the latest version of the Yoast have some issues.
Wait for an update or use a similar plugin for seo.
Thanks for the message!
Great!
I’m glad that you have managed the issue.
Thanks for the message!
Hi,
I think can be hidden via CSS, just give me your site URL to take a look.
Thanks for the message!
Hi,
You can change the compression of the images and rebuilt the thumbnails.
Add this in function.php add_filter( 'jpeg_quality', create_function( '', 'return 50;' ) ); This will change the compression to 50, you can change any value you want.
After that rebuilt the thumbnails using this: https://forum.tagdiv.com/using-the-theme-with-existing-content/
You can read here more details about the page speed optimization:
https://forum.tagdiv.com/topic/pagespeed/#post-3070
Thanks for the message!
Hi,
The mega-menu should be alone in parent. Make sure you don’t add other links with him in menu.
To increase the limit change this value from here: http://screencast.com/t/OyabLfhm1Rak
Thanks!
Hi,
We will try to fix that.
There are some missing CSS.
If you want to fix it add this CSS in Theme panel -> Custom CSS
.wpb_animate_when_almost_visible {
opacity: 0;
}
.wpb_start_animation.wpb_top-to-bottom {
-webkit-animation: wpb_ttb 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Safari 4+ */
-moz-animation: wpb_ttb 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Fx 5+ */
-o-animation: wpb_ttb 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Opera 12+ */
animation: wpb_ttb 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* IE 10+ */
opacity: 1;
}
.wpb_start_animation.wpb_bottom-to-top {
-webkit-animation: wpb_btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Safari 4+ */
-moz-animation: wpb_btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Fx 5+ */
-o-animation: wpb_btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Opera 12+ */
animation: wpb_btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* IE 10+ */
opacity: 1;
}
.wpb_start_animation.wpb_left-to-right {
-webkit-animation: wpb_ltr 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Safari 4+ */
-moz-animation: wpb_ltr 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Fx 5+ */
-o-animation: wpb_ltr 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Opera 12+ */
animation: wpb_ltr 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* IE 10+ */
opacity: 1;
}
.wpb_start_animation.wpb_right-to-left {
-webkit-animation: wpb_rtl 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Safari 4+ */
-moz-animation: wpb_rtl 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Fx 5+ */
-o-animation: wpb_rtl 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Opera 12+ */
animation: wpb_rtl 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* IE 10+ */
opacity: 1;
}
.wpb_start_animation.wpb_appear {
-webkit-animation: wpb_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Safari 4+ */
-moz-animation: wpb_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Fx 5+ */
-o-animation: wpb_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Opera 12+ */
animation: wpb_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* IE 10+ */
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
}
/* Top to bottom keyframes */
@-webkit-keyframes wpb_ttb {
0% {
-webkit-transform: translate(0, -10%);
opacity: 0;
}
100% {
-webkit-transform: translate(0, 0);
opacity: 1;
}
}
@-moz-keyframes wpb_ttb {
0% {
-moz-transform: translate(0, -10%);
opacity: 0;
}
100% {
-moz-transform: translate(0, 0);
opacity: 1;
}
}
@-o-keyframes wpb_ttb {
0% {
-o-transform: translate(0, -10%);
opacity: 0;
}
100% {
-o-transform: translate(0, 0);
opacity: 1;
}
}
@keyframes wpb_ttb {
0% {
transform: translate(0, -10%);
opacity: 0;
}
100% {
transform: translate(0, 0);
opacity: 1;
}
}
/* Bottom to top keyframes */
@-webkit-keyframes wpb_btt {
0% {
-webkit-transform: translate(0, 10%);
opacity: 0;
}
100% {
-webkit-transform: translate(0, 0);
opacity: 1;
}
}
@-moz-keyframes wpb_btt {
0% {
-moz-transform: translate(0, 10%);
opacity: 0;
}
100% {
-moz-transform: translate(0, 0);
opacity: 1;
}
}
@-o-keyframes wpb_btt {
0% {
-o-transform: translate(0, 10%);
opacity: 0;
}
100% {
-o-transform: translate(0, 0);
opacity: 1;
}
}
@keyframes wpb_btt {
0% {
transform: translate(0, 10%);
opacity: 0;
}
100% {
transform: translate(0, 0);
opacity: 1;
}
}
/* Left to right keyframes */
@-webkit-keyframes wpb_ltr {
0% {
-webkit-transform: translate(-10%, 0);
opacity: 0;
}
100% {
-webkit-transform: translate(0, 0);
opacity: 1;
}
}
@-moz-keyframes wpb_ltr {
0% {
-moz-transform: translate(-10%, 0);
opacity: 0;
}
100% {
-moz-transform: translate(0, 0);
opacity: 1;
}
}
@-o-keyframes wpb_ltr {
0% {
-o-transform: translate(-10%, 0);
opacity: 0;
}
100% {
-o-transform: translate(0, 0);
opacity: 1;
}
}
@keyframes wpb_ltr {
0% {
transform: translate(-10%, 0);
opacity: 0;
}
100% {
transform: translate(0, 0);
opacity: 1;
}
}
/* Right to left keyframes */
@-webkit-keyframes wpb_rtl {
0% {
-webkit-transform: translate(10%, 0);
opacity: 0;
}
100% {
-webkit-transform: translate(0, 0);
opacity: 1;
}
}
@-moz-keyframes wpb_rtl {
0% {
-moz-transform: translate(10%, 0);
opacity: 0;
}
100% {
-moz-transform: translate(0, 0);
opacity: 1;
}
}
@-o-keyframes wpb_rtl {
0% {
-o-transform: translate(10%, 0);
opacity: 0;
}
100% {
-o-transform: translate(0, 0);
opacity: 1;
}
}
@keyframes wpb_rtl {
0% {
transform: translate(10%, 0);
opacity: 0;
}
100% {
transform: translate(0, 0);
opacity: 1;
}
}
/* Appear from center keyframes */
@-webkit-keyframes wpb_appear {
0% {
-webkit-transform: scale(0.5);
opacity: 0.1;
}
100% {
-webkit-transform: scale(1);
opacity: 1;
}
}
@-moz-keyframes wpb_appear {
0% {
-moz-transform: scale(0.5);
opacity: 0.1;
}
100% {
-moz-transform: scale(1);
opacity: 1;
}
}
@-o-keyframes wpb_appear {
0% {
-o-transform: scale(0.5);
opacity: 0.1;
}
100% {
-o-transform: scale(1);
opacity: 1;
}
}
@keyframes wpb_appear {
0% {
transform: scale(0.5);
opacity: 0.1;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.wpb_animate_when_almost_visible{opacity:0}
.wpb_start_animation.wpb_top-to-bottom{-webkit-animation:wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);opacity:1}
.wpb_start_animation.wpb_bottom-to-top{-webkit-animation:wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);opacity:1}
.wpb_start_animation.wpb_left-to-right{-webkit-animation:wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);opacity:1}
.wpb_start_animation.wpb_right-to-left{-webkit-animation:wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);opacity:1}
.wpb_start_animation.wpb_appear{-webkit-animation:wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:1}
@-webkit-keyframes wpb_ttb{0%{-webkit-transform:translate(0, -10%);opacity:0} 100%{-webkit-transform:translate(0, 0);opacity:1}}@-moz-keyframes wpb_ttb{0%{-moz-transform:translate(0, -10%);opacity:0} 100%{-moz-transform:translate(0, 0);opacity:1}}@-o-keyframes wpb_ttb{0%{-o-transform:translate(0, -10%);opacity:0} 100%{-o-transform:translate(0, 0);opacity:1}}@keyframes wpb_ttb{0%{transform:translate(0, -10%);opacity:0} 100%{transform:translate(0, 0);opacity:1}}@-webkit-keyframes wpb_btt{0%{-webkit-transform:translate(0, 10%);opacity:0} 100%{-webkit-transform:translate(0, 0);opacity:1}}@-moz-keyframes wpb_btt{0%{-moz-transform:translate(0, 10%);opacity:0} 100%{-moz-transform:translate(0, 0);opacity:1}}@-o-keyframes wpb_btt{0%{-o-transform:translate(0, 10%);opacity:0} 100%{-o-transform:translate(0, 0);opacity:1}}@keyframes wpb_btt{0%{transform:translate(0, 10%);opacity:0} 100%{transform:translate(0, 0);opacity:1}}@-webkit-keyframes wpb_ltr{0%{-webkit-transform:translate(-10%, 0);opacity:0} 100%{-webkit-transform:translate(0, 0);opacity:1}}@-moz-keyframes wpb_ltr{0%{-moz-transform:translate(-10%, 0);opacity:0} 100%{-moz-transform:translate(0, 0);opacity:1}}@-o-keyframes wpb_ltr{0%{-o-transform:translate(-10%, 0);opacity:0} 100%{-o-transform:translate(0, 0);opacity:1}}@keyframes wpb_ltr{0%{transform:translate(-10%, 0);opacity:0} 100%{transform:translate(0, 0);opacity:1}}@-webkit-keyframes wpb_rtl{0%{-webkit-transform:translate(10%, 0);opacity:0} 100%{-webkit-transform:translate(0, 0);opacity:1}}@-moz-keyframes wpb_rtl{0%{-moz-transform:translate(10%, 0);opacity:0} 100%{-moz-transform:translate(0, 0);opacity:1}}@-o-keyframes wpb_rtl{0%{-o-transform:translate(10%, 0);opacity:0} 100%{-o-transform:translate(0, 0);opacity:1}}@keyframes wpb_rtl{0%{transform:translate(10%, 0);opacity:0} 100%{transform:translate(0, 0);opacity:1}}@-webkit-keyframes wpb_appear{0%{-webkit-transform:scale(.5);opacity:.1} 100%{-webkit-transform:scale(1);opacity:1}}@-moz-keyframes wpb_appear{0%{-moz-transform:scale(.5);opacity:.1} 100%{-moz-transform:scale(1);opacity:1}}@-o-keyframes wpb_appear{0%{-o-transform:scale(.5);opacity:.1} 100%{-o-transform:scale(1);opacity:1}}@keyframes wpb_appear{0%{transform:scale(.5);opacity:.1} 100%{transform:scale(1);opacity:1}}
Thanks for the message!
Hi,
The fixed VC is on themeforest in latest version 3.8.3.
If you update the VC this have noting to do with the settings or templates, the VC only use shortcodes that are saved in pages/posts, stored in DB, so you don’t need to recreate anything.
Thanks for the message!
Hi,
You have managed the issue? I see that you site works now.
About 1/2, can you explain it again or show me a screenshot, I’m not sure i understood your questions.
Thanks for the message!
The latest version is on Themeforest, i checked ad was created in 21 may.
Please download the pack again from themeforest and install the plugin. The version is 1.0
Thanks for the message!
Hi,
Add this CSS in Theme panel -> Custom CSS
.menu-item-12304 img {
height: 45px;
position: relative;
top: -3px;
width: auto;
}
also if you don’t use the above header you can hide it via CSS with this:
.td-header-bg {
display: none;
}
To change the logo when scroll use this:
1. Hide the original logo when scroll:
.affix .menu-item-12304 img {
display: none;
}
2. Add a new logo:
.affix .menu-item-12304 a {
background-image: url("put here the link to the new logo image");
background-repeat: no-repeat;
background-size: auto 47px;
width: 202px;
}
Adjust the 47px size and 202px size to fit like you want.
Hope this help!
Thanks for the message!
Provide a link to see exactly where? Can be changed via CSS.
Thanks for the message!
Hi,
Can you activate the view counter again to see the issue on your site? Or give us access to your WP to take a look. Send it via email at contact@tagdiv.com
Thanks for the message!
Hi,
@Steven, can you provide a link to see the issue?
Thanks for the message!
Hi,
You have tried to translate your site using *.PO/*.MO files with WPML?
http://wpml.org/documentation/getting-started-guide/string-translation/
Thanks!
Hi,
Can you try it from Themeforest, is latest version. If not work, please give us access to your WP.
Thanks for the message!
Hi,
Read here: https://forum.tagdiv.com/w3-total-cache-configuration/
Thanks!
Hi,
I’ve see that the counter works fine now?
http://screencast.com/t/rVDXiB7f
http://screencast.com/t/dHHrXf4h
Thanks for the message!
Hi,
No, just replace all files via FTP.
Thanks for the message!
Hi,
@mflee yes, try from Theme panel to adjust the font. Can you provide a link to see the issue?
Thanks for the message!
Hi,
I’m not sure from where you have that code because the theme don’t use Font Awesome! And td-bootstrap.css doesn’t call any font instead of PT sans.
Here are all the requests from other domains: http://screencast.com/t/QHsDQ6oe7
Hi,
We have this on our todo list, if you want it faster we have a solution here:
https://forum.tagdiv.com/topic/author-box-layout/
https://forum.tagdiv.com/topic/authors-box-doesnt-show-bio/
Hope this help!
Thanks for the message!