Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
Radu A
tagDiv Member

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.

Radu A
tagDiv Member

hi,
the example is not working.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi salocharly,
do not install the latest version of visual composer, it will make the theme nonfunctional.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

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.
Radu A
tagDiv Member

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.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member
Radu A
tagDiv Member

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.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

hi,

take a look how the code from module 3 is done and make the appropriate changes.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,

try chancing the link with :

.popularsidepost a {
  /*css code here*/
} 

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,

http://screencast.com/t/0KgJvL0bjgq

Thanks for you message.
Radu A.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

hi,

what did you do?

have you installed new plugins?

please try disabling all plugins and try again.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
for now use ‘Excepts type on words’ we will take a look at the other one.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

hi,

try looking over the documentation : http://www.simplelib.com/?p=480

Thanks for you message.
Radu A.

Radu A
tagDiv Member

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.

Radu A
tagDiv Member

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.

Viewing 25 posts - 376 through 400 (of 854 total)