Source and Via re-naming

Posted in: Newspaper
Post count: 29

Hello

Would like to re-name “Source and “Via”. Where can I change that?

Source-Name: “In Zusammenarbeit mit:”
Via-Name: “Foto Copyrights:”

Best rgds

Roger

Post count: 3343

Hello,
You can translate from Theme – Option -> Translate http://screencast.com/t/WusWMIPFj

Thanks for the message!

Post count: 29

Ok perfect.

I do have the following additional questions:
1. How can I make the font size smaller for Source and Via Name?
2. I would like to deactivate the link Modus for this entries. How can I do that?

Best rgds nd thx.

Roger

Post count: 3343

Hello,

1. Add this in style.css

.post-source-via {
font-size: 20px !important
}

2. Replace this lines http://screencast.com/t/8Hc1sdRs

with this:
line 1. ': <span style="color:#4db2ec;">' . $this->td_post_theme_settings['td_source'] . '</span></div>';

line 2. ': <span style="color:#4db2ec;">' . $this->td_post_theme_settings['td_via'] . '</span></div>';

Thanks

Post count: 29

Perfect

How can I Chance the italic font style into a normal font style (not italic)?

Best rgds

Roger

Post count: 3343

Hello,
Add this in style.css

.post-source-via {
    font-style: normal !important;
}

Thanks for the message!
Happy New Year!!!

Post count: 29

perfect, it works well.

Thx.

Post count: 29

Hello

Since I have the new V3 version in use, I do have blue links again for source-name and via-name. I also have the right entries in the td_module_blog.php as the following:

//via and source
if (!empty($this->td_post_theme_settings[‘td_source’]) or !empty($this->td_post_theme_settings[‘td_via’])) {
$buffy .= ‘<div class=”post-source-via”>’;
if (!empty($this->td_post_theme_settings[‘td_source’])) {
$buffy .= ‘<div class=”post-source”>’ . __td(‘source’) . ‘: <span style=”color:#000000;”>’ . $this->td_post_theme_settings[‘td_source’] . ‘</span></div>’;
}

if (!empty($this->td_post_theme_settings[‘td_via’])) {
$buffy .= ‘<div class=”post-via”>’ . __td(‘via’) . ‘: <span style=”color:#000000;”>’ . $this->td_post_theme_settings[‘td_via’] . ‘</span></div>’;
}
$buffy .= ‘</div>’;
}

Post count: 3343

Hi,
Please show me a link to see the issue, and i will give you the CSS fix.

Thanks!

Post count: 29

Hey Marius

Screenshot: http://www.screencast.com/t/JdWcfbv9RK7p

I would like to deactivate the link Modus for this entries. How can I do that? Before the update the above css fix helped.

Best rgds

Roger

Post count: 29

Any Ideas?

Roger

Post count: 3343

Hi,
I check your site and i see that you have disabled the via and source, is everything ok now?

Thanks for the message!

Post count: 29

Hi Marius

No, it is not disabled, but I do not have on every page source / via entries.

Look here: http://www.luxvisor.com/1435/news/hotels/renoviert-vila-vita-parc-resort-spa/

Same issue as described above. wanto to disable the link.

rgds

Roger

Post count: 3343

Hi,
To remove the link you have to replace this code http://screencast.com/t/6BC3OHWM

with this:

if (!empty($this->td_post_theme_settings['td_source']) or !empty($this->td_post_theme_settings['td_via'])) {
            $buffy .= '<div class="post-source-via">';
            if (!empty($this->td_post_theme_settings['td_source'])) {
                $buffy .= '<div class="post-source">' . __td('source') . ': ' . $this->td_post_theme_settings['td_source'] . '</div>';
            }

            if (!empty($this->td_post_theme_settings['td_via'])) {
                $buffy .= '<div class="post-via">' . __td('via') . ': ' . $this->td_post_theme_settings['td_via'] . '</div>';
            }
            $buffy .= '</div>';
        }

Hope this help.
Thanks!

Post count: 29

Perfect, it works!

Thx.

Roger

Post count: 29

Since I have updated to version 3.4 my via and source name font with you adapation is “bold and uppercase” again. How can I change that?

Link: http://www.luxvisor.com/1466/news/hotels/mainport-hotel-in-rotterdam/
Ps: IN ZUSAMMENARBEIT MIT: DESIGN HOTELS

Best rgds

Roger

Post count: 3343

Hi,
We changed the source and via and default should look like this: http://screencast.com/t/2imGUcAFYZb

Please can you make the update again you have an X version, we have released again 3.4, you should have 3.4
Today we will release 3.5

Thanks!

Post count: 29

Thank you for your answer.

I saw the new style. But I still do want to have “source” and “via” as normal text and without the links.

How can I do that?

Best rgds

Roger

Post count: 3343

Hi,
Remove this code http://screencast.com/t/TJYaT1hG

and add this CSS in Theme panel -> Custom CSS:

.post-via span {
  background-color: transparent;
  color: #4db2ec;
}
.post-source-via {
font-family: 'PT Sans', sans-serif;
font-size: 14px;
font-weight: normal;
text-transform: none;
font-style: normal;
}
Viewing 19 posts - 1 through 19 (of 19 total)
The forum ‘Newspaper’ is closed to new topics and replies.