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
-
This topic was modified 12 years by
roger_hohl.
Hello,
You can translate from Theme – Option -> Translate http://screencast.com/t/WusWMIPFj
Thanks for the message!
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
-
This reply was modified 12 years by
roger_hohl.
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
Perfect
How can I Chance the italic font style into a normal font style (not italic)?
Best rgds
Roger
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>’;
}
-
This reply was modified 12 years by
roger_hohl.
-
This reply was modified 12 years by
roger_hohl.
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
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
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!
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
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!
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
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;
}