/
home
/
vianto5
/
hidalgoresidences.mx
/
wp-content
/
themes
/
Bridge100
/
bridge
/
vc_templates
/
/home/vianto5/hidalgoresidences.mx/wp-content/themes/Bridge100/bridge/vc_templates
mkdir
upload
Name
Size
Mode
Actions
animated_icons_with_text.php
260
0644
edit
dl
rm
animated_icon_with_text.php
3190
0644
edit
dl
rm
qode_circle.php
4103
0644
edit
dl
rm
qode_circles.php
453
0644
edit
dl
rm
qode_client.php
1393
0644
edit
dl
rm
qode_clients.php
684
0644
edit
dl
rm
qode_content_slider.php
1515
0644
edit
dl
rm
qode_content_slider_item.php
137
0644
edit
dl
rm
qode_elements_holder.php
1304
0644
edit
dl
rm
qode_elements_holder_item.php
6419
0644
edit
dl
rm
qode_horizontal_marquee.php
631
0644
edit
dl
rm
qode_horizontal_marquee_item.php
390
0644
edit
dl
rm
qode_in_device_slider.php
843
0644
edit
dl
rm
qode_in_device_slider_item.php
464
0644
edit
dl
rm
qode_preview_slider.php
497
0644
edit
dl
rm
qode_preview_slider_item.php
784
0644
edit
dl
rm
qode_pricing_list.php
204
0644
edit
dl
rm
qode_pricing_list_item.php
1867
0644
edit
dl
rm
qode_pricing_table.php
4171
0644
edit
dl
rm
qode_pricing_tables.php
252
0644
edit
dl
rm
qode_vertical_left_sliding_panel.php
118
0644
edit
dl
rm
qode_vertical_right_sliding_panel.php
119
0644
edit
dl
rm
qode_vertical_slide_content_item.php
1300
0644
edit
dl
rm
qode_vertical_split_slider.php
301
0644
edit
dl
rm
vc_accordion.php
1409
0644
edit
dl
rm
vc_accordion_tab.php
1867
0644
edit
dl
rm
vc_column_text.php
1935
0644
edit
dl
rm
vc_empty_space.php
1792
0644
edit
dl
rm
vc_gallery.php
14587
0644
edit
dl
rm
vc_row.php
13668
0644
edit
dl
rm
vc_row_inner.php
13440
0644
edit
dl
rm
vc_separator.php
1391
0644
edit
dl
rm
vc_single_image.php
11488
0644
edit
dl
rm
vc_tab.php
619
0644
edit
dl
rm
vc_tabs.php
2632
0644
edit
dl
rm
vc_text_separator.php
1065
0644
edit
dl
rm
Edit:
/home/vianto5/hidalgoresidences.mx/wp-content/themes/Bridge100/bridge/vc_templates/qode_circle.php
(4103B)
<?php $args = array( "type" => "", "background_color" => "", "background_transparency" => "", "border_color" => "", "border_width" => "", "icon" => "", "size" => "fa-3x", "icon_color" => "", "image" => "", "text_in_circle" => "", "text_in_circle_tag" => "h3", "font_size" => "", "text_in_circle_color" => "", "text_in_circle_font_weight" => "", "link" => "", "link_target" => "_self", "title" => "", "title_tag" => "h3", "title_color" => "", "text" => "", "text_color" => "" ); extract(shortcode_atts($args, $atts)); $headings_array = array('h2', 'h3', 'h4', 'h5', 'h6'); //get correct heading value. If provided heading isn't valid get the default one $title_tag = (in_array($title_tag, $headings_array)) ? $title_tag : $args['title_tag']; $text_in_circle_tag = (in_array($text_in_circle_tag, $headings_array)) ? $text_in_circle_tag : $args['text_in_circle_tag']; $html = ''; $image_src = ''; $image_alt = ''; $circle_style = ''; $border_class = ''; $text_in_circle_style = ''; $icon_style = ''; $title_style = ''; $text_style = ''; if($background_color != "") { if($background_transparency !="") { $bg_color = qode_hex2rgb($background_color); $circle_style .= "background-color: rgba(". $bg_color[0]."," . $bg_color[1] . "," . $bg_color[2] . "," . $background_transparency . ");"; } else { $circle_style .= "background-color: ".$background_color.";"; } } if($border_color != "") { $circle_style .= " border-color: ".$border_color.";"; } if(intval($border_width) > 5) { $border_class = " big_border"; } if($border_width != "") { $circle_style .= "border-width: ".$border_width."px;"; } if($text_in_circle_color != "") { $text_in_circle_style .= "color: ".$text_in_circle_color.";"; } if($text_in_circle_font_weight != '') { $text_in_circle_style .= 'font-weight: '.$text_in_circle_font_weight.';'; } if($font_size != "") { $text_in_circle_style .= " font-size: ".$font_size."px;"; } if($icon_color != "") { $icon_style .= "color: ".$icon_color; } if($title_color != "") { $title_style .= "color: ".$title_color; } if($text_color != "") { $text_style .= "color: ".$text_color; } $html .= '<li class="q_circle_outer">'; if($link != ""){ $html .= '<a itemprop="url" href="'.$link.'" target="'.$link_target.'">'; } $html .= '<span class="q_circle_inner'. $border_class .'"><span class="q_circle_inner2" style="'.$circle_style.'">'; if($type == "image_type"){ if (is_numeric($image)) { $image_src = wp_get_attachment_url($image); $image_alt = get_post_meta($image, '_wp_attachment_image_alt', true); } if($image_src != ""){ $html .= '<img itemprop="image" class="q_image_in_circle" src="'.$image_src.'" alt="'.$image_alt.'" />'; } } else if ($type == "icon_type"){ $html .= '<i class="fa '.$icon.' '.$size.'" style="'.$icon_style.'"></i>'; } else if ($type == "text_type"){ $html .= '<'.$text_in_circle_tag.' class="q_text_in_circle" style="'.$text_in_circle_style.'">'.$text_in_circle.'</'.$text_in_circle_tag.'>'; } $html .= '</span></span>'; if($link != ""){ $html .= '</a>'; } if($title != "" || $text != ""){ $html .= '<div class="q_circle_text_holder">'; if($title != ""){ $html .= '<'.$title_tag.' class="q_circle_title" style="'.$title_style.'">'.$title.'</'.$title_tag.'>'; } if($text != ""){ $html .= '<p class="q_circle_text" style="'.$text_style.'">'.$text.'</p>'; } $html .= '</div>'; } $html .= '</li>'; echo $html;
Save
cmd:
run