This topic has 6 replies, 4 voices, and was last updated 11 years, 1 month ago by Fem.
Tagged: Domain Search, Footer Header, Permalink Error, Wpml
Viewing 7 posts - 1 through 7 (of 7 total)
Hey thier,
I need help on my new site: kunkal.at I pm’ed you on Skype but you are not online.
1. Domain Search: I would like to remove the text “Search Domain” and center that thing? Is that possible?
2. I Have some problems with links, “http://kunkal.at/webhosting-3/ <= This should be /webhosting/ only. And no I don’t have any site called “/webhosting/”. It just adds this stupid number their. Please help me.
3. I use the wpml language plugin. And I have problems with my Blog, I only wont to display /blog/ when my visitors are viewing my page. Now it is fucked up. When I’am on German it will redirects me to english, but the blog is german.
4. Removing the white line at the Footer?
5. Make the heading in the footer bigger. I tryed everything in the admin menü. But the Footer h1 tags don’t do anything.
You can have an login. I live in Vienna just writte me on Skype. lukas.kunkal.
Hi Lukas,
1. You need to customize the domain search shortcode to remove the “Search Domain” and make that in full width.
2. Just simple you need to edit the page and change the permalinks and update the page.
3. I see its working fine.
4. Add this in custom css section.
#footer .footer-sidebar { background: none; }
5. Add this in custom css section.
.widget-title { font-size: 18px; }
Hope above this will fix your issues.
Regards,
Mawk
1. [iva_domaincheck title=”????” buttontext=”Suchen”] That’s the code.
I think it is not that easy. I don’t see anything what I should edit here…
2. I tryed it. Don’t work. It will always
3. I solved this myself
4. Done
5. Done
PS: Does the wpml plugin work? Because I only see German. And can’t switch to english
1) You need to customize the code in framework/shortcode/iva_whmcsdomain.php file
2) The number suffix will be added if the page already exists and you create a new one. Its like auto increment. You create another webhosting page it will create -4 like that. First delete exist pages of webhosting and remove from trash folder as well then you can create a proper naming.
Yes in the History WPML is the only #1 plugin so far for the translation for the wordpress. You need to learn about its usage and then you can do it.
Since I can’t code where should I writte what in order to center this thing?
<?php
// Whmcs Domaincheker
if( !function_exists('iva_whmcsdomainchecker')){
function iva_whmcsdomainchecker($atts, $content = null) {
extract(shortcode_atts(array(
'buttontext' => 'Search',
'title' => '',
), $atts));
$defaultdomain= array( '.com' => '.com');
$domain_ext = get_option('atp_domainextension') ? get_option('atp_domainextension') : $defaultdomain;
$title = __('Search Domain','THEME_FRONT_SITE');
$out = '';
$out .= '<div class="iva_domainSearch">';
if( $title ){
$out .='<div class="domainSearch_Title one_fourth"><h3>'.$title.'</h3></div>';
}
$out .= '<div class="three_fourth last">';
$out .= '<form action="'.esc_url(get_option('atp_link_action')).'" method="post">';
$out .= '<input type="hidden" name="token" value="bbd8e065798a94ff236b9aafc078de5df156075c" />';
$out .= '<span class="web_abbr">'.__('www.', 'THEME_FRONT_SITE').'</span><input type="text" name="domain" value="" size="40">';
$out .= '<div class="select_wrapper ds100">';
$out .= '<select class="select witch" name="ext">';
if( $domain_ext !='' ) {
foreach ( $domain_ext as $value) {
$out .= '<option value='.$value.'>'.$value.'</option>';
}
}
$out .='</select>';
$out .= '</div>';
$out .= '<button type="submit" id="Submit" class="btn medium flat domainSearch orange"><span>'.$buttontext.'</span></button>';
$out .= '</form>';
$out .= '</div>';
$out .= '</div>';
return $out;
}
add_shortcode('iva_domaincheck','iva_whmcsdomainchecker');
}
?>
The solved the other two problems. Suddenly it worked. With the /webdesign/ location. Strange.
Try this code hope this work for you.
<?php
// Whmcs Domaincheker
if( !function_exists('iva_whmcsdomainchecker')){
function iva_whmcsdomainchecker($atts, $content = null) {
extract(shortcode_atts(array(
'buttontext' => 'Search',
'title' => '',
), $atts));
$defaultdomain= array( '.com' => '.com');
$domain_ext = get_option('atp_domainextension') ? get_option('atp_domainextension') : $defaultdomain;
$out = '';
$out .= '<div class="iva_domainSearch">';
$out .= '<form action="'.esc_url(get_option('atp_link_action')).'" method="post">';
$out .= '<input type="hidden" name="token" value="bbd8e065798a94ff236b9aafc078de5df156075c" />';
$out .= '<span class="web_abbr">'.__('www.', 'THEME_FRONT_SITE').'</span><input type="text" name="domain" value="" size="40">';
$out .= '<div class="select_wrapper ds100">';
$out .= '<select class="select witch" name="ext">';
if( $domain_ext !='' ) {
foreach ( $domain_ext as $value) {
$out .= '<option value='.$value.'>'.$value.'</option>';
}
}
$out .='</select>';
$out .= '</div>';
$out .= '<button type="submit" id="Submit" class="btn medium flat domainSearch orange"><span>'.$buttontext.'</span></button>';
$out .= '</form>';
$out .= '</div>';
return $out;
}
add_shortcode('iva_domaincheck','iva_whmcsdomainchecker');
}
?>
Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic.