hi,
you have added a widget there:
http://screencast.com/t/1LuhZZRTvkK
use this css to make it white:
.widget_rss span .rsswidget {
color: #ffffff;
}
here: http://screencast.com/t/vptKI9yF
Thanks for you message.
Radu A.
hi,
http://screencast.com/t/hd31hnS6
http://screencast.com/t/RiNdPQgve
http://screencast.com/t/z6CaeLZc
http://screencast.com/t/NS65CZBTf
result: http://screencast.com/t/hJdrMo9Z
Thanks for you message.
Radu A.
hi,
the example is not working.
Thanks for you message.
Radu A.
hi salocharly,
do not install the latest version of visual composer, it will make the theme nonfunctional.
Thanks for you message.
Radu A.
hi,
can you please give us access to your site to see the problem, send us an email to contact@tagdiv.com with the username and pass, also please post the link to this thread in the email.
I have updated to wordpress v 3.9 and I don’t experience what you are saying.
please try disabling all the plugins that you have installed, and try again.
Thanks for you message.
Radu A.
-
This reply was modified 12 years by
Radu A.
hi,
the above code includes our WP BOOSTER plugin in the theme.
if you are not a coder my advice is to hire one for this task, it should make things much easier for you.
Thanks for you message.
Radu A.
hi,
can you please give as the link to your site so we can investigate the problem.
tank you for reporting this issue.
Thanks for you message.
Radu A.
hi,
we have installed v 3.9 and we will take a look at those issues, thank you for reporting this.
Thanks for you message.
Radu A.
hi,
identify what modules you are using in your blocks : http://screencast.com/t/nOoUIJXl
then : http://screencast.com/t/eyG51lYZMR
Thanks for you message.
Radu A.
hi,
docs about ajax_the_view : https://forum.tagdiv.com/wp-postviews-post-view-counter-alternative-for-w3-total-cache/
Thanks for you message.
Radu A.
hi,
we created wp-booster plugin to have a bigger google pagespeed result, what it duos, is moving the css and javascript files in the footer of the page.
the bad news about wp-booster plugin is that is known to make the theme not function properly, an issue we are still investigate. also is compatible with only a couple of plugins (wp supper cache, Seo by Yost, tagDiv social counter).
my advise is to disable all the plugins but WP Super Cache, tagDiv social counter, contact 7. it should work.
Thanks for you message.
Radu A.
hi,
when it comes to google there is nothing that we can do.
we are sorry to hear about your issues, if it was an issue with theme there would be more people complaining about this about this.
Thanks for you message.
Radu A.
hi,
well, i told you how that page is done.
it should work if the theme is not corrupted in any way.
Thanks for you message.
Radu A.
hi,
you can have only one section of the page with background image.
create a page , use the template Homepage- bg + .. or Homepage - bg - .. then set the Slide background with your custom image (URL to the image) save the page and open it.
http://screencast.com/t/VzVfjnroZo
Thanks for you message.
Radu A.
hi,
how to update: http://import.tagdiv.com/newspaper/doc/#howtoupdate
make sure to make a backup before update ( database and files )
Thanks for you message.
Radu A.
hi,
take a look how the code from module 3 is done and make the appropriate changes.
Thanks for you message.
Radu A.
hi,
try chancing the link with :
.popularsidepost a {
/*css code here*/
}
Thanks for you message.
Radu A.
hi,
try to use less blocks on the homepage,
try to set the Big Slide to show post from another category, see if it works.
unique article system only insure that there are no duplicated articles on the page.
Thanks for you message.
Radu A.
hi,
what did you do?
have you installed new plugins?
please try disabling all plugins and try again.
Thanks for you message.
Radu A.
hi,
for now use ‘Excepts type on words’ we will take a look at the other one.
Thanks for you message.
Radu A.
hi,
if you want to add background image use the homepage – bg … templates : http://screencast.com/t/TwCma9wa
here is where you add the background image : http://screencast.com/t/uPQREtxys
only one color can be added as the theme color: http://screencast.com/t/2DAdMN1q
and only one background image.
Thanks for you message.
Radu A.
hi,
try looking over the documentation : http://www.simplelib.com/?p=480
Thanks for you message.
Radu A.
hi,
class td_module_3 extends td_module {
function __construct($post) {
//run the parrent constructor
parent::__construct($post);
}
function render() {
ob_start();
?>
<div class="td_mod3 td_mod_wrap <?php echo $this->get_no_thumb_class();?>" <?php echo $this->get_item_scope();?>>
<?php echo $this->get_image('art-thumb');?>
<div class="item-details">
<?php echo $this->get_title(td_util::get_option('tds_mod3_title_excerpt'));?>
<div class="meta-info">
<?php //echo $this->get_author();?>
<?php echo $this->get_date();?>
<?php echo ' - ' . $this->get_category();?>
<?php //echo $this->get_commentsAndViews();?>
</div>
</div>
<?php echo $this->get_item_scope_meta();?>
</div>
<?php return ob_get_clean();
}
function get_category() {
$buffy = '';
//read the post meta to get the custom primary category
$td_post_theme_settings = get_post_meta($this->post->ID, 'td_post_theme_settings', true);
if (!empty($td_post_theme_settings['td_primary_cat'])) {
//we have a custom category selected
$selected_category_obj = get_category($td_post_theme_settings['td_primary_cat']);
} else {
//get one auto
$categories = get_the_category($this->post->ID);
if (!empty($categories[0])) {
if ($categories[0]->name === TD_FEATURED_CAT and !empty($categories[1])) {
$selected_category_obj = $categories[1];
} else {
$selected_category_obj = $categories[0];
}
}
}
if (!empty($selected_category_obj)) { //@todo catch error here
$buffy .= $selected_category_obj->name;
}
//return print_r($post, true);
return $buffy;
}
}
Thanks for you message.
Radu A.
hi,
you can add what logo image do you want, as big as you want, many people use this,
and the logo is responsive :
http://screencast.com/t/b3rU0L6G
http://screencast.com/t/n11Jvvpnd
Thanks for you message.
Radu A.