Hi,
Glad you have managed to fix the other issues, regarding the Facebook count issue please make sure you have added the right Facebook id in the social count widget and replace the content of td_social_api.php with this code: http://pastebin.com/HhKRs2SB or you can wait for the next theme update and just update the plugin.
Thanks
-
This reply was modified 11 years by
Lucian.
hi,
Please make sure that you don’t have any js errors in the console also please deactivate all plugins and try again. If this issue is still present please provide your site’s URL so I can check this.
Thanks
hi,
Should work fine, I have tested this live on your site as you can see in the screen, must be something you are not doing right, please make sure you add the custom css in theme panel > custom css save it, also empty cache/ purge files if you use any cache or CDN plugins after this try again, if still dose not work please add this css to style.css file save it and check again.
Please let me know!
Thanks
Hi,
Thank you for your suggestion, we have this on our issue tracker, but because we have over 160 feature requests we have to pick very carefully what we implement. If more people request this feature we will do it.
Thank you for your understanding!
Hi,
Please make sure you have set the sidebar for post blog and posts templates from theme panel or from post editing panel, like this:
-theme panel: http://screencast.com/t/4vmLatzJ7
-post editing panel: http://screencast.com/t/notrvtZeaZkx (note that this setting overwrites all previous settings from theme panel)
Please let me know if you manage to solve this.
Thanks
Hi,
Please replace the code from category.php file with this one: http://pastebin.com/9E8wY4nj
Also please make a copy of this file before you change it in case that this is not the result you are looking for.
Result: http://screencast.com/t/FNJim7ekZwTM
Thanks
Hi,
Sorry for the delay but unfortunately that is not possible, we have tried it but without success, sorry for the inconvenience.
Thanks for understanding!
Hi,
Please also make sure you change this span class into span12, like this: http://screencast.com/t/0Xm9bF1Bg6
After this please remove the previous css and user this instead: http://screencast.com/t/LEnvPM1EiFa
Please let me know if you manage to do it and also provide your site’s url so I can inspect this if you don’t.
Thanks
Hi,
The best way would be to replace and/or add it in your css style sheet this way your css will be loaded with the main css, note though that the style.css file can be modified within an theme update so you would have to make this changes again after an update.
Hope this helps!
Thanks
Hi,
Unfortunately you would need custom work for that as the pin it button it’s added via that JavaScript to all images/thumbs on post you would have to modify the JavaScript code that adds the button to your images: http://screencast.com/t/wyPkVdIJcmj
Unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
Thanks
Hi,
Thanks TheMediumUTM!
@craigmc
More exactly you could use this custom css to change the font family/size/color/weight.. and so on for all modules: http://screencast.com/t/dglLLI7O2JM
.td_mod_wrap .meta-info {
font-family: 'Sacramento', sans-serif;
color: #E62222;
font-size: 20px;
font-weight: bold;
}
Thanks
hi,
Yes, it’s possible, but you will need custom work for this as the theme doesn’t have a n option for it. If you want to do it you would have to build and add the code for the description here: http://screencast.com/t/SlKcnz3aMQdc
Unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
Thanks
Hi,
I don’t think this error comes from our theme, I suspect this error may come from a plugin. Please provide some images with this error.
Thanks
Hi,
Please modify the height of the footer using this custom css: http://screencast.com/t/WTkBL21Q7n
.td-full-layout .td-footer-wrap .td-grid-wrap, .td-boxed-layout .td-footer-wrap .span12 .td-grid-wrap {
padding: 69px 13px 27px 13px !important;
height: 320px !important;
}
You can also modify the padding to the footer by changing the value of padding top an bottom which I highlighted in the screenshot.
If this doesn’t work for you please let me know and send your site’s URL so I can inspect this and provide a solution, also provide some details about how you would like to modify it.
Thanks
Hi,
Please make this modification so the the theme not to use the admin ajax file and we will fix this in next update.
* http://screencast.com/t/2VI9BegooY6W
* http://screencast.com/t/GRtrhAIwPqR
Thanks
Hi,
Use this css to fix this: http://screencast.com/t/Mi4oTYjUoIdG
Change the list style as you like.
.page .insideWrapperFull ul, ol {
margin: 0px 0 0px 0;
list-style-type: mongolian;
}
Thanks
Hi,
Unfortunately that can’t be done, the menu you are using on desktop it’s the same as the one used on mobile but only with a different design.
You can try using this methods, but it wont be easy: https://forum.tagdiv.com/topic/changing-the-mobile-menu/
Thanks
Hi,
You can add it like this: http://screencast.com/t/vd79nzk4P this will affect the default post templates, you will have to make the same changes to the other post template if you need.
Thanks
Hi,
Have you recently set the ../%postname%/ permalink structure? If so this may happen because it takes a while for Google and the other search engines to notice pages have moved and adjust their indexes accordingly. It definitely does not happen quickly much less overnight.
Also please note that this permalink structure /%category%/%postname%/ it’s more seo friendly so you probably want to keep it:
You can read here more: https://yoast.com/wordpress-seo-url-permalink/
Hope this helps!
Thanks
Hi,
I have checked your site and found no lists or bullets there. Please make sure you add your list like this: http://screencast.com/t/4mwnOLNUxWZE and use this custom css and this property to change the list style as you like: http://www.w3schools.com/cssref/pr_list-style-type.asp
Hope this helps!
Thanks
Hi,
I’m not sure I understand what your issue is. Please provide more details about it and your site’s URL so I can inspect this.
Thanks
Hi,
Please use this css: http://screencast.com/t/TuVPxoup
.wpcf7 .wpcf7-form input, .wpcf7-textarea {
background-color: #DF517F !important;
}
Thanks
Hi,
Please make sure you set the background ad like this:
* http://screencast.com/t/gCyO58qKD
* http://screencast.com/t/riMd9828a
I have tested this using the same links and worked fine for me.
Thanks
Hi,
Please use this filter in functions.php file:
// THIS INCLUDES THE THUMBNAIL IN OUR RSS FEED
function insertThumbnailRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '' . get_the_post_thumbnail( $post->ID, 'thumbnail', array('style' => 'margin-bottom:10px;float:right;') ) . '' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'insertThumbnailRSS');
add_filter('the_content_feed', 'insertThumbnailRSS');
Hope this helps!
The rss widget comes from WordPress and you will need custom work for that. You can also try to find a plugin that dose that.
Thanks
-
This reply was modified 11 years by
Lucian.
Glad you fixed it thank for the message!
Have a nice day!