Skip to content

Instantly share code, notes, and snippets.

View gicolek's full-sized avatar

Rafał Gicgier - Certified Codeable Expert Developer gicolek

View GitHub Profile
@gicolek
gicolek / gf_country_location.php
Last active February 24, 2025 13:39
Gravity Forms Country Geolocation
<?php
add_action( 'gform_after_submission', 'gf_set_country_field_value', 10, 2 );
/**
* Set the field value of the user country field
*
* @hook gform_after_submission
**/
function gf_set_country_field_value( $entry, $form ) {
$ip = rgar( $entry, 'ip' );
@gicolek
gicolek / contact_form_7_grid.css
Created July 1, 2024 21:31
Contact Form 7 Grid CSS
.c-grid {
display: grid;
grid-template-columns: 50% 50%;
gap: 10px;
}
.c-grid--three {
grid-template-columns: 33% 33% 33%;
}
@gicolek
gicolek / contact_form_7_grid.html
Created July 1, 2024 21:30
Contact Form 7 Grid CSS
<div class="c-grid">
<div>
<label> Name*
[text* your-name akismet:author autocomplete:name] </label>
</div>
<div>
<label> Email*
[email* your-email akismet:author_email autocomplete:email] </label>
</div>
</div>
@gicolek
gicolek / cf_7_styled_labe.css
Last active July 2, 2024 09:54
Contact Form 7 Label
.wpcf7-styled {
padding: 25px;
background: #fafafa;
border-radius: 25px;
}
.wpcf7-styled .wpcf7-radio input[type="radio"] {
display: none;
opacity: 0;
}
@gicolek
gicolek / contact_form_7_background_border.css
Created July 1, 2024 21:27
Contact Form 7 Background and Border
.wpcf7-styled {
padding: 25px;
background: #fafafa;
border-radius: 25px;
}
@gicolek
gicolek / contact_form_7.html
Created July 1, 2024 21:26
Contact Form 7 Headings
<h4> About You </h4>
<label> Name*
[text* your-name akismet:author autocomplete:name] </label>
@gicolek
gicolek / styled_cf7.html
Last active July 2, 2024 07:52
Styled Contact Form 7 CSS
<!-- Contact Form 7 Markup -->
<h4> About You </h4>
<div class="c-grid">
<div>
<label> Name*
[text* your-name akismet:author autocomplete:name] </label>
</div>
<div>
<label> Email*
[email* your-email akismet:author_email autocomplete:email] </label>
@gicolek
gicolek / gf.css
Last active June 11, 2024 13:14
gf.css
<style type='text/css">
#gform_fields_6 {
list-style-type: none;
margin: 25px 0 0 0;
padding: 0;
display: flex;
flex-direction: column;
}
#gform_fields_6 .gfield--type-radio {
@gicolek
gicolek / slider_full_code.php
Last active May 28, 2024 14:28
slider_full_code
<?php
add_shortcode( 'wp_doin_slider', 'wp_doin_slider_func' );
/**
* @hook wp_doin_slider_func
*/
function wp_doin_slider_func( $atts, $content = null ) {
?>
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function() {
@gicolek
gicolek / slider_shortcode.php
Last active May 28, 2024 13:56
Custom WordPress Slider Shortcode
<?php
add_shortcode( 'wp_doin_slider', 'wp_doin_slider_func' );
/**
* @hook slider_test
*/
function wp_doin_slider_func( $atts, $content = null ) {
$atts = shortcode_atts(
array(
'ids' => '1,2,3,4',