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
// Hide SKUs | |
add_filter( 'wc_product_sku_enabled', '__return_false' ); |
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
// Background image | |
.logo-section { | |
min-height: 250px; | |
&::after { | |
content: ""; | |
background: url(keyboard-886462_1920.jpg) no-repeat center center; | |
@include background-cover; | |
opacity: 0.5; | |
top: 0; |
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
Tip: Remove toUpperCase() if you want to perform a case-sensitive search. | |
Tip: Change tr[i].getElementsByTagName('td')[0] to [1] if you want to search for "Country" (index 1) instead of "Name" (index 0). |
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
/* Menu Styling Override */ | |
@media (min-width: 992px) { | |
.navbar-nav { | |
float : none !important; | |
margin: 0 auto !important; | |
display: block !important; | |
text-align: center !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
01. Choose Users from the left-hand menu | |
02. Add a nickname if there isn't one already | |
03. Change 'Display name publicly as' dropdown to the desired name | |
04. Click 'Update User'. |
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
// Original author link | |
<?php the_author_posts_link(); ?> | |
// Author name without link | |
<?php the_author(); ?> |
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
01. Select layer >> Select 'Appearance' tab >> Click 'Mini burger' >> Add New Stroke | |
02. Effect >> Path >> Outline Object | |
03. Adjust stroke settings in Appearance tab |
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
Make a clipping mask | |
Object >> Clipping Mask >> Make |
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
<!-- Latest Post --> | |
<div class="row latest-post"> | |
<?php query_posts('showposts=1'); ?> | |
<?php | |
if ( have_posts() ) : | |
while ( have_posts() ) : | |
the_post(); | |
?> | |
<div class="col-md-6 news"> | |
<?php echo get_the_post_thumbnail(); ?> |
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 echo esc_url( get_template_directory() ); ?> |