This file contains hidden or 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
.woo-payment-icons-container { | |
margin-top: 35px; | |
padding: 1em 1.5em 1.5em 1.5em; | |
} | |
.woo-payment-icons { | |
display: flex; | |
flex-wrap: wrap; | |
margin: 0 -5px; | |
} |
This file contains hidden or 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
-------------------- | |
1. Blocksy theme | |
-------------------- | |
- New: Social and share icons add nofollow/dofollow option | |
- New: WooCommerce gallery arrows color options | |
- New: WooCommerce sticky gallery option | |
- New: Turn on/off add to cart in WooCommerce archives | |
- New: Sticky last widget only | |
- Improvement: Defer JS files and load when appropriate (back to top, comments, share box) | |
- Improvement: Offload 40% of non-critical CSS (~40kb) |
This file contains hidden or 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 | |
$options = [ | |
blocksy_rand_md5() => [ | |
'label' => __( 'Gallery Options', 'blocksy' ), | |
'type' => 'ct-panel', | |
'inner-options' => [ | |
blocksy_rand_md5() => [ | |
'title' => __( 'General', 'blocksy' ), |
This file contains hidden or 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
#header .ct-container-fluid { | |
width: 100% !important; | |
} | |
#header .ct-container-fluid .widget_text { | |
margin: 0 !important; | |
width: 100% !important; | |
} |
This file contains hidden or 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
// Blocksy theme | |
- New: Archive cards featured image hover effect | |
- New: Conditionally load theme CSS files | |
- New: Header row - boxed container structure | |
- Improvement: Better support for filtering plugins | |
- Improvement: WooCommerce notice wrapper position when used in Elementor | |
- Improvement: Form drop down background color becomes unchangeable if type 2 is selected | |
- Improvement: Add `nofollow` attribute to social links | |
- Improvement: Some more accessibility improvements | |
- Improvement: Menu dropdown pointer events |
This file contains hidden or 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
.elementor-section:not(.ct-section-stretched) { | |
max-width: var(--block-max-width, var(--container-max-width)); | |
margin-left: auto; | |
margin-right: auto; | |
} |
This file contains hidden or 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
.qubely-row > .qubely-column { | |
min-height: inherit; | |
} | |
.qubely-row > .qubely-column > .qubely-column-inner { | |
min-height: inherit; | |
} |
This file contains hidden or 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
select, | |
textarea, | |
input[type='url'], | |
input[type='tel'], | |
input[type='text'], | |
input[type='date'], | |
input[type='email'], | |
input[type='number'], | |
input[type='search'], | |
input[type='password'], |
This file contains hidden or 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
-------------------- | |
1. Blocksy theme | |
-------------------- | |
- New: Implement dynamic JavaScript chunks | |
- New: Open account modal when clicking on Login to leave a reply | |
- New: Responsive options for boxed/wide layout | |
- New: WooCommerce support for WooCommerce Additional Variation Images | |
- New: Global button border option | |
- New: Scroll to top new icons | |
- New: Add scroll smooth behavior |
This file contains hidden or 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
// 1. Add this code in your functions.php file | |
add_shortcode('wpbsearch', 'get_search_form'); | |
// 2. Call the shortcode wherever you want like this: | |
[wpbsearch] |