Changeset 276570
- Timestamp:
- 06/20/2025 04:28:11 AM (5 months ago)
- Location:
- influencer-marketing/2.3
- Files:
-
- 1 deleted
- 4 edited
- 1 copied
-
. (copied) (copied from influencer-marketing/2.2)
-
core/includes/admin/class-mi-admin.php (modified) (1 diff)
-
core/includes/admin/metabox (deleted)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (1 diff)
-
woocommerce/myaccount/form-login.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
influencer-marketing/2.3/core/includes/admin/class-mi-admin.php
r275347 r276570 73 73 */ 74 74 require_once INFLUENCER_MARKETING_THEME_PATH . '/core/includes/admin/class-mi-dashboard.php'; // phpcs:ignore 75 76 /**77 * Include meta boxes.78 */79 require_once INFLUENCER_MARKETING_THEME_PATH . '/core/includes/admin/metabox/class-mi-meta-boxes.php'; // phpcs:ignore80 75 81 76 } -
influencer-marketing/2.3/readme.txt
r275347 r276570 3 3 Tags: portfolio, photography, entertainment, wide-blocks, one-column, two-columns, three-columns, four-columns, right-sidebar, left-sidebar, grid-layout, custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, editor-style, post-formats, theme-options, threaded-comments, sticky-post, translation-ready 4 4 Requires at least: 5.0 5 Stable tag: 2. 25 Stable tag: 2.3 6 6 Requires PHP: 7.2 7 7 Tested up to: 6.8 … … 105 105 * Changes in notice function. 106 106 107 = 2.3 = June - 17 - 2025 108 109 * Resolve error in getstart. 110 * Updated woocommerce template form-login.php. 111 107 112 == Resources == 108 113 -
influencer-marketing/2.3/style.css
r275347 r276570 5 5 Theme URI: https://www.misbahwp.com/products/free-influencer-wordpress-theme 6 6 Author URI: https://www.misbahwp.com/ 7 Version: 2. 27 Version: 2.3 8 8 Requires PHP: 7.2 9 9 Tested up to: 6.8 -
influencer-marketing/2.3/woocommerce/myaccount/form-login.php
r262214 r276570 13 13 * @see https://woocommerce.com/document/template-structure/ 14 14 * @package WooCommerce\Templates 15 * @version 9. 7.015 * @version 9.9.0 16 16 */ 17 17 … … 38 38 <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> 39 39 <label for="username"><?php esc_html_e( 'Username or email address', 'influencer-marketing' ); ?> <span class="required" aria-hidden="true">*</span><span class="screen-reader-text"><?php esc_html_e( 'Required', 'influencer-marketing' ); ?></span></label> 40 <input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="username" autocomplete="username" value="<?php echo ( ! empty( $_POST['username'] ) ) ? esc_attr( wp_unslash( $_POST['username'] ) ) : ''; ?>" required aria-required="true" /><?php // @codingStandardsIgnoreLine ?>40 <input type="text" class="woocommerce-Input woocommerce-Input--text input-text" name="username" id="username" autocomplete="username" value="<?php echo ( ! empty( $_POST['username'] ) && is_string( $_POST['username'] ) ) ? esc_attr( wp_unslash( $_POST['username'] ) ) : ''; ?>" required aria-required="true" /><?php // @codingStandardsIgnoreLine ?> 41 41 </p> 42 42 <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide">
Note: See TracChangeset
for help on using the changeset viewer.