Forum Replies Created
-
in reply to: translation into German
how can it be that i buy a template and then can’t edit it without plugins?
There must be a php file in which I can enter Our Locations, Telephone Number and Email Address can translate from the header into German.I know that it was once in the register_shortcodes.php. but this file is empty.
via search engines i found a php from an old version in which it was possible.
here is an excerpt:`if(!function_exists(‘codeless_sc_contact_info’)){
function codeless_sc_contact_info($atts, $content = null, $shortcodename=””){
extract(shortcode_atts(array(“tel” => “”, ‘addr’ => ”, ’email’ => ”, ‘bbm’ => ”), $atts));
$output .= ‘<div class=”contact_information”>’;
if(!empty($addr)):
$output .= ‘<dl class=”item dl-horizontal addr”>’;
$output .= ‘<dt><i class=”icon-location-arrow”></i></dt>’;
$output .= ‘<dd><span class=”title”>’.__(‘Sitz’, ‘codeless’).'</span><p>’.$addr.'</p></dd>’;
$output .= ‘</dl>’;
endif;if(!empty($tel)):
$output .= ‘<dl class=”item dl-horizontal”>’;
$output .= ‘<dt><i class=”moon-phone”></i></dt>’;
$output .= ‘<dd><span class=”title”>’.__(‘Telefon’, ‘codeless’).'</span><p>’.$tel.'</p></dd>’;
$output .= ‘</dl>’;
endif;if(!empty($email)):
$output .= ‘<dl class=”item dl-horizontal”>’;
$output .= ‘<dt><i class=”icon-envelope”></i></dt>’;
$output .= ‘<dd><span class=”title”>’.__(‘E-Mail Addresse’, ‘codeless’).'</span><p>’.$email.'</p></dd>’;
$output .= ‘</dl>’;
endif;if(!empty($bbm)):
$output .= ‘<dl class=”item dl-horizontal”>’;
$output .= ‘<dt><span class=”bbm_channels”></span></dt>’;
$output .= ‘<dd><span class=”title”>’.__(‘BBM Channels’, ‘codeless’).'</span><p>’.$bbm.'</p></dd>’;
$output .= ‘</dl>’;
endif;$output .= ‘</div>’;
return $output;
}
add_shortcode(‘contact_information’, ‘codeless_sc_contact_info’);
}in reply to: translation into Germando you have any news for me? 3 weeks have now passed!
in reply to: translation into GermanThis reply has been marked as private.in reply to: translation into Germanhello, when i scan my theme i can’t find our locations and telephone number.
how can I translate this into German?in reply to: translation into GermanHi,
is there already a solution for this? I know that it was once in the register_shortcodes.php. but this file is empty