Your Time:
Our Time:
← Back to discussions

Need help with 5. things! Domain Search, Permalink Error, Wpml, Footer Header

Need help with a different issue? Search the forums or open a new ticket.
Open a support ticket

This topic has 6 replies, 4 voices, and was last updated 11 years, 1 month ago by Fem.

  • 2015-06-10 at 11:12 pm
    Support Expired
    #8191
    maisonderoyale
    Participant
    • Topics: 5
    • Replies: 14
    • Total posts: 19
    • Post count: 18

    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.

    2015-06-11 at 12:49 pm
    #8192
    Wajid Khan
    Keymaster
    • Topics: 5
    • Replies: 1543
    • Total posts: 1548
    • Post count: 1876

    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

    2015-06-12 at 12:06 am
    Support Expired
    #8201
    maisonderoyale
    Participant
    • Topics: 5
    • Replies: 14
    • Total posts: 19
    • Post count: 18

    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

    2015-06-12 at 11:35 am
    #8204
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    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.

    2015-06-14 at 2:51 pm
    Support Expired
    #8246
    maisonderoyale
    Participant
    • Topics: 5
    • Replies: 14
    • Total posts: 19
    • Post count: 18

    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.

    2015-06-22 at 6:25 pm
    #8368
    Wajid Khan
    Keymaster
    • Topics: 5
    • Replies: 1543
    • Total posts: 1548
    • Post count: 1876

    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');
    }
    ?>
    2015-08-06 at 12:36 pm
    #8932
    Fem
    Keymaster
    • Topics: 2
    • Replies: 5215
    • Total posts: 5217
    • Post count: 6003

    Topic is set to be resolved because of no reply. If you wish to update this topic please reply here instead of creating another topic.

You must be logged in to reply to this topic.