badget

Biggest Sale! Special Offer!

Get 50% discount on all of our single themes with this coupon code: #50%SALE

Hurry up! *Limited time offer*

Theme Horse Support Team

Forum Replies Created

Viewing 15 posts - 2,026 through 2,040 (of 5,207 total)
  • Author
    Posts
  • in reply to: TH Services with 4 elements pet line #42415

    Hi Kim,

    This feature is not available in our theme. It needs lots of code customization so you need to hire a developer to fix it.

    Thank you!

    in reply to: Update procedure #42414

    Hi Robert,

    If you have not made any code customization then no worry about the content loss. First make a backup of old version of your theme. Then you can activate any other theme and delete the current theme from dashbaord -> appearance -> themes (delete ultimate pro theme)

    After doing it, install the new version of ultimate pro theme zip file and activate it. Doing it settings will not be lost.

    Thank you!

    in reply to: One-third and One-half code won't work on Ultimate? #42413

    Hi wayoverboard,

    You have added an image Header-1.png under site title and that image is broken. So you just goto the dashboard -> appearance -> customize -> design options -> custom header and remove header logo image and set it to disable.

    Hope this may help you
    Thank you!

    in reply to: Move Header Logo to Far Left #42412

    That’s great Robert

    Could you also please help us rating this theme in WordPress Repository.
    https://wordpress.org/support/view/theme-reviews/interface
    We really appreciate your rating.

    Thank you!

    in reply to: Page template options disappearing – please help #42411

    Hi Rachel,

    Please don’t use post page for that page. Use Front page instead of Post page. Then only your template will not be disappeared.
    View screenshot. some how it must be like this

    http://awesomescreenshot.com/07c5m6p629

    Thank you!

    in reply to: Featured images above posts suddenly resized? #42410

    Thanks for helping us rene1

    Thank you!

    in reply to: Problem: Setting the business page section. #42409

    Hi Elsa,

    Your design is not looking good. Did you made any code customization on it? It seems that you have customized the code. So install the fresh copy of interface theme and let us know if you have any issue on it.

    Thank you!

    in reply to: what's with the sidebar widgets layout? #42408

    Hi magenta,

    Could you Email Us your temporary username and password. Please don’t forget to send this forum Url too. Don’t paste your username and password at this forum topic because its public to every one.

    Thank you!

    in reply to: traslate Read More -remove title #42368

    That’s great boelstier

    Thank you!

    in reply to: traslate Read More -remove title #42364

    Hi boelstier,

    Once you just check our ultimate.pot file which is inside language directory. There our string is already ready for translation. I am not sure from where did you created the translation file. Just see line no 589 to 583 you will find this code

    #: inc/structure/content-extensions.php:144
    #: inc/structure/content-extensions.php:442
    #: inc/structure/content-extensions.php:563
    msgid "Continue reading"
    msgstr ""

    In your .po file it must be like below code

    #: inc/structure/content-extensions.php:144
    #: inc/structure/content-extensions.php:442
    #: inc/structure/content-extensions.php:563
    msgid "Continue reading"
    msgstr "Fortsätt läsa"

    hope this may help you
    Thank you!

    in reply to: Can not upload zip file, response: is a catalogue #42352

    Hi Åsa,

    If you want to upload the attitude theme in your domain via ftp then logon to ftp and go under public_html -> wp-content -> themes -> and unzip the attitude-pro zip file and drag/drop the attitude-pro folder under themes.
    After it goto dashboard -> appearance -> themes (you will see the attitude pro theme and activate it.)

    If you think that it’s really difficult then you can also even try another method.
    Go to goto dashboard -> appearance -> themes -> Click on upload themes and install the attitude-pro.zip folder. Doing from there you don’t need to unzip the folder and activate it.

    Note: To have this WordPress theme work first you need to download a WordPress file from wordpress.org Unzip the WordPress file and you need to paste all the files inside ftp -> public_html. You also need to create a database from your cpanel too.

    Hope this may help you
    Thank you!

    in reply to: Our team page link images & multiple page #42351

    Hi Thanks for reporting that its not working.
    Paste below code

    /* Start */
    class ultimate_child_ourteam_widget extends WP_Widget {
    
     	function ultimate_child_ourteam_widget() {
     		$widget_ops = array( 'classname' => 'widget_our_team', 'description' => __( 'Display Our Team ( Our Team Child Layout ) recommendation size ( 300 * 300 )px', 'ultimate' ) );
     		$control_ops = array( 'width' => 200, 'height' =>250 ); 
     		parent::__construct( false, $name = __( 'TH: Our Team Child', 'ultimate' ), $widget_ops, $control_ops);
     	}
     	function form( $instance ) {
     		$instance = wp_parse_args( (array) $instance, array( 'title' => '', 'number' => '3', 'image1' => '', 'imageurl1' => '', 'text1' => '', 'name1' =>'', 'designation1'=>'','image2'=>'', 'imageurl2' => '','text2'=>'','name2'=>'','designation2'=>'','image3' => '','imageurl3' => '', 'text3' => '', 'name3' =>'', 'designation3'=>'' ) );
     		$title = strip_tags($instance['title']);
     		$number = absint( $instance[ 'number' ] );
     		for ( $i=1; $i<=$number; $i++ ) {
     			$image = 'image'.$i;
     			$imageurl = 'imageurl'.$i;
     			$name  = 'name'.$i;
     			$designation = 'designation'.$i;
     			$text  = 'text'.$i;
     			$instance[ $image ] = esc_url( $instance[ $image ] );
     			$instance[ $imageurl ] = esc_url( $instance[ $imageurl ] );
     			$instance[ $name ] = strip_tags( $instance[ $name ] );
     			$instance[ $designation ] = strip_tags( $instance[ $designation ] );
     			$instance[ $text ] = strip_tags( $instance[ $text ] );
     		}
     		?>
     		<p>
     			<label for="<?php echo $this->get_field_id('number'); ?>">
     				<?php _e( 'Number of OurTeam:', 'ultimate' ); ?>
     			</label>
     			<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /> 
     			<input type="submit" name="savewidget" id="widget-ultimate_ourteam_widget-2-savewidget" class="button button-primary widget-control-save right" value="Save">			<span class="spinner" style="display: none;"></span>
     		</p>
     		<p>
     			<label for="<?php echo $this->get_field_id('title'); ?>">
     				<?php _e( 'Title:', 'ultimate' ); ?>
     			</label>
     			<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
     		</p>
     		<p>&nbsp; </p>
     		<?php for ( $i=1; $i<=$number; $i++ ) {
     			$image = 'image'.$i;
     			$imageurl = 'imageurl'.$i;
     			$name  = 'name'.$i;
     			$designation = 'designation'.$i;
     			$text  = 'text'.$i;
     			$instance[ $image ] = esc_url( $instance[ $image ] );
     			$instance[ $imageurl ] = esc_url( $instance[ $imageurl ] );
     			$instance[ $name ] = strip_tags( $instance[ $name ] );
     			$instance[ $designation ] = strip_tags( $instance[ $designation ] );
     			$instance[ $text ] = strip_tags( $instance[ $text ] );
     			?>
     			<p>
     				<input type="text" class="upload1" id="<?php echo $this->get_field_id($image); ?>" name="<?php echo $this->get_field_name($image); ?>" value="<?php if(isset ( $instance[$image] ) ) 
     				echo esc_url( $instance[$image] ); ?>"/>
    
    				<input type="button" class="button  custom_media_button"name="<?php echo $this->get_field_name($image); ?>" id="custom_media_button_services" value="<?php echo esc_attr( 'Add Image','ultimate'); ?>" onclick="mediaupload.uploader( '<?php echo $this->get_field_id($image); ?>' ); return false;"/>
     			</p>
     			<p>
     				<label for="<?php echo $this->get_field_id('imageurl'); ?>">
     					<?php _e( 'Image Url '.$i, 'ultimate' ); ?>
     				</label>
     				<input class="widefat" id="<?php echo $this->get_field_id($imageurl); ?>" name="<?php echo $this->get_field_name($imageurl); ?>" type="text" value="<?php if(isset ( $instance[$imageurl] ) ) echo esc_attr( $instance[$imageurl] ); ?>" />
     			</p>
     			<p>
     				<label for="<?php echo $this->get_field_id('name'); ?>">
     					<?php _e( 'Name '.$i, 'ultimate' ); ?>
     				</label>
     				<input class="widefat" id="<?php echo $this->get_field_id($name); ?>" name="<?php echo $this->get_field_name($name); ?>" type="text" value="<?php if(isset ( $instance[$name] ) ) echo esc_attr( $instance[$name] ); ?>" />
     			</p>
     			<p>
     				<label for="<?php echo $this->get_field_id('designation'); ?>">
     					<?php _e( 'Designation '.$i, 'ultimate' ); ?>
     				</label>
     				<input class="widefat" id="<?php echo $this->get_field_id($designation); ?>" name="<?php echo $this->get_field_name($designation); ?>" type="text" value="<?php if(isset ( $instance[$designation] ) ) echo esc_attr( $instance[$designation] ); ?>" />
     			</p>
     			<?php _e( 'OurTeam Description '.$i,'ultimate'); ?>
     			<textarea class="widefat" rows="8" cols="20" id="<?php echo $this->get_field_id($text); ?>" name="<?php echo $this->get_field_name($text); ?>"><?php if(isset ( $instance[$text] ) ) echo esc_attr( $instance[$text] ); ?></textarea>
     			<p>&nbsp; </p>
     			<hr>
     			<p>&nbsp; </p>
     			<?php
     		}
     	}
     	function update( $new_instance, $old_instance ) {
     		$instance = $old_instance;
     		$instance['title'] = strip_tags($new_instance['title']);
     		$instance['number'] = absint( $new_instance['number'] );
     		for( $i=1; $i<=$instance['number']; $i++ ) {
     			$image = 'image'.$i;
     			$imageurl = 'imageurl'.$i;	
     			$name  = 'name'.$i;
     			$designation = 'designation'.$i;
     			$text  = 'text'.$i;
     			$instance[ $image ] = esc_url_raw( $new_instance[ $image ] );
     			$instance[ $imageurl ] = esc_url_raw( $new_instance[ $imageurl ] );
     			$instance[ $name ] = strip_tags( $new_instance[ $name ] );
     			$instance[ $designation ] = strip_tags( $new_instance[ $designation ] );			
     			$instance[ $text ] = strip_tags( $new_instance[ $text ] );
     		}
     		return $instance;
     	}
     	function widget( $args, $instance ) {
     		extract($args);
     		global $options, $array_of_default_settings;
    		$options = wp_parse_args( get_option( 'ultimate_theme_options', array() ), ultimate_get_option_defaults());
     		$title = empty( $instance['title'] ) ? '' : $instance['title'];
     		$number = empty( $instance['number'] ) ? 2 : $instance['number'];
     		$image_array = array();
     		$imageurl_array = array();
     		$name_array = array();
     		$designation_array = array();
     		$text_array = array();
     		for( $i=1; $i<=$number; $i++ ) {
     			$image = 'image'.$i;
     			$imageurl = 'imageurl'.$i;	
     			$name  = 'name'.$i;
     			$designation = 'designation'.$i;
     			$text  = 'text'.$i;
     			$image = isset( $instance[ $image ] ) ? $instance[ $image ] : '';
     			$imageurl = isset( $instance[ $imageurl ] ) ? $instance[ $imageurl ] : '';
     			$name = isset( $instance[ $name ] ) ? $instance[ $name ] : '';
     			$designation = isset( $instance[ $designation ] ) ? $instance[ $designation ] : ''; 
     			$text = isset( $instance[ $text ] ) ? $instance[ $text ] : ''; 	
    if( !empty( $image )  || !empty( $name ) || !empty( $designation ) || !empty( $text ))  {
     			if( !empty( $image ) )
     				array_push( $image_array, $image ); // Push the page id in the array
     			 else array_push($image_array, "");
     			if( !empty( $imageurl ) )
     				array_push( $imageurl_array, $imageurl ); // Push the page id in the array
     			 else array_push($image_array, "");
     			if( !empty( $name ) )
    				array_push( $name_array, $name ); // Push the page id in the array
    			 	else array_push($name_array, "");
    			if( !empty( $designation ) )
    				array_push( $designation_array, $designation ); // Push the page id in the array
    			 	else array_push($designation_array, "");
    			if( !empty( $text ) )
     				array_push( $text_array, $text ); // Push the page id in the array
     			 	else array_push($text_array, "");
    }
     		}
     		echo $before_widget;
     		echo '<div class="container clearfix">';
     		if ( !empty( $title ) ) { echo $before_title . esc_html( $title ) . $after_title; } ?>
     		<div class="column clearfix">
     			<?php 
     			$j = 1;
     			for( $i=0; $i<$number; $i++ ) { 
     				if( $j % 4 == 1 && $j > 1 ) {
     					$ourteam_class = "one-fourth clearfix-half-team clearfix-fourth";
     				}
     				elseif ( $j % 3 == 1 && $j > 1 ) {
     					if($j<=4 || $j==10){
     						$ourteam_class = "one-fourth clearfix-third-team";
     					}else{
     						$ourteam_class = "one-fourth clearfix-half-team clearfix-third-team";
     					}
     				}
     				elseif ($j % 2 == 1 && $j > 1 ) {
     					$ourteam_class = "one-fourth clearfix-half-team";
     				}		
     				else{
     					$ourteam_class = "one-fourth";
     				}	?>
     				<?php if(!empty($image_array[$i]) || !empty($text_array[$i])){?>
     				<div class="<?php echo $ourteam_class; ?>">
     				<?php if(!empty($image_array[$i])){ ?>
     					<div class="our-team-photo"> <?php if(!empty($imageurl_array[$i])){ ?><a href ="<?php echo $imageurl_array[$i]; ?>"> <?php } ?><img src="<?php echo $image_array[$i]; ?>" title="<?php if(!empty($name_array[$i])){ echo $name_array[$i]; } ?>" alt="<?php if(!empty($image_array[$i])){ echo $name_array[$i]; }?>" /> <?php if(!empty($imageurl_array[$i])){ ?></a> <?php  } ?></div>
     				<?php }
     					if(!empty($text_array[$i])){?>
     					<div class="our-team-content">
     						<h3 class="our-team-name"><?php if(!empty($name_array[$i])){ echo $name_array[$i]; } ?></h3> <div class="our-team-designation"><?php if(!empty($designation_array[$i])){ echo' - '; echo $designation_array[$i]; }?></div>
     						<p><?php echo $text_array[$i]; ?></p>
     					</div><!-- .our-team-content -->
     				<?php 
     					} ?>
     				</div><!-- .one-fourth -->
     				<?php } ?>
     				<?php  $j++ ;
     			}
     			?>
     		</div>
     		<?php 
     		echo '</div><!-- .container -->';
     		echo $after_widget;
     	}
     }

    Hope this may help you
    Thank you!

    in reply to: One-third and One-half code won't work on Ultimate? #42349

    Hi wayoverboard,

    Are you talking about this shortcodes? [one-third-first]

    From where did you add this shortcode? As we have not generated any shortcodes in our theme and shortcodes is under the plugin territory. If you are using the plugin shortcodes then first check your plugins is activated or not. Also let us know which plugins are you using for it.

    Thank you!

    in reply to: Featured images above posts suddenly resized? #42348

    Hi jen,

    Photon might be resizing your image so after activating that plugins its working. As we are not sure that Photon plugins will work fine in our theme. There may be some plugin issues regarding to gifs images. So you may ask to the plugins author about the issue.

    Thank you!

    in reply to: Problem: Setting the business page section. #42347

    Hi Elsa,

    Could you provide your site Url too so that we can help you

    Thank you!

Viewing 15 posts - 2,026 through 2,040 (of 5,207 total)