This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open Local by Flywheel | |
Right-click on the site and go to “Open Site SSH” | |
Enter /sbin/ip route|awk '/default/ { print $3 }' and copy the IP | |
Type nano /etc/hosts and add a new line at the bottom for the site you’re trying to access. It should look something like 172.17.0.1 test-1.dev. Use the IP from above. | |
Test the connection. Please note that the certificate is still self-signed so you’ll need to put it into insecure mode. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pricing-table-style-8 .fl-pricing-table .fl-pricing-table-column { | |
border-radius: 20px; | |
} | |
.pricing-table-style-8 .fl-pricing-table .fl-pricing-table-inner-wrap { | |
padding: 20px 40px; | |
border: 0 !important; | |
box-shadow: 0px 1px 17px #4090b9; | |
border-radius: 20px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Custom read more link | |
add_filter( 'excerpt_more', 'op_read_more_link' ); | |
add_filter( 'get_the_content_more_link', 'op_read_more_link' ); | |
add_filter( 'the_content_more_link', 'op_read_more_link' ); | |
function op_read_more_link() { | |
return '... <a class="more-link" href="' . get_permalink() . '" rel="nofollow">Continue Reading »</a>'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$auctionend=''; | |
$args = array( | |
'post_type' => 'auction', | |
'meta_query' => array( | |
array( | |
'key' => 'connect_property_single', | |
'value' => '"'. get_the_ID() .'"', | |
'compare' => 'LIKE' | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pricing-table-style-7 .fl-pricing-table-column { | |
background: transparent !important; | |
font-weight: 100; | |
} | |
.pricing-table-style-7 .fl-pricing-table .fl-pricing-table-inner-wrap { | |
padding: 20px 40px; | |
background-color: transparent !important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pricing-table-style-6 .fl-pricing-table .fl-pricing-table-inner-wrap { | |
border-color: #1e1e1e !important; | |
padding: 20px 0; | |
} | |
.pricing-table-style-6 .fl-pricing-table .fl-pricing-table-column h2 { | |
color: #1e1e1e; | |
} | |
.pricing-table-style-6 .fl-pricing-table .fl-pricing-table-column .fl-pricing-table-price { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pricing-table-style-5 .fl-pricing-table .fl-pricing-table-column { | |
border-radius: 10px; | |
} | |
.pricing-table-style-5 .fl-pricing-table .fl-pricing-table-column .fl-pricing-table-inner-wrap { | |
padding: 30px 0; | |
border: 0 !important; | |
background: rgba(85,236,206,1); | |
background: -moz-linear-gradient(top, rgba(85,236,206,1) 0%, rgba(85,236,206,1) 21%, rgba(91,202,254,1) 100%); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pricing-table-style-4 .fl-pricing-table .fl-pricing-table-column .fl-pricing-table-inner-wrap { | |
border: 0 !important; | |
} | |
.pricing-table-style-4 .fl-pricing-table .fl-pricing-table-col-3:nth-child(2) .fl-pricing-table-column { | |
padding: 30px 0; | |
box-shadow: 1px 3px 8px #1868b7; | |
position: relative; | |
z-index: 1; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.pricing-table-style-3 .fl-pricing-table .fl-pricing-table-column .fl-pricing-table-inner-wrap { | |
border: 0 !important; | |
border-top: 4px solid #1e1e1e !important; | |
} | |
.pricing-table-style-3 .fl-pricing-table .fl-pricing-table-col-3:nth-child(2) .fl-pricing-table-column .fl-pricing-table-inner-wrap { | |
border-top: 4px solid #fff32d !important; | |
} | |
.pricing-table-style-3 .fl-pricing-table .fl-pricing-table-column .fl-pricing-table-price { |
NewerOlder