Search Results for 'block'

Results from the Forum
birchoff
tagDiv Member

Excuse me… but How I can know where are placed the blocks in the homepage? The correspondence between the number of the block and the position in the homepage

thanks

birchoff
tagDiv Member

Thank you, but where I find the list of the box? I don’t see. The only list of blocks that I see is in the widget section, but I can’t customize the blocks there…
I can’t write the name of my site and I have to upload the logo with the name of my site, isn’t it?

Thank you

simchris
tagDiv Member

Frankly anything can be <h2> or <h3> contextually as long as it’s not h1.
In reality those elements are only used for identifying it’s a headline — one size is not better than another for anything other than applying a style sheet; or within one “group” where an h2 would be shown “semantically” to be superior to an h3 tag.

So, in sidebar widget it really makes no functional or semantic difference whether h2 or h3.

Not a help, I know — just an observation.

In other words, both could be h3 and then apply different size class to the div wrapper to adjust font/size/style per “class” …

Google doesn’t make it “better” or anything because it’s h2 in short term relational content that lives outside the main “article” block.

PatWire
tagDiv Member

If I couls just ask on this topic…I have the same issue – can rotate but is there a away to have an ad block each side of the header logo if logo centred? Or is it custom work?

thanks

Pat

damianoser
Participant
#0

Hello, I am using an aggregator for news and sometimes it takes a lot of text for the titles.

As a result I would like to show on the title of the POST PAGE a title with no more than 100 characters.

I have added excerpts for the titles of all the other blocks.

Could you suggest me solution?

Andrei L.
tagDiv Member

Hi

You need to modify the td_module.php file like here: http://screencast.com/t/AgfUgRbYMVv but notice that the changes will affect every article title from modules because the get_title() function it’s used on every modules and blocks.

Thanks!

Bichareh
tagDiv Member

I really don’t get it. Block 5 has <h2> too. How to change this? I’m really confused.

Andrei L.
tagDiv Member

Hi

1. If you want to avoid the article duplication on the page enable unique article option from page template settings: http://screencast.com/t/j5cU58YT
Also you can customize every block to display article according to category, author, tags, those option can be found in block settings: http://screencast.com/t/N5WAmg4oOK there you can name your blocks as you like: http://screencast.com/t/EFfw1Vm1lg More details about blocks you can find in our documentation: https://forum.tagdiv.com/block-settings-overview/

2. Please check this link regarding the logo: https://forum.tagdiv.com/logo-newsmag/ It’s not necessary to upload logo as we have, you can upload any logo as it’s recommended in our documentation.

Hope this help but if you still need assistance please let me know.

Thanks!

Andrei L.
tagDiv Member

Hi

The sidebar blocks can be changed from Appearance > Widgets: http://screencast.com/t/7ZCnzFB3 You can add ore remove blocks from your sidebar: http://screencast.com/t/6giuIfQwkUtyhttp://screencast.com/t/EC5uJRPe
Let me know if you still need assistance on this, and if so pleas provide more details.

Thanks!

adelgazarbadajoz
Participant
#0

You can check the problem in this video

The grids of visual composer don´t work.

I spoke with visual composer support and they tell me this:

Hi David,

The issue is because there is an inbuilt version of Visual Composer (or the related code) present in your theme which is overriding the standalone plugin version and hence causing the issue. You will have to get rid of it. I would advise you to do so with the help of theme author, otherwise you might loose the extra elements added by him. Once this is done, you can install the standalone plugin and it will work fine. Kindly check.

Thank you,

Can you help me?

iceb
tagDiv Member

Hello,
Thank you for your support. I know that this will affect and other blocks and I use the other blocks, so does have any way to modify only block 7 without affecting the other blocks?

Thank you.

AilyRoot
Participant
#0

Hello
we are working hard on new site now and did not really look into those banner area yet, I did look up your online doc, did not find it, is any statistic function embedded for banner such as pageviews, cluck through rate..etc

if not, any handy suggestions?

Bichareh
tagDiv Member

I know why this is happening…I changed the headings in the td_module.php to <h2> to get <h2> on my front page. How can I change separately the headings for the sidebar? I think it’s Block 1 not 3. My front page must be module 11.

Summary:

I want <h2> on my posts at the front page and <h4> for the sidebar posts.

function get_title($cut_at = '') {
        $buffy = '';
        $buffy .= '<h2 itemprop="name" class="entry-title td-module-title">';
        $buffy .='<a>href . '" rel="bookmark" title="' . $this->title_attribute . '">';

        //see if we have to cut the title and if we have the title lenght in the panel for ex: td_module_6__title_excerpt
        if ($cut_at != '') {
            //cut at the hard coded size
            $buffy .= td_util::excerpt($this->title, $cut_at, 'show_shortcodes');

        } else {
            $current_module_class = get_class($this);

            //see if we have a default setting for this module, and if so only apply it if we don't get other things form theme panel.
            if (td_api_module::_check_excerpt_title($current_module_class)) {
                $db_title_excerpt = td_util::get_option($current_module_class . '_title_excerpt');
                if ($db_title_excerpt != '') {
                    //cut from the database settings
                    $buffy .= td_util::excerpt($this->title, $db_title_excerpt, 'show_shortcodes');
                } else {
                    //cut at the default size
                    $module_api = td_api_module::get_by_id($current_module_class);
                    $buffy .= td_util::excerpt($this->title, $module_api['excerpt_title'], 'show_shortcodes');
                }
            } else {
                /**
                 * no $cut_at provided and no setting in td_config -> return the full title
                 * @see td_global::$modules_list
                 */
                $buffy .= $this->title;
            }

        }
        $buffy .='</a>';
        $buffy .= '</h2>';
  • This reply was modified 10 years by Bichareh.
  • This reply was modified 10 years by Bichareh.
Alin [tagDiv]
tagDiv Staff

Hi,

It is not so easy to change the logo size as the theme is responsive and it needs custom modifications to the default css for each screen device. I will try to provide a solution for this, but I suggest to hire a freelance if you need more customization. Please try this cusotm css in Theme Panel > Custom Css – http://screencast.com/t/E8fk5AuvCyEL

@media(min-width: 1141px) {
.td-header-style-8 .td-header-sp-logo {
height: 150px;
}
.td-header-style-8 .td-header-sp-logo img {
max-height: 150px;
}
.td-header-style-8 .td-header-menu-wrap-full {
height: 120px !important;
}
.td-header-style-8 .td-affix .td-header-sp-logo {
height: 94px !important;
}
.td-header-style-8 .td-header-menu-wrap {
height: 120px !important;
}
.td-header-style-8 .td-header-menu-wrap.td-affix {
height: 44px !important;
}
}
@media(min-width: 768px) and (max-width: 1140px){
.td-header-style-8 .td-header-sp-logo {
margin-top: -20px !important;
}
}

You can add a Big Grid or Slide like any other block in your page content. Please make sure that you configure right – https://forum.tagdiv.com/block-settings-tutorial/ Her is also a video tutorial how to create a page – https://www.youtube.com/watch?v=rgWqozuqmJk
If you still have issues with it please provide more details, also some screenshots how you set it will help.

Thanks!

Bichareh
Participant
#0

Hi,

how to change the <h2> </h2> in the sidebar posts (Block 13) to <h4>? I looked literally in every file, but I didn’t find any option.

Thanks!

http://www.promicabana.de/robert-pattinson-keine-zeit-fuer-venedig/

Bogdan B.
tagDiv Staff

Hello jeremykoering,

The theme does not show ads in smart-lists by default but there is a simple solution using this shortcode:
[td_block_ad_box spot_id="custom_ad_1" spot_title="ADD"]
When you edit your post, simply place it where you want your ad to display: http://screencast.com/t/QKvMcWGOLD1n
The result: http://screencast.com/t/tAY5Wcyasrs
Thank you.

Steven
tagDiv Member

Thanks again, this will be a nice feature to add to the theme panel…to remove titles from grids and blocks if you don’t want them,then using a lot of css code to make the theme more heavy…

Andrei L.
tagDiv Member

Hi

Try this custom css: http://screencast.com/t/1a24IGX0v

.td-post-header h3{
margin-top: 0px;
margin-bottom: -5px;
margin-left: 5px;
display: inline-block
}

Thanks!

didoulr
tagDiv Member

Thanks a lot for your help! It’s very nice!
http://montfort-catholique-yvelines.fr/

secondly, I try to show, since yesterday, a big slide block grid but nothing appears there is there a particular manipulation to do? I haven’t found a tutorial in your documentation.

If you have a private link I can give you a back office access.

Thanks for all

Bogdan B.
tagDiv Staff

Hello Steven,

For the colors use the folowing CSS:

.td_block_big_grid_3 .td-big-grid-post .entry-title a{
color:#ddd;
}

.td_block_14 .td_module_mx1 .entry-title a {
color: #ddd!important;
}

If you do not want the title you can apply the display:none property to the code. like so:

.td_block_big_grid_3 .td-big-grid-post .entry-title a{
color:#ddd;
display:none;
}

http://screencast.com/t/RNDTxS5ulGb

I hope this helps,
Thank you.

birchoff
Participant
#0

Hi, I need an help, because I’m a newbie of wp. I need to know how I can give a different destination for each block of the homepage.

I.e.: if I write a news, I see the same news in many blocks of the homepage, on the top;Immediately below and so on… I need to to create different categories for each block of my honepage

For example: on the top only evidence news, under the top: political news etc… If you want go to http://www.tenerellinews.it and you see what I mean

Thank you for an answer!

Bogdan B.
tagDiv Staff

Hello pmoneyweb,
I have checked your site and the photo gallery seems to stack accordingly at the moment, although i did see something that might have caused problems. Your thumbnails are not displaying accordingly. You can use a plugin for this as shown in our tutorial: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/.
I hope this will fix your problem.
Thank you.

Alin [tagDiv]
tagDiv Staff

Hi,

You can create a custom field and write the name – http://screencast.com/t/koHeldvHu and you have to modify the code for module 6(this module is used on block 7) – http://screencast.com/t/kt5lY4gihttp://pastebin.com/pCf2f9QT
Use css to customize it – http://screencast.com/t/MYqDqb8a6r

.td_block_7 .td-module-meta-info .td-post-category {
display: table;
}
.td_block_7 .td-custom-author {
display: inline-block;
}

Please note that changing module 6 will affect also other blocks where it is used – http://screencast.com/t/Lbsn3hylgz1B

This is an example and require custom modifications, I suggest to hire a freelancer to do this for you if you don’t have basic experience as we cannot provide custom work.

Thanks!

rehman
Participant
#0

Hey there,

Search Console shows the following link under Server Error:

wp-content/themes/Newspaper/……………. Response code: 500

Please help me fixing this.

Thanks!

doucare1971
Blocked
#0

When I reply to a post in one of the topics or any topics for that matter it randomly does not go to the top or where it should be but it sticks to just showing the reply after it is submitted. Shouldn’t automatically go to the top of page after? It is like it hits something blocking it from going up and stops.

I have to refresh the page to get it to work right and I am not sure if it will happen if I do another reply. Like I said it is random and sometimes it is right after again or it does not happen for a while. This is bbPress forums.

Viewing 25 results - 34,401 through 34,425 (of 39,816 total)