Graph Loading Animation
A Pen by Rahul Sagore on CodePen.
| <!-- multistep form --> | |
| <form id="msform"> | |
| <!-- progressbar --> | |
| <ul id="progressbar"> | |
| <li class="active">Account Setup</li> | |
| <li>Social Profiles</li> | |
| <li>Personal Details</li> | |
| </ul> | |
| <!-- fieldsets --> | |
| <fieldset> |
| /*==================== | |
| ** Mixins Scss | |
| ====================*/ | |
| @mixin gradient-border-with-radius($left,$right){ | |
| background-image: linear-gradient(white, white), | |
| radial-gradient(circle at top left, $left, $right); | |
| background-origin: border-box; | |
| background-clip: content-box, | |
| border-box; | |
| } |
| register_taxonomy( | |
| 'Category', | |
| 'xgenious_teams', | |
| array( | |
| 'label' => __( 'Category' ), | |
| 'query_var' => true, | |
| 'show_admin_column' => true, | |
| 'rewrite' => array( | |
| 'slug' => 'category', | |
| 'with_front' => true |
| $arg = array( | |
| 'post_type' => 'xgenious_teams', | |
| 'posts_per_page'=> $count, | |
| 'tax_query' => array( | |
| array( | |
| 'taxonomy' => 'xgenious_teams', | |
| 'field' => 'term_id', | |
| 'terms' => $category | |
| ) | |
| ), |
| <?php | |
| vc_add_shortcode_param( $name , $form_field_callback, $script_url ); | |
| vc_add_shortcode_param( 'my_param', 'my_param_settings_field' ); | |
| function my_param_settings_field( $settings, $value ) { | |
| return '<div class="my_param_block">' | |
| .'<input name="' . esc_attr( $settings['param_name'] ) . '" class="wpb_vc_param_value wpb-textinput ' . | |
| esc_attr( $settings['param_name'] ) . ' ' . | |
| esc_attr( $settings['type'] ) . '_field" type="text" value="' . esc_attr( $value ) . '" />' . | |
| '</div>'; // This is html markup that will be outputted in content elements edit form |
| //testimonial carousel | |
| var $testimonial = $('#testimonial-carousel'); | |
| var $testimonialNav = $('#testimonial-thumbnail'); | |
| $testimonial.slick({ | |
| slidersToShow:1, | |
| slidersToScroll:1, | |
| arrows:false, | |
| autoplay:true, | |
| fade:true, | |
| asNavFor: $testimonialNav, |
| // define route like this | |
| Route::get('single/{id}/{any}',"BaseController@Single_Items")->name('item.single'); | |
| //make a function like below in your helper file | |
| function Replace($data) { | |
| $data = str_replace("'", "", $data); | |
| $data = str_replace("!", "", $data); | |
| $data = str_replace("@", "", $data); | |
| $data = str_replace("#", "", $data); |
| # Disable index view | |
| Options -Indexes | |
| # Hide a specific file | |
| <Files .env> | |
| Order allow,deny | |
| Deny from all | |
| </Files> |
| ----------------------------- | |
| Work fine on 10-April-2018 | |
| ----------------------------- | |
| http://207.246.109.4:8000 | |
| ----------------------------- |
Graph Loading Animation
A Pen by Rahul Sagore on CodePen.