It’s the custom field “Subtitle” in Post settings used in newspaper\includes\modules\td_module_1.php
<p class="td-sub-title"><?php echo $this->td_post_theme_settings['td_subtitle'];?>
I want it to use in antoher module e.g. newspaper\includes\modules\td_module_9.php
Hi,
The subtitle was used in Module 1 because that was before the post file(single)
If you want custom fields you can use a plugin and create new custom fields and you can add it anywhere. Here are a implementation with that plugin: https://forum.tagdiv.com/topic/costumize-show-date/#post-6630
Thanks for your message!
Hi,
I found how to make it.
Add the code like here: http://screencast.com/t/dnilZqbH
global $post;
and
<?php $td_subtitle_module = get_post_meta($post->ID, 'td_post_theme_settings', true); ?>
<p class="td-sub-title"><?php echo $td_subtitle_module['td_subtitle'];?></p>
Thanks for the message!
You’re right, in a seemless module it does work properly, but I want to use it in the “Homepage – blank Template”.
I use “Block 9” which includes “module 8” and that doesn’t work. Hmmm….
Hi Mirko,
da habe ich mal eine ganz dumme Frage: wie bist du zu Block 9 gekommen?? Genau das brauchte ich aber bekam hier keine passende Antwort. Meine noch nicht “gefinishte” Seite heisst übrigens opencitii; du hattest mich mal danach gefragt. Anfang April gehe ich damit sozusagen “in Produktion”. PS: Alle Bilder und Content-Texte sind Dummys. Bitte nicht wundern. Was die Seite bietet steht aber über dem bg-slider…
-
This reply was modified 12 years by
ocbln.
Hi,
Use this code instead of above
<?php $td_subtitle_module = get_post_meta($this->post->ID, 'td_post_theme_settings', true); ?>
<p class="td-sub-title"><?php if(!empty($td_subtitle_module['td_subtitle'])){echo $td_subtitle_module['td_subtitle'];} ?></p>
and delete this: global $post;
Thanks!
Das ist ja kein vollmüllen. Ich sehe das unter dem Community-Aspekt “User helfen User”. Hilfe muss ja nicht immer vom Support-Team kommen.
Warum erstellst du nicht einen neuen Topich mit Hinweis auf “Deutschsprachiger Support” oder so ähnlich… Da haben dann auch andere etwas davon.
