Search Results for 'block'

Results from the Forum
radiodelta
Participant
#0

Hi,

my page: http://radiodelta.hr/portal

On my page BLOCK 1, titled as “AKTUALNO” i have categories named “Lokalno, Regionalno, Nacionalno”.
Only category called “Regionalno” will open content when i click on that, but when i click on other two i see only loading but no and content.

Please help im from Croatia and dont know so much about this stuff!

Andrei L.
tagDiv Member

Hi

Not all theme’s modules display Read More button so in order to have it on page you’ll have to use a module which have this button in its structure. For example you can use module 11 or block 12: http://screencast.com/t/5mhgRrGvZZsDhttp://screencast.com/t/P0hXpFOS6bbG
The excerpt’s length can be set from theme panel > excerpts for each module: http://screencast.com/t/coHOqbW3
The theme don’t control site’s url structure and can’t force the browser to display www.

Thanks!

Torgut
tagDiv Member

1) Check my home page. Mouse over menu does NOT change color of the font. Open any post. Mouse over menu DOES change the color of the font. I do NOT want this change in the menu. Can it be fixed?

2) Did you read the part where I said I regenerated all thumbnails and that I do have all thumbnails sizes turned on? From there, I can’t see the relevance of the link you provided. I am sorry if I misunderstood you but meanwhile the issue is still occurring.

3) I troubleshooted this issue based in your information. It’s not a plugin. It’s the custom CSS. And guess what… it’s a piece of CSS that you provided here in the forums a couple of week ago, to uniformize the hover effect in all elements. Can it be changed to stop this issue and still maintain the needed hover effect? This is the code you told me to add and which is now causing this (to be more precise, what triggers the problem is the !important of the first item, but then if I take it out, part of the mouse hover effect in the home page blocks becomes inactive):

.td_module_wrap:hover a {
color: #980000 !important;
}

.td-module-title a {
color: #005b88;
}

.widget li a {
color: #005b88;
}

.widget li a:hover {
color: #980000;
}

.single a {
color: #005b88;
}

.single a:hover {
color: #980000 !important;
}

.alignleft {
margin-top: 0 !important;
}

.td-module-title a {
color: #005b88;
}

zeni
Participant
#0

Hi,

I have tried to Eliminate render-blocking JavaScript and CSS in above-the-fold content as you specified in the tutorial but I cannot do that.

Is there anyone here who can do that or can you advise a person?

Thanks.

Bogdan B.
tagDiv Staff

Hello,
Sometimes a few elements on your post will cause this such as tables or iframes. Please test another post that has just default theme elements inside it’s content. (make sure you test a post with pagespeed insights, not the homepage as pages do not get correct results on google page speed.)
As for the render blocking, this is not a theme problem but an optimization you can make. You can use the speedbooster plugin for this but be mindfull of the compatibility list inside the plugin code. You can read more about it here:
https://forum.tagdiv.com/how-to-make-the-site-faster/
https://forum.tagdiv.com/topic/speed-booster-questions/
Hope this helps.
Thank you!

Catalin
tagDiv Staff

Hello goetherd,

Unfortunately, our theme does not have such a simple option to add a new widget in Widgets area from the panel, sorry! Please notice that is not a simple task achieving that and is required to do some additional customizations through code in order to achieve good results. As a hint, you can begin to add the widget in widgets.php core file, like this -> http://screencast.com/t/oxfkoKwqWJiu and then you have to declare this in td_config.php. Also, please notice that you have to use API implementation for adding a block. For more information about this method, please check our documentation here -> https://forum.tagdiv.com/td_api_blockadd/
If you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you because we cannot provide customization services at the moment, sorry!
Also, for more information about logo section, please check our documentation here -> https://forum.tagdiv.com/logo-favicon/

Thank you for your understanding!

Bogdan B.
tagDiv Staff

Hi,

The gradient was added so you can see the white post titles better on bright images.
In order to remove the black gradient you can use this code:
.td_module_mx1 .td-module-thumb a:last-child:before{
display:none!important
}

If you want to remove the author and date from the block you can add this code as well:
.td_block_14 .td-editor-date{
display:none!important
}

Hope this helps.
Thank you!

IamLegend
tagDiv Member

Thank you for the fast reply.

My other question is how to set the block13 in the single post that related to the same category when I set it to be infinite load?

Thank you again for your support.

Andrei L.
tagDiv Member

Hi

Block’s layout can be corrected when it’s used on posts following this configuration:
– in Visual composer set a 2/3 row: http://screencast.com/t/KOy8eW1F
– insert this shortcode in do_shortcode function: http://screencast.com/t/xwyyFSQo
– add this css in theme panel > custom code > custom css: http://screencast.com/t/i4cv7jhH7Vs

.single .td-pb-row .td-pb-row .td-pb-span8 {
width: 100%;
}

Thanks!

Akif Hameed
tagDiv Member

Hi,
I’ve modified my robots.txt. Now there is no any blockage of site’s resources, but the result is again same. I’ve also submitted these modifications to the google through webmaster. After passing the 36 hours the result is again same. Let me know how to get rid off?

Please also explain how to ‘Eliminate render-blocking JavaScript and CSS in above-the-fold content’.
Is there any problem with the theme or something else?
Regards

Bogdan B.
tagDiv Staff

Hi,
You can use this css to activate the top menu on mobile:

@media (max-width: 767px){
.td-header-top-menu-full {
display: block;
}
.td-header-sp-top-menu {
display: table!important;
margin-left: auto;
margin-right: auto;
text-align: center;
float:none!important;
}
}

Thank you!

Catalin
tagDiv Staff

Hello Koenza,

Please notice that if you are not using the name for your block and you are using the Ajax Filter you will have this case. So, you can set the title for your block and then the ajax filter will be displayed fine or you can use a bit of CSS code to add a padding-top for your block.

The code is ->

.td_block_1 {
padding-top: 35px;
}

The result -> http://screencast.com/t/95t8opAKCt

Notice: This is just an example for Block 1 !

Thanks.

Andrei L.
tagDiv Member

Hi

The above code is tested and works fine just make sure you add it as I’ve indicated above. Also make sure you add a correct category id, otherwise won’t work. The code can be tested in a very simple way to check how it works. Added like here in ads.php:

render(array('spot_id' => 'header'));
}
// show the header ad spot
?>

This code will remove the header ad for all category pages. If this works just add your a category name as parameter for is_category function and will remove the ad for a that category page.

I hope this helps.
Thanks!

kepokorea
Participant
#0

Dear Newspaper,

I’m using Block 14 in my page to show photo of the week. I realize that newspaper theme adding black layer on top of the featured image for Block 14. How i can modify it to remove the black overlay on top of the featured image?

Also i want to show only the title of the post using the Block 14. How can i modify the css of the Block 14??

Thank you for your help.

Regards,

gzelasco
Participant
#0

Hi, It is possible to customize the block as below ?

Entry1 – specific Same category always
Entry2 – specific category always
Entry 3 – Static entry – Same always or image

Thanks !

Tapanapon
Participant
#0

Warning: Cannot modify header information – headers already sent by (output started at /home/everyth2/domains/thinksthai.com/public_html/news/wp-content/themes/Newspaper/includes/wp_booster/td_block.php:175) in /home/everyth2/domains/thinksthai.com/public_html/news/wp-admin/post.php on line 197

Warning: Cannot modify header information – headers already sent by (output started at /home/everyth2/domains/thinksthai.com/public_html/news/wp-content/themes/Newspaper/includes/wp_booster/td_block.php:175) in /home/everyth2/domains/thinksthai.com/public_html/news/wp-includes/pluggable.php on line 1171

ImSoCute
tagDiv Member

Hi,

I did that before and tried again after receiving this email as I used a plugin to regenerate thumbs called exactly the same as the one you advised but this still not resolved the issue. Downloaded again but still no luck even it was done : http://scr.hu/37cl/3c9lc. All thumbs on blocks are enabled (I never disabled them anyway) http://scr.hu/37cl/dogja

It still looks like here: http://scr.hu/37cl/h4kqq and here: http://scr.hu/37cl/g2r4y

Do you have any idea why it isn’t working for me?

darko888
tagDiv Member

Hi, for me this doesn’t work.

My ads.php is this:

<div class=”td-header-rec-wrap”>
<?php

// show the header ad spot
echo td_global_blocks::get_instance(‘td_block_ad_box’)->render(array(‘spot_id’ => ‘header’)); ?>

</div>

Can you help me? Thank you

Catalin
tagDiv Staff

Hello VoZz,

In this case, a quick solution for you, if you want to improve the image quality for your mobile devices when using the Block 4 is to try to change the thumbs that are using for this type of block. Please notice that the block 4 uses the module 2. Also, from td_config.php you have to change the get_image parameter like this -> http://screencast.com/t/yhifkpUip with a big thumb dimension. Also, please notice that this solution requires some CSS additional customizations for good results.

Hope this helps!

Thank you for your understanding!

Catalin
tagDiv Staff

Hello Natasha,

I suppose that you want to add an image with the external link for your front page. If you want to do this, you have to use a text block element from Visual Composer, add an image and then you will have to set a custom URL, like this -> http://screencast.com/t/KCG5VPATWt -> http://screencast.com/t/liI9SBBo5rNS
For your second request, please provide more details in this regard, so I will be able to provide a more accurate response. Also, you can provide some useful screenshots for a good understanding.

Thank you for your message!

Catalin
tagDiv Staff

Hello zetacomunicacion,

There is an option for it in block settings, like this -> http://screencast.com/t/yHLmeoauYy Also, if you want to get the category ID, please follow the next steps -> http://screencast.com/t/x7abd5p1s

Thank you for the message!

Andrei L.
tagDiv Member

Hi

These: http://imgur.com/Xps0No7 are block’s titles and can be removed from Visual Composer, just edit the block and delete its tite: http://screencast.com/t/c6n7YPAxM9pK

The options from this screen http://imgur.com/G49hG0M refers at categorizes pages, for example this one: http://www.techvitae.com/category/uncategorized/ In this screen http://imgur.com/IBOj8Bn you’re on a static page, not a category page. Static pages can be customized using Visual Composer page-builder: http://screencast.com/t/XoLoKDGlp

Thanks!

Catalin
tagDiv Staff

Hello olivervossmann,

I have checked your website and saw that you are using Header Style 8. Please try the code below and add it in Theme panel->Custom CSS area and then your top bar menu will be displayed in the mobile version.

The code is ->

@media (max-width: 767px){
.td-header-top-menu-full {
display:block!important;
}
.td-header-style-8 .td-header-top-menu {
display: block!important;
}
.td-header-sp-top-menu {
display: block !important;
}
.td-header-style-8 .td-header-top-menu {
margin-left:0;
width: 100%;
}
}

The result you should see here -> http://screencast.com/t/KOf6LfoLz

Thanks.

Andrei L.
tagDiv Member

Hi

The big grid structure is generated in td_block_big_grid.php file: http://screencast.com/t/YHh4RG3SgYz You’ll have to change the limit post number displayed in grid to remove a thumb.
Each thumb is generated in td_config.php file: http://screencast.com/t/4Ndw85i5 so you’ll need to add new thumb size or change the ones which are already used in big grid.
Best way to customize the grid is this one:
– add a new module or more modules, with a specific layout and create a new thumb for it then use that module in grid’s layout. Here you can check theme’s documentation for more details about adding a new module: https://forum.tagdiv.com/td_api_moduleadd/

I hope this helps.
Thanks!

Andrei L.
tagDiv Member

Hi

Related article tabs have a similar functionality as tabs built in from Visual Composer but unfortunately this part is not available in Visual Composer at the moment. We don’t have a shortcode for this element so it can’t be used on page like others blocks.

Thanks!

Viewing 25 results - 30,326 through 30,350 (of 39,816 total)