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
| I found that using `<hr class="wp-header-end">` works reliably, and the admin notice always appears directly below it. |
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
| [data-builder-mode=custom] { | |
| --builder-bg: #1a1a1a; | |
| --builder-bg-2: #222222; | |
| --builder-bg-3: #2c2c2c; | |
| --builder-bg-accent: #33334d; | |
| --builder-color: #f0f0f0; | |
| --builder-color-description: #bbbbbb; | |
| --builder-color-accent: #6c63ff; | |
| --builder-color-accent-inverse: #ffffff; |
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
| # How to validate two fields that depend on each other with Yup | |
| ```js | |
| const schema = yup.object().shape({ | |
| propCategory: yup.object().shape({ | |
| label: yup.string().required(), | |
| value: yup.string().required(), | |
| icon: yup.string().required(), | |
| }), |
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 | |
| // Get the current category ID | |
| $category_id = get_queried_object_id(); | |
| $term = get_queried_object(); | |
| $repeaterField = get_field('category_faq', 'product_cat_' . $category_id); | |
| // Check if repeater field has values | |
| if ($repeaterField) : | |
| echo '<ul class="accordion accordionjs">'; | |
| $counter = 1; |
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 | |
| // Get the current tag | |
| $tag = get_queried_object(); | |
| // Check if the tag exists | |
| if ($tag) { | |
| // Get ACF repeater field values for the current tag | |
| $repeaterField = get_field('product_tag_faq', 'product_tag_' . $tag->term_id); |
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
| { | |
| "basics": { | |
| "name": "John Doe", | |
| "label": "Programmer", | |
| "image": "", | |
| "email": "john@gmail.com", | |
| "phone": "(912) 555-4321", | |
| "url": "https://johndoe.com", | |
| "summary": "A summary of John Doeβ¦", | |
| "location": { |
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 name="city" id="city"> | |
| <option value="Abbottabad">Abbottabad</option> | |
| <option value="Adezai">Adezai</option> | |
| <option value="Ahmadpur East">Ahmadpur East</option> | |
| <option value="Ahmed Nager Chatha">Ahmed Nager Chatha</option> | |
| <option value="Akora Khattak">Akora Khattak</option> | |
| <option value="Ali Bandar">Ali Bandar</option> | |
| <option value="Ali Khan Abad">Ali Khan Abad</option> | |
| <option value="Alipur">Alipur</option> | |
| <option value="Alpuri">Alpuri</option> |
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: Install Java JDK 8 | |
| 2: Install Ionic 4 globaly through NPM | |
| 3: Install Gradle | |
| Installing Gradle manually | |
| https://gradle.org/next-steps/?version=5.5&format=bin | |
| Step 1. Download the latest Gradle distribution | |
| Step 2. Unpack the distribution |
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 | |
| /** | |
| * A custom WordPress comment walker class to implement the Bootstrap 3 Media object in wordpress comment list. | |
| * | |
| * @package wp-bootstrap-5-comment-walker | |
| * @version 1.0.0 | |
| * @author Ayoub Khan <ayoubkhan558@hotmail.com> | |
| * @license MIT |
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
| Animate.css, wow.js (aoa.js), | |
| -- # Faviorite Fonts | |
| Roboto, Raleway, | |
| "Segoe UI","Helvetica Neue","Helvetica",Arial,sans-serif | |
| -- # Plugins | |
| // Animation Libraries |
NewerOlder