Search Results for 'block'

Results from the Forum
Radu A
tagDiv Member

hi,
how are other theme structured?

Newspaper uses blocks and modules : http://import.tagdiv.com/newspaper/doc/#blocks

example :
if you use module 2 replace this line http://screencast.com/t/jdmVu2DE with the code that your plugin is using to display the authors.

in most of the modules you can find the get_authors() function.

Thanks for you message.
Radu A.

Marius
tagDiv Staff

Hi,
Do you want the default to be like this? http://screencast.com/t/qzWnJTJu or full but with text-align left?

To make the default one as left align just add this CSS in theme panel -> Custom CSS

blockquote p {
    text-align: left !important;
}

Thanks for the message!

Radu A
tagDiv Member

hi,

try this
http://screencast.com/t/pVHm3UEiQyo
http://screencast.com/t/mjWbx6XVb2i

Thanks for you message.
Radu A.

Marius
tagDiv Staff

Hi,
1. Give me a link to see the banner, can be center via CSS, I will try to provide you a CSS.

2. Yes.
Add this code
<?php echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'header')); ?> like here: http://screencast.com/t/3KepYp5dgUB

I use here the header spot.

Then add this CSS in theme panel -> Custom CSS

.td-page-wrap .td-g-rec-id-header .adsbygoogle {
    position: static;
}

Result: http://screencast.com/t/Q4JhQMpe

Thanks for the message!

Marius
tagDiv Staff

Hi,
1. Is possible directly in code to add a banner anywhere. For an AD bellow the menu add the code here: http://screencast.com/t/ZgyvCjUe5Xa also you can use this code if you want to use the ad system from theme panel
echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'header'));

2. This is possible with this plugin: Q2W3 Fixed Widget (Sticky Widget)

Thanks for the message!

cooldude
tagDiv Member

But please resolve my previous issue. That one is the main. Please try to solve that one also. The link is – https://forum.tagdiv.com/topic/how-to-remove-authors-meta-from-the-homepage/

cooldude
tagDiv Member

Thanks Marius, you guys are great. You’ve got a nice product and the support is also very good. Thanks again.

ostraperlera
Participant
#0

Hi,

I only just started to work with this theme. Is it possible to use pre-built blocks with Woocommerce products instead of posts or pages?

Thanks.

Negative Camber
tagDiv Member

Hello?

saggel
Participant
#0

Hello. I want to show “Comments icon” near date on blocks 1,2,3,4,5 not only on the first post (as on blocks 1 and 2)

screenshots http://screencast.com/t/6pdpO5ElOa, http://screencast.com/t/klLO3bhb

It’s this possible?

Negative Camber
Participant
#0

Hi folks, I may be missing the solution to this but it seems my default configuration for blockquotes is center justified. Is there a way to get the default to be left justified? It’s a bit of a pain to have to create an extra step to get the quotes to look correct by having to set them all for left justification for each post.

zelatech
Participant
#0

i need to show, on sidebar for example, a block with title and photo but from another site.

for example a blog3widget showing title and featured photo from a specified url or category from another site.

how to? it’s possible to change code creating a new blog or use a plugin?

jb
Participant
#0

Hello,

I want to add a Google AdSense banner above an article-block (block 8). When I have auto size there is a 300×250 ad. So I have choose the size 468×60, but I can’t center this ad. I have used center-tags in the Theme Panel, but it does not work:

http://imgur.com/3xhQ1Ty

[vc_row][vc_column width="2/3"][td_ad_box spot_id="custom_ad_1"][td_block8 category_id="1" limit="16" custom_title="News" hide_title="hide_title" ajax_pagination="load_more"][/vc_column][vc_column width="1/3"][vc_widget_sidebar sidebar_id="td-default"][/vc_column][/vc_row]

second question: Is it possible to add ads between title and breadcrumbs?

jb
tagDiv Member

This would be great!

grau
Participant
#0

Hi there, first of all: AWESOME THEME!

But I’d love to see these improvements in the future!

1. adblock between menu and content (red)
2. adblock static/floating block 160×600 on the right and/or left next to the content while in “desktop mode” (blue)

Would be great to hear from you!

Cheers
Thomas

Radu A
tagDiv Member

hi,
can you please send us wp-admin and ftp u/p to contact@tagdiv.com so we can take a look.
please not that disabling all the plugins is the first thing that we will try.
I see that you have a plugin for socials at the bottom of your site.
do you think this will be a problem?

Thanks for you message.
Radu A.

Marius
tagDiv Staff

Hi,
Go to Theme Panel -> translation and search for continue and translate the word like you want http://screencast.com/t/VSbxGmg4

To move the button on right add this CSS in Theme panel -> Custom CSS

.more-link-wrap {
    float: right;
}
  • This reply was modified 12 years by Marius.
Marius
tagDiv Staff

Hi,
Is still on track. Until that you can change like here:
Add this code in td_authors.php here: http://screencast.com/t/XfDOSGxu

$buffy .= '<div class="vcard author"><span class="fn">';
$buffy .=  td_util::excerpt(get_the_author_meta('description', $td_author->ID), 200);
$buffy .= '</span></div>';

$buffy .= '<div class="td-author-social">';
foreach (td_social_icons::$td_social_icons_array as $td_social_id => $td_social_name) {
    //echo get_the_author_meta($td_social_id) . '<br>';
    $authorMeta = get_the_author_meta($td_social_id);
    if (!empty($authorMeta)) {

        //the theme can use the twitter id instead of the full url. This avoids problems with yoast plugin
        if ($td_social_id == 'twitter') {
            if(filter_var($authorMeta, FILTER_VALIDATE_URL)){

            } else {
                $authorMeta = str_replace('@', '', $authorMeta);
                $authorMeta = 'http://twitter.com/' . $authorMeta;
            }
        }
        $buffy .= td_social_icons::get_icon($authorMeta, $td_social_id, 4, 16);
    }
}
$buffy .= '</div>';

Then add this CSS in Theme panel -> Custom CSS

.td_top_authors img {
    height: 100px !important;
    max-width: 100px !important;
    width: 100px !important;
}
.td_top_authors .item-details {
    margin-left: 122px !important;
}
.td_top_authors .item-details {
    height: auto !important;
}
div.vcard .fn {
    color: #444444 !important;
}
.td_top_authors .td_mod_wrap {
    min-height: 100px;
}
.td_top_authors .author .fn {
    font-family: 'PT Sans',sans-serif;
    font-size: 14px;
    font-style: normal;
    line-height: 21px;
    margin: 5px 10px 10px 0px;
    padding: 0px;
    display: inline-block;
}
.td_top_authors .item-details .td-social-icon-wrap,
.td_top_authors .item-details .td-social-icon-wrap span {
   padding: 0px;
}
.td_top_authors .item-details .td-social-icon-wrap {
   margin: 0px;
}

Thanks!

614webmaster
tagDiv Member

I gave that a go but not luck.

Marius
tagDiv Staff

Hi,
Edit your homepage, then edit the Block 3 and set the limit post number to 6 or 9(now is 5) http://screencast.com/t/XEvTQ3oVAE4

About theme updates, ask to give you the themeforest account from where he buy the theme or, ask them to give you the updates every-time when is available one. Regular the updates are downloaded from themeforest, from the account of buyers.

Thanks for the message!

cooldude
Participant
#0

Hello Radu, i am having some problems applying Block 6 on my website’s homepage. The thing is that in Block 6, after the text, a blue box appears saying CONTINUE. But i would like to know how to change the CONTINUE text to Read More. Also, i want that blue box to appear on the right side, rather than the left side. Thanks, please give me a solution to this problem, as soon as possible. I am attaching a screenshot of the block 6 CONTINUE SECTION. please give me a solution, as soon as possible.
Image URI – http://www.screencast.com/t/dInje7aTv
Thanks.

Radu A
tagDiv Member

hi,
can you try to disable all plugins and try again, could be a conflict between the plugins and the theme.

Thanks for you message.
Radu A.

zipzipzip
Participant
#0

I am using “background manager” addon and it works very well(I need to have different backgrounds for each post) but there is a problem – it doesn’t change background for header/footer, only the middle part.

I am using fahion style – is there some part of themes code that is blocking this addon ? Since it works for pretty much every other theme.

Thanks in advance.

614webmaster
Participant
#0

For some reason the [tagDiv] Block 4 widget is not working in our sidebar on the home page. Ever place else it works fine.

You can see it at uweekly.com on the right as “Promotions”

Viewing 25 results - 39,201 through 39,225 (of 39,816 total)