Search Results for 'block'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi,

Except of the block pagination where we use ajax, the page navigation(on loop – latest articles, category page..) should open a new page like you say /2 – http://screencast.com/t/265Wmk3xgS1Y
If you are referring to the block’s pagination, unfortunately the classic pagination(numeric) is not available on it.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

The theme doesn’t have an option to change the gradient color and you will have to use custom css to change the color for each big grid spot. Please use browser inspector tool – http://screencast.com/t/qtwIwDjws9 You have to target something like this if you want to change this only for grid 8 – http://screencast.com/t/HKB4gtLBpq

.td_block_big_grid_8.td-grid-style-3 .td-big-grid-post-0 .td-module-thumb a:last-child:before {
background: -moz-linear-gradient(45deg, #222 0%, #4a8f5e 100%);
background: -webkit-gradient(left bottom, right top, color-stop(0%, #222), color-stop(100%, #4a8f5e));
background: -webkit-linear-gradient(45deg, #222 0%, #4a8f5e 100%);
background: -o-linear-gradient(45deg, #222 0%, #4a8f5e 100%);
background: -ms-linear-gradient(45deg, #222 0%, #4a8f5e 100%);
background: linear-gradient(45deg, #222 0%, #4a8f5e 100%);
}

This custom css is for first spot(just change to the color that you need), for the other grid spots please change td-big-grid-post-0 to td-big-grid-post-1 and so on… http://screencast.com/t/Y4tCTEbYO

Hope this helps!

ndembi007
Participant
#0

I really cant understand how block works, because i am trying to use block 14, but i cant get them the it supposed to be. And also i want to change the pic size. Help me please

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately the top menu was not designed for mobile device and it is hidden,we will try to find a better implementation for log in widget. yYou can use this custom css to display the sign in widget on mobile – http://screencast.com/t/KOuJW9GW

@media (max-width: 767px){
.td-header-top-menu-full {
display: block !important;
}
.td-header-sp-top-menu {
display: block!important;
}
.menu-top-container {
display: none !important;
}
.td-header-sp-top-widget {
display: none !important;
}
}

Thanks!!

Alin [tagDiv]
tagDiv Staff

Hi,

You can add the code like this – http://screencast.com/t/W7VY918Dr3Pw

$adcounter++;
if (is_category()) {
if ($adcounter == 2) {
echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');
}
elseif($adcounter == 4){
echo do_shortcode('[td_block_ad_box spot_id="custom_ad_2"]');
}
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

If you want to remove comment counter only on specific block you can do this via custom css in Theme Panel > Custom Css(just change the block number) – http://screencast.com/t/xR4FapMDV1

.td_block_1 .td-module-comments {
display: none;
}

Also there is a general option to remove comments counter on post, modules, blocks in Theme Panel > Post Settings – http://screencast.com/t/O1uLS1cGl5mC

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I can provide you some suggestions, but I cannot customize your megamenu as the time doesn’t allow us to provide custom work, sorry! For example you can try to add a negative top margin for next/prev buttons – http://screencast.com/t/9Gwk7ZyOXu

.td-mega-menu .td_block_mega_menu .td-next-prev-wrap {
margin-top: -40px;
margin-bottom: 0 !important;
}

Also you can reduce the padding – http://screencast.com/t/epvZwRqFWhttp://screencast.com/t/ABMLBkaXRqU Or if you want to make it smaller you can try to play a little with width values(use media queries for different screen device) – http://screencast.com/t/g49WcepTro4r

@media (min-width: 1141px) {
.td-mega-menu ul {
width: 1070px !important;
left: 0 !important;
}
.td_mega_menu_sub_cats {
width: 195px !important;
}
}

Hope this helps!

Gee95
Participant
#0

Hello,

I’m creating a page with a list of all articles on, with page navigation.

When i create a block (Block11) with a limit post number of 2300 and enable next and prev – the page is white.

When i lower the limit post number to 100, the page shows the list but no navigation appears.

How can i achieve my aim without getting a white screen?

I believe if the navigation appeared for 2300, it wouldn’t be a white screen as it would load a number of articles at one time.

Thanks,

strawberrybase
tagDiv Member

Could i ask a quick question regarding the code below?

$adcounter = 0;

$adcounter++;
if (is_category()) {
if ($adcounter == 2 or $adcounter == 4) {
echo do_shortcode(‘[td_block_ad_box spot_id="custom_ad_1"]‘);
}
}

What amends would i need to make to this code so that i can have a ‘custom_ad_1’ space after the second post and a ‘custom_ad_2’ space after the forth post. So basically 2 different ad spaces (displaying different ads) on the category page?

Thanks

Emil G
tagDiv Staff

Hi,

The code uses the block settings and it should generate the same number of items on load more. I didn’t do any tests with a different value so i cannot tell you exactly what has to be adjusted, you have to make some tests. The code creates a script which is added on top of the blockhttp://screencast.com/t/S1v9IcNQdioc – the data is used for new requests on pagination (load more, next-prev, infinite load).
On your code i suspect you load 14 posts and then you set 10 for the next load, the offset is set to 10 instead of 14 and this may be the cause why you get duplicate posts. Hope this helps.

Thank you!

Andrei L.
tagDiv Member

Hi

The theme wasn’t designed to use blocks in post content, so it’s possible to appear some issues with the layout.

Regarding the post style 8 I am not sure what code you’re using for the image, so please send me the post content so I can inspect it: http://screencast.com/t/Wd7d3wF4eLeh make sure you use: http://pastebin.com/ for that.
Please let me know.

Thanks!

Mariscos
Participant
#0

Hi to All,
is it possibile to remove the comments count on the blocks, like in the block 5?

thanks in advance

A

Lucian
tagDiv Staff

Hi,

I see now that you were referring to sidebar posts not the current post viewed: http://screencast.com/t/LCKhnjfHl8T
Unfortunately other than taking advantage of those specific blocks filters and control the queries made there to avoid duplication you can’t control this on post pages. Sorry!

Sorry for the inconvenience!
Thanks for the message!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately the theme doesn’t have such an option, you can achieve this only with custom modifications so I suggest to hire a freelancer to do this for you as we cannot provide custom work at this time, sorry! What can be done with the theme is to create a block(filter options, set infinite load pagination) and use do_shortcode function to display it in the post template that you use something like this – http://screencast.com/t/NKjGzgOKWinhttp://screencast.com/t/lT1GsCBptd9m
Also you can try to find a plugin that allows infinite load on posts, but we did not tested any of these so I cannot make any recommendations.

Thanks!

Maros K.
tagDiv Member

Hello,

I disabled ip block plugin and Sucuri scan says that my site was hacked by BlackHat SEO Spam. SO what should I do now?

Thank you.

ninjaray
tagDiv Member

Hoping for some feedback on the issue of 10 posts rotating through the slider even though the settings are set for 5? Also seems to be happening with other content blocks. Screenshots linked above. Any ideas?

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You can try this custom css to change the article title color for all blocks/modules – http://screencast.com/t/autiTAA0G

.td-module-title a {
color: red;
}

For share title – http://screencast.com/t/2sMyyRSUncc

.single .td-post-share-title {
color: red;
}

And for mobile menu background please check this topic – https://forum.tagdiv.com/topic/sticky-header-color/#post-62914

Thanks!

rishab55555
tagDiv Member

Hello Alin,

Thanks for your reply !

The option to create a custom page link in menu is always available, but the trouble is when Google crawls the site for SEO it’ll find the category slug URL different and the custom page which i created for States different. Hence there would be content duplicacy.

What I want is that My custom page becomes the default page of the category “States”.

Let me know how can that be achieved ?

Also is there any way through which a custom template can be created for a category in which widgets and blocks can be added. Right now there are fix templates available for a category.

Alin [tagDiv]
tagDiv Staff

Hi,

Glad that it works! I will add this on suggestions list and the developers will that it in considerations for future updates, unfortunately for version 6 of the theme they took decision to not implement this for blocks/modules. But like I said we will consider to re-add this in a future update.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Here you can find the code for “Popular Category” block(this is wordpress widget) – http://screencast.com/t/hfP7Urx0 I see that you use W3Total Cache please make sure that you have only page cache active like we recommend, also after you clear the cache disable the cache plugin(and all others except of Visual Composer).

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Sorry for delay! We answer to the most oldest topics so if you add a new reply we get later to your topic.

1. We removed the quotes shortcodes, we use html with classes now. The quotes are not updated by the script, sorry. We tried to add them but on some cases there was a chance for errors to appear an we decided to not include them in the script.
Try to add the following code at the end of the functions.php file – http://screencast.com/t/OWxqEsYVKhttp://pastebin.com/NZEJsWQZ
2. There is an option to change the blockquote color in Theme Panel > Theme Colors – http://screencast.com/t/GaVyoCu2xcU
3. You can change the hover color using custom css in Theme Panel > Custom Css – http://screencast.com/t/1BPyH3KM

.td-trending-now-wrapper:hover .td-trending-now-title {
background-color: red;
}

4. You can change the general color for post content links using custom css in Theme Panel > Custom Css – http://screencast.com/t/26hujdCrvc

.td-post-content a {
color: red;
}

Also you can add manually a color to your link(s) just edit the post select the link and add the color – http://screencast.com/t/3nfN9nIS0R

5. If you refer to the panel options for page content – http://screencast.com/t/T1GXLsNq1 please note that these options will not affect any page template created using pagebuilder(Visual Composer). Please provide a link and more details about what you are trying to do.

6. Do you refer to the lazy load effect? you can remove it from Theme Panel > Template Settings – http://screencast.com/t/dg4jDDqg7oI

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please check the Slider settings and set the category(categories) that you want to display there – http://screencast.com/t/0Nf23EZtsM Also if it doesn’t work please disable all plugins except of Visual Composer, clear cache and check it again. Let me know how it goes and provide more details how you set the slider(or any block where you have this issue), some screenshot may help and also provide a link.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately in Newspaper 6 the post views are not available anymore on blocks/modules and you will need custom modifications for this. Please check this topic to see an example how to display post views on blocks/modules – https://forum.tagdiv.com/topic/view-numbers-in-block/

Thanks!

danoah
tagDiv Member

Hello, here is an example. You will see in the sidebar block, it has the same post as one of the blocks in the footer.

http://www.danoah.com/2015/08/and-that-son-is-why-we-dont-do-drugs.html

Home page issue was resolved.

I have implemented the code above as you said.

ozirushka
tagDiv Member

These blocks. I have not found how to edit them.

Aaaaaaaaaaa
I’m stupid!
This is a widget !!!!

Thank you!

  • This reply was modified 11 years by ozirushka.
  • This reply was modified 11 years by ozirushka.
Viewing 25 results - 34,676 through 34,700 (of 39,816 total)