display sub footer

Posted in: Newspaper
Post count: 14

Hello

How to display sub footer when you have footer page? As I have 2 languages English and Croatian and using WPML realized that I can’t translate regular footer without creating footer page. But then I don’t have sub footer anymore.
link: https://blog.wor-con.com/
Thank you

Post count: 14

I’ve added this code in footer:
if ( td_util::get_option( ‘tds_sub_footer’ ) != ‘no’ ) {
td_api_sub_footer_template::_helper_show_sub_footer();
}
And now subfooter display again.
How to translate it with WPML?
Thank you

Post count: 20688

Hi,

Currently the sub-footer will not be displayed if a footer page is displayed, maybe this will change in the future. Sorry for the inconvenience.

You can set the widgets in the footer to be displayed per language
http://prntscr.com/mc31hy
The footer page can be changed per language – https://forum.tagdiv.com/topic/translation-of-footer-pager-does-not-work/
https://forum.tagdiv.com/topic/using-with-wpml/

Let me know if you have more questions.
Thanks

Post count: 14

Hi
Yes I already realized that I can translate it trough widgets. Thank you for fast response

Post count: 14

Could you help me one more thing with css
I would like to display both flags together but now margin is too big. 10px would be great.

http://prntscr.com/mc5avr

Post count: 20688

So you want the flag icons to be closer together? Maybe like this
http://prntscr.com/md4zwp
I could modify it if it doesn’t work properly or you wanted something different

.sf-menu .menu-item-wpml-ls-85-hr > a {
padding-right: 5px;
}
.sf-menu .menu-item-wpml-ls-85-en > a {
padding-left: 5px;
margin-right: 18px;
}

Let me know.

Post count: 14

It’s good thank you

Post count: 14

hello again,

need your help please. Why transparent pictures have black background?
http://prntscr.com/mibhd8
And why i have black horizontal line below pictures?
Thank you

Post count: 14

another thing is that i want to remove some options in filter, like by reviews, random ect.
http://prntscr.com/mibuy4

Post count: 23312

Hi,

I need to access your website URL so I can take a closer look at it. Now, it seems to be in maintenance mode. You can send us an email with your credentials if you want at contact@tagdiv.com.

Thanks.

Post count: 14

sent them to your email

Post count: 14

How to add zoom effect to hover pictures in flex blocks? Thank you

Post count: 20688

You are referring to the zoom effect when the big grid modules are hovered. That effect is specific to big grids, full grids and flex grids only, it is not available for other elements like blocks.

Maybe you could use a flex grid instead of a flex block. I could also give you a code you could try, for example this code will affect flex block 1, when hovered it will zoom the image

.td_flex_block_1 .td-module-thumb span:hover {
transform: scale3d(1.1,1.1,1);
-webkit-transform: scale3d(1.1,1.1,1);
-moz-transform: scale3d(1.1,1.1,1) rotate(.02deg);
transition: all 0.2s ease-in-out;
}
.td_flex_block_1 .td-module-thumb span {
transition: all 0.2s ease-in-out;
}
.td_flex_block_1 .td-image-container {
overflow: hidden;
}

Post count: 14

Hello it worked I’ve only changed .td_flex_block_1 to .td_flex_block_4

Thank you

Post count: 20688

Glad it worked, that change in the code would be needed for other flex block types.

Post count: 14

Hello, can you help me to display top bar menu in mobile version?

Thank you

Post count: 20688

Hi,

You could a code from this topic – https://forum.tagdiv.com/topic/top-bar-in-mobile-menu-is-not-coming/
It should make the top bar visible on mobile, but only if you do not use the mobile theme plugin.

Thanks

Post count: 14

Hi, I’ve already tried that but it doesn’t work for us.

Post count: 20688

Hi,

Seems a more precise code is needed. I believe you want the menu items from the top bar to be displayed, the socials are displayed when the mobile menu is open. Something like this would work – http://prntscr.com/mtf1dj
This is the code for it, I could modify it if needed

@media (max-width: 767px) {
.td-wpml .menu-top-container .top-header-menu>li {
display: inline-block;
}
.td-wpml .menu-top-container {
float: none;
}
.td-wpml .menu-top-container .top-header-menu>li a {
margin-right: 16px;
}}

Post count: 14

It’s great I appreciate your help! Thank you!

Post count: 14

Hello,

these days the new magazine themes are coming up with read time feature. When you open any post it shows the total read time of the post. do you plan to add this feature?

Post count: 20688

Hi,

As far as I know this request isn’t on our list, I will add it. It will be considered. Thank you for the suggestion.

Viewing 22 posts - 1 through 22 (of 22 total)
The forum ‘Newspaper’ is closed to new topics and replies.