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,
I thought that you are talking about this date : http://screencast.com/t/2bvSl04Ewn

try this


.similar-articles .meta-info .entry-date, p.logged-in-as {
  color: #ff0000;
}

Note: if you use only :

.meta-info .entry-date, p.logged-in-as {
  color: #ff0000;
}

you will change the color of the date in many places.

how did you add that lines after the ‘Post Comment’ button? i did not find that.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
documentation about ads : https://forum.tagdiv.com/ads/

hope this help.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,

use this code :

<div class="td-visible-desktop">
 <img title="ESTABLISHED - MAY 1975" src="http://spec.media9.ca/files/2014/04/logo.png">
</div>

here: http://screencast.com/t/bfVVfsp5R7lC
to get the image only on desktop : http://screencast.com/t/SyGtuUWrWM
and not on other devices : http://screencast.com/t/FbewwN2hVcav

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
you have to this from code: http://screencast.com/t/imY53Nhr70

if you are not a programmer I advice you to hire one for this task.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
the solution I have given you is for 2 sidebars on a page.
for post (article) pages, using current theme implementation, is not possible to show 2 sidebars on post (article) page.

here is the file that handles post (articles) pages :http://screencast.com/t/4u6Gw9Ruc1Pd , I think here you some how have to code the second sidebar.

if you are not a coder, please hire one for this task.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
in Theme Panel -> Template settings ( http://screencast.com/t/NZRoEvz2Pj ) you have the option to add custom sidebars for the post pages. but I think that you have to create a custom sidebar for each post.

hope this help.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,

to move the banner to the left on deskop only use this css :

div.td-a-rec.td-a-rec-id-header.td-rec-hide-on-p {
 position: relative;
 left: -200px;
}

here: http://screencast.com/t/GifkinW98gw

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 .= '<a href="' . get_category_link($selected_category_obj->cat_ID) . '">'  . $selected_category_obj->name . '</a>' ;
        }

        //return print_r($post, true);
        return $buffy;
    }

}

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
can you give me a link to the page to see what tags are you talking about.

tags for articles can be created here: http://screencast.com/t/Z5dtt3SPonDR

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
we are using the file loop-single.php : http://screencast.com/t/6wD02VB0Bw to display the single article page.

then, if you take a look in the arhive.php you will see that a file called ‘loop.php’ is loaded: http://screencast.com/t/N5oi9OSwlp and loop.php file loads modules : http://screencast.com/t/N5oi9OSwlp .

this modules can be found : http://screencast.com/t/mbD8teNP .

we created this structure to show the content of the page in different formats.

so to disable the date you need to find with what module the page (or the section) of the page is displayed with and remove or comment that code.

another way to find out what module is displayed the content is : use Google Chrome Inspector like : http://screencast.com/t/U64qM4G8

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
try using this css :

div.span8.td-header-style-1 {
  position: relative;
  top: -10px;
  left: 12px;
}

here: http://screencast.com/t/YvpKeqgu

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
try using this css to change the color of the date:

.td_data_time{
   color: #ff0000;
}

here: http://screencast.com/t/zLGeQV21

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,

ok

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
theme Magazinly is a different theme then Newspaper, and it doesn’t have Block 9.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
you create an article from ‘WordPress Post’ section, not from our theme.

try google to find if is possible. Our theme doesn’t support this.

try here:
http://www.elegantthemes.com/blog/tips-tricks/control-user-roles-permissions-with-wordpress

hope this help.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,

try using the html in the ‘Navigation Label’ : http://screencast.com/t/pAeSuA28yTXF

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,

you (for your site) or your host has a cache plugin enabled : <h3>Memcached:</h3><h4> commands</h4>

find the plugin and disabled or remove it.

this is definitely not coming from the theme.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
thank you for the suggestion, we will take a look

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
something is not working properly on you site.
there should be a javascript working to resize the video player like here: http://demo.tagdiv.com/newspaper/belinda-en-la-obscuridad-hd-video/

please disable all plugins, there may be conflicts between theme and the theme.

I see and error in the javascript console: http://screencast.com/t/Cp9Wd9EC

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
please try to disable all your plugins and try again, maybe there is a conflict between them and the theme.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
i use Samsung S4 and I can see the homepage and articles just fine.

on the home page you see the title of the post who is a link top the post page of that post.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
can you show me the gray area? I can’t seem to find it on your site.

duos the server has the GD image library installed I saw that your images are extra large?

ex:
http://screencast.com/t/ZmuvXrQzjNL
but the image is this big: http://screencast.com/t/7JMa8T1pbrP

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
no time frame was given for this option.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
you need to take the id of the post outside of the loop, then in the areas where the ads are showed you need to test to see if the post id is the adult one. if yes then don’t shoe the ad. use if else for this.

the theme was not created like this, and is not easy to do this.

hope this help.

Thanks for you message.
Radu A.

Viewing 25 posts - 401 through 425 (of 854 total)