hi,
use this css:
.wpb_row.row-fluid div.thumb-wrap a img {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
}
here: http://screencast.com/t/R5nldZZgdxhQ
Thanks for you message.
Radu A.
hi,
add this css code :
.column_container .td-post-text-content {
padding: 0px 40px 0px 40px
}
here: http://screencast.com/t/PLIQigACF
Thanks for you message.
Radu A.
hi,
i have talk wit my colleagues and they also said that what you want is hard to do.
you need to custom create a hole block and a module to display the video directly in page.
good look
Thanks for you message.
Radu A.
hi,
please send an email to contact@tagdiv.com with you username and password to wp-admin.
paste also this thread link, and write in the menu that is for Radu A.
Thanks for you message.
Radu A.
hi,
in : http://screencast.com/t/PeGVUjNb
change :
/**
* More stories box
*/
if(tds_more_articles_on_post_enable == "show") {
//adding event to scroll
jQuery(window).scroll(function(){
var cookie_more_box = td_read_site_cookie('td-cookie-more-articles');
//alert(cookie_more_box);
//setting distance from the top
if(!isNaN(parseInt(tds_more_articles_on_post_pages_distance_from_top)) && isFinite(tds_more_articles_on_post_pages_distance_from_top) && parseInt(tds_more_articles_on_post_pages_distance_from_top) > 0){
var set_distance = parseInt(tds_more_articles_on_post_pages_distance_from_top);
} else {
var set_distance = 400;
}
if (jQuery(this).scrollTop() > set_distance && cookie_more_box != 'hide-more-articles-box') {
jQuery('.td-more-articles-box').addClass('td-front-end-display-block');
} else {
jQuery('.td-more-articles-box').removeClass('td-front-end-display-block');
}
});
//adding event to hide the box
jQuery('.td-close-more-articles-box').click(function(){
//hiding the box
jQuery('.td-more-articles-box').removeClass('td-front-end-display-block');
jQuery('.td-more-articles-box').hide();
//cookie life
if(!isNaN(parseInt(tds_more_articles_on_post_time_to_wait)) && isFinite(tds_more_articles_on_post_time_to_wait)){
//setting cookie
td_create_cookie('td-cookie-more-articles', 'hide-more-articles-box', parseInt(tds_more_articles_on_post_time_to_wait));
}
});
}
with this:
/**
* More stories box
*/
if(tds_more_articles_on_post_enable == "show") {
//adding event to scroll
jQuery(window).scroll(function(){
var cookie_more_box = td_read_site_cookie('td-cookie-more-articles');
//alert(cookie_more_box);
//setting distance from the top
if(!isNaN(parseInt(tds_more_articles_on_post_pages_distance_from_top)) && isFinite(tds_more_articles_on_post_pages_distance_from_top) && parseInt(tds_more_articles_on_post_pages_distance_from_top) > 0){
var set_distance = parseInt(tds_more_articles_on_post_pages_distance_from_top);
} else {
var set_distance = 400;
}
var scrollPosition = window.pageYOffset;
var windowSize = window.innerHeight;
var bodyHeight = document.body.offsetHeight;
var set_distance_from_the_bottom = Math.max(bodyHeight - (scrollPosition + windowSize), 0);
var set_distance_to_stop = 400;
if (jQuery(this).scrollTop() > set_distance && cookie_more_box != 'hide-more-articles-box') {
if (set_distance_from_the_bottom < set_distance_to_stop && cookie_more_box != 'hide-more-articles-box') {
jQuery('.td-more-articles-box').removeClass('td-front-end-display-block');
} else {
jQuery('.td-more-articles-box').addClass('td-front-end-display-block');
}
} else {
jQuery('.td-more-articles-box').removeClass('td-front-end-display-block');
}
});
//adding event to hide the box
jQuery('.td-close-more-articles-box').click(function(){
//hiding the box
jQuery('.td-more-articles-box').removeClass('td-front-end-display-block');
jQuery('.td-more-articles-box').hide();
//cookie life
if(!isNaN(parseInt(tds_more_articles_on_post_time_to_wait)) && isFinite(tds_more_articles_on_post_time_to_wait)){
//setting cookie
td_create_cookie('td-cookie-more-articles', 'hide-more-articles-box', parseInt(tds_more_articles_on_post_time_to_wait));
}
});
}
http://screencast.com/t/zBEmdCdU4
Thanks for you message.
Radu A.
hi,
google may change something:
in the plugins directory-> td-social-counter-> td_social_api.php at line 119
change :
case 'googleplus':
$td_data = @$this->get_json("https://www.googleapis.com/plus/v1/people/$user_id?key=AIzaSyA1hsdPPNpkS3lvjohwLNkOnhgsJ9YCZWw");
if (!empty($td_data['plusOneCount'])) {
$buffy_array = (int) $td_data['plusOneCount'];
}else{
$td_data = @$this->get_url("https://plus.google.com/$user_id/posts");
$pattern = "/<span role=\"button\" class=\"d-s o5a\" tabindex=\"0\">(.*?)<\/span>/";
preg_match($pattern, $td_data, $matches);
if (!empty($matches[1])) {
$buffy_array = (int) $matches[1];
}
}
break;
with this:
case 'googleplus':
$td_data = @$this->get_json("https://www.googleapis.com/plus/v1/people/$user_id?key=AIzaSyA1hsdPPNpkS3lvjohwLNkOnhgsJ9YCZWw");
if (!empty($td_data['plusOneCount'])) {
$buffy_array = (int) $td_data['plusOneCount'];
}else{
$td_data = @$this->get_url("https://plus.google.com/$user_id/posts");
$pattern = "/<span role=\"button\" class=\"d-s o5a\" tabindex=\"0\">(.*?)<\/span>/";
preg_match($pattern, $td_data, $matches);
if (!empty($matches[1])) {
$expl_maches = explode(' ', trim($matches[1]));
$buffy_array = str_replace(array('.', ','), array(''), $expl_maches[0]);
}
}
break;
we will change also for future versions
Thanks for you message.
Radu A.
hi,
those 5 fonts are hard-coded in the the theme : http://screencast.com/t/E0uX72UY
comment out what you don’t want by using // in front of the line.
Thanks for you message.
Radu A.
hi,
we have added custom fonts: https://forum.tagdiv.com/how-to-use-custom-fonts/ , so things got change a little bit.
for small slide : http://screencast.com/t/VDvskd7qo
for widgets: http://screencast.com/t/wvIasYDUjJ
Thanks for you message.
Radu A.
hi,
use this css:
.td-header-menu-wrap .container .row .span9 {
float: right ;
text-align:right;
padding-right: 35px !important;
}
.td-header-menu-wrap .container .row .span3 {
float: left ;
}
here: http://screencast.com/t/CLoD566j
Thanks for you message.
Radu A.
hi,
More article box is displayed only on post pages, not on category pages
Thanks for you message.
Radu A.
hi,
i have tested on my computer the [pull_quote_right] and it works :
http://screencast.com/t/KLuOyGcMdkn
http://screencast.com/t/MVt7pQ3v4G
try to disable all the plugins to be sure that there is no conflict between the theme and the plugins.
if this doesn’t work try to update to the last version of the theme (currently 3.6). here is how to update : http://import.tagdiv.com/newspaper/doc/#howtoupdate
Thanks for you message.
Radu A.
hi,
the post is displayed using modules : http://screencast.com/t/czJwJz8An
we have grouped a couple of modules in blocks: http://import.tagdiv.com/newspaper/doc/#blocks
for 2 sidebars on a page:
first use : http://screencast.com/t/TesfoB9gA
then split the element in 3 : http://screencast.com/t/ImiLEiap
then create your new sidebars using the sidebars control (you can find this in the categories) : http://screencast.com/t/lIsiCARl4K5P . you can create how many sidebars you want.
you will find the new created sidebars in the widgets area: http://screencast.com/t/vnBqKWVz , drag what widget you desire on the sidebars
then go back to you page and add the sidebars to the splinted element :
http://screencast.com/t/VGONO1Ud57j
http://screencast.com/t/vnBqKWVz
and finally save
Thanks for you message.
Radu A.
hi,
I don’t think you finish the last sentence …
Thanks for you message.
Radu A.
hi,
the structure of the theme is complex, but try Marius solution.
if you are not a programmer try to hire one for this task from sites like: http://www.microlancer.com
Thanks for you message.
Radu A.
hi,
try to increase the excerpt length of the text from here : http://screencast.com/t/q3Ey14zAA . find what module you use and change the CONTENT LENGTH.
here is how to find the module: open your browser in Google Chrome and ad write click on the image of the post, the choose from the bottom ‘Inspect element’ like this:http://screencast.com/t/ZajVQ4i7eEn
what I think is happening is : the excerpt counts the letters ( or words – depending on how is set the excerpt) and cut the link in 2, this is what you het the "> at the end of the text.
Thanks for you message.
Radu A.
hi,
the 7 day counter works but not with cache plugin, either use the ajax plugin or disable the cache.
for post in the sidebar there is no filter by post id, but I think is posibly if you change the code of the theme.
Thanks for you message.
Radu A.
hi,
if you change the code of the theme there are 2 options:
a) you remain to your current version and don’t update anymore
OR
b) you have to make sure that anytime you update the theme you modify the files of
the new theme with the code that Marius give you.
Thanks for you message.
Radu A.
hi,
please give us wp-admin access so we can take a look. make sure we have admin privileges.
send an email with the credentials at contact@tagdiv.com and write in the email that it is for Radu A. and also paste the link to this thread so I can remember whats about.
Thanks for you message.
Radu A.
-
This reply was modified 12 years by
Radu A.
hi,
what is verbiage?
most probably the html that you add has the wrong formatting: not all the tags are open and close.
ex (correct):
`
`
if you using plain text is this issue appearing?
Thanks for you message.
Radu A.
hi,
can you give us the link to see the issue, also try to disable all plugins so that there are no conflicts between the theme and the plugins.
Thanks for you message.
Radu A.
hi,
use templates: with article list : http://screencast.com/t/c4ouqvjDwYGo
Thanks for you message.
Radu A.
hi,
you cannot target all background if you are not in box template, because the theme is made from 3 sections, see here: http://screencast.com/t/kinWT9k1
you can use this css to target each section individually :
body {
background-color:blue !important;
}
div.td-header-bg {
background-color:#00ff00 !important;
}
div.container.td-logo-rec-wrap {
background-color:#ffffff !important;
}
div.td-menu-background.affix-top {
background-color:red !important;
}
div.container.td-menu-wrap {
background-color:#ffffff !important;
}
can you point me (a print screen will be great) where the that “Suport” word is?
Thanks for you message.
Radu A.
hi,
try using the Unique Articles feature : http://screencast.com/t/1RB86pOM, for duplication.
the author meta problem should be resolved by now, what version are you using? , you can also try to disable all SEO and cache plugins (also delete the cache), just for a test.
Thanks for you message.
Radu A.
hi,
1) DATE top menu
thank you for pointing this to us, here is how to fix it until next version:
add: , .td-header-menu-wrap .td_data_time like here : http://screencast.com/t/WhnGQ7GG6
2) try to use ‘Big Post size’ and ‘Small Post size’ sections for this
about the 50px, I’m looking to the page http://ga-ga.com/492/growing-older-in-a-youth-oriented-society/ and I don’t see it, I’m using chrome browser, an mozilla firefox, can you make a print screen.
Thanks for you message.
Radu A.