Changeset 262095
- Timestamp:
- 03/05/2025 11:34:03 PM (9 months ago)
- Location:
- project-management/1.9
- Files:
-
- 1 added
- 13 edited
- 1 copied
-
. (copied) (copied from project-management/1.8)
-
archive.php (modified) (7 diffs)
-
core/includes/class-upgrade-pro.php (modified) (1 diff)
-
core/includes/customizer.php (modified) (4 diffs)
-
core/includes/tgm.php (modified) (1 diff)
-
core/includes/upgrade-pro.php (modified) (5 diffs)
-
css/customize-controls.css (modified) (1 diff)
-
index.php (modified) (7 diffs)
-
nothing-found.php (added)
-
readme.txt (modified) (2 diffs)
-
search.php (modified) (7 diffs)
-
style.css (modified) (1 diff)
-
woocommerce/archive-product.php (modified) (1 diff)
-
woocommerce/myaccount/form-login.php (modified) (2 diffs)
-
woocommerce/single-product.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
project-management/1.9/archive.php
r254642 r262095 35 35 else: 36 36 37 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );37 get_template_part( 'nothing-found' ); 38 38 39 39 endif; … … 64 64 else: 65 65 66 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );66 get_template_part( 'nothing-found' ); 67 67 68 68 endif; … … 90 90 else: 91 91 92 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );92 get_template_part( 'nothing-found' ); 93 93 94 94 endif; … … 122 122 else: 123 123 124 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );124 get_template_part( 'nothing-found' ); 125 125 126 126 endif; … … 147 147 else: 148 148 149 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );149 get_template_part( 'nothing-found' ); 150 150 151 151 endif; … … 170 170 else: 171 171 172 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );172 get_template_part( 'nothing-found' ); 173 173 174 174 endif; … … 201 201 else: 202 202 203 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );203 get_template_part( 'nothing-found' ); 204 204 205 205 endif; -
project-management/1.9/core/includes/class-upgrade-pro.php
r239734 r262095 75 75 'title' => esc_html__( 'Upgrade to Project Management PRO', 'project-management' ), 76 76 'description' => esc_html__( 'Unlock premium features: Multiple Sections, Color Pallete, Typography, Premium Support and much more...', 'project-management' ), 77 'pro_text' => esc_html__( 'View Project Management PRO', 'project-management' ), 78 'pro_url' => 'https://www.misbahwp.com/products/project-management-wordpress-theme', 77 'pro_text' => esc_html__( 'View Project Management PRO', 'project-management' ), 78 'pro_url' => esc_url( PROJECT_MANAGEMENT_BUY_NOW ), 79 'bundle_text' => esc_html__( 'Get All Themes In Single Pack', 'project-management' ), 80 'bundle_url' => esc_url( PROJECT_MANAGEMENT_THEME_BUNDLE ), 79 81 'priority' => 1, 80 82 ) -
project-management/1.9/core/includes/customizer.php
r258677 r262095 205 205 Kirki::add_panel( 'project_management_panel_id_3', array( 206 206 'priority' => 10, 207 'title' => esc_html__( '404 Settings ', 'project-management' ),207 'title' => esc_html__( '404 Settings / No Result', 'project-management' ), 208 208 ) ); 209 209 210 210 // 404 SECTION 211 211 Kirki::add_section( 'project_management_section_404', array( 212 'panel' => 'project_management_panel_id_3', 212 213 'title' => esc_html__( '404 Settings', 'project-management' ), 213 214 'priority' => 3, … … 225 226 Kirki::add_field( 'theme_config_id', [ 226 227 'type' => 'custom', 227 'settings' => 'project_management_ not_found_heading',228 'settings' => 'project_management_404_heading', 228 229 'section' => 'project_management_section_404', 229 'default' => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( ' Not FoundHeading', 'project-management' ) . '</h3>',230 'default' => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( '404 Heading', 'project-management' ) . '</h3>', 230 231 'priority' => 10, 231 232 ]); … … 241 242 Kirki::add_field( 'theme_config_id', [ 242 243 'type' => 'custom', 243 'settings' => 'project_management_ not_found_text',244 'settings' => 'project_management_404_text', 244 245 'section' => 'project_management_section_404', 245 'default' => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( ' Not FoundContent', 'project-management' ) . '</h3>',246 'default' => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( '404 Content', 'project-management' ) . '</h3>', 246 247 'priority' => 10, 247 248 ]); … … 254 255 'priority' => 10, 255 256 ] ); 257 258 // NO Result 259 Kirki::add_section( 'project_management_no_result', array( 260 'panel' => 'project_management_panel_id_3', 261 'title' => esc_html__( 'No Result Page Settings', 'project-management' ), 262 'priority' => 3, 263 ) ); 264 265 Kirki::add_field( 'theme_config_id', [ 266 'label' => '<span class="custom-label-class">' . esc_html__( 'INFORMATION ABOUT PREMIUM VERSION :-', 'project-management' ) . '</span>', 267 'default' => '<a class="premium_info_btn" target="_blank" href="' . esc_url( PROJECT_MANAGEMENT_BUY_NOW_1 ) . '">' . __( 'GO TO PREMIUM', 'project-management' ) . '</a>', 268 'type' => 'custom', 269 'section' => 'project_management_no_result', 270 'description' => '<div class="custom-description-class">' . __( '<p>1. One Click Demo Importer </p><p>2. Color Pallete Setup </p><p>3. Section Reordering Facility</p><p>4. For More Options kindly Go For Premium Version.</p>', 'project-management' ) . '</div>', 271 'priority' => 10, 272 ]); 273 274 Kirki::add_field( 'theme_config_id', [ 275 'type' => 'custom', 276 'settings' => 'project_management_not_found_heading', 277 'section' => 'project_management_no_result', 278 'default' => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( 'No Search Result Heading', 'project-management' ) . '</h3>', 279 'priority' => 10, 280 ]); 281 282 Kirki::add_field( 'theme_config_id', [ 283 'type' => 'text', 284 'settings' => 'project_management_no_results_page_title', 285 'section' => 'project_management_no_result', 286 'default' => esc_html__('404 Not Found', 'project-management'), 287 'priority' => 10, 288 ] ); 289 290 Kirki::add_field( 'theme_config_id', [ 291 'type' => 'custom', 292 'settings' => 'project_management_not_found_text', 293 'section' => 'project_management_no_result', 294 'default' => '<h3 style="color: #2271b1; padding:10px; background:#fff; margin:0; border-left: solid 5px #2271b1; ">' . __( 'No Search Result Content', 'project-management' ) . '</h3>', 295 'priority' => 10, 296 ]); 297 298 Kirki::add_field( 'theme_config_id', [ 299 'type' => 'text', 300 'settings' => 'project_management_no_results_page_content', 301 'section' => 'project_management_no_result', 302 'default' => esc_html__('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'project-management'), 303 'priority' => 10, 304 ] ); 305 256 306 257 307 // PANEL -
project-management/1.9/core/includes/tgm.php
r239734 r262095 14 14 'force_activation' => false, 15 15 ), 16 array( 17 'name' => __( 'Mosaic Gallery Advanced Gallery', 'project-management' ), 18 'slug' => 'mosaic-gallery-advanced-gallery', 19 'required' => false, 20 'force_activation' => false, 21 ), 16 22 ); 17 23 $config = array(); -
project-management/1.9/core/includes/upgrade-pro.php
r239734 r262095 27 27 28 28 /** 29 * Custom button text to output. 30 * 31 * @since 1.0.0 32 * @access public 33 * @var string 34 */ 35 public $bundle_text = ''; 36 37 /** 29 38 * Custom pro button URL. 30 39 * … … 34 43 */ 35 44 public $pro_url = ''; 45 46 /** 47 * Custom pro button URL. 48 * 49 * @since 1.0.0 50 * @access public 51 * @var string 52 */ 53 public $bundle_url = ''; 36 54 37 55 /** … … 48 66 $json['pro_url'] = esc_url( $this->pro_url ); 49 67 68 $json['bundle_text'] = $this->bundle_text; 69 $json['bundle_url'] = esc_url( $this->bundle_url ); 70 50 71 return $json; 51 72 } … … 60 81 protected function render_template() { ?> 61 82 <li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }} cannot-expand"> 62 63 83 <h3 class="accordion-section-title"> 64 84 {{ data.title }} … … 69 89 <a href="{{ data.pro_url }}" class="button button-primary" target="_blank">{{ data.pro_text }}</a> 70 90 <# } #> 91 92 <# if ( data.bundle_text && data.bundle_url ) { #> 93 <a href="{{ data.bundle_url }}" class="button button-primary" target="_blank">{{ data.bundle_text }}</a> 94 <# } #> 71 95 72 96 </h3> 73 74 97 </li> 75 98 <?php } -
project-management/1.9/css/customize-controls.css
r254642 r262095 69 69 display: none; 70 70 } 71 a.button.button-primary{ 72 margin: 4px; 73 } -
project-management/1.9/index.php
r258677 r262095 34 34 else: 35 35 36 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );36 get_template_part( 'nothing-found' ); 37 37 38 38 endif; … … 63 63 else: 64 64 65 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );65 get_template_part( 'nothing-found' ); 66 66 67 67 endif; … … 89 89 else: 90 90 91 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );91 get_template_part( 'nothing-found' ); 92 92 93 93 endif; … … 121 121 else: 122 122 123 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );123 get_template_part( 'nothing-found' ); 124 124 125 125 endif; … … 146 146 else: 147 147 148 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );148 get_template_part( 'nothing-found' ); 149 149 150 150 endif; … … 169 169 else: 170 170 171 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );171 get_template_part( 'nothing-found' ); 172 172 173 173 endif; … … 200 200 else: 201 201 202 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );202 get_template_part( 'nothing-found' ); 203 203 204 204 endif; -
project-management/1.9/readme.txt
r258677 r262095 3 3 Tags: news, portfolio, education, 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, featured-image-header, editor-style, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready 4 4 Requires at least: 5.0 5 Stable tag: 1. 85 Stable tag: 1.9 6 6 Requires PHP: 7.2 7 7 Tested up to: 6.7 … … 84 84 * Updated customizer settings. 85 85 86 = 1.9 = March - 04 - 2025 87 88 * Added no result settings. 89 * Added nothing-found.php file. 90 * Added bundle button in customizer. 91 * recommend mosaic plugin. 92 * Updated woocommerce template. 93 * Do proper escaping. 94 86 95 == Resources == 87 96 -
project-management/1.9/search.php
r254642 r262095 36 36 else: 37 37 38 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );38 get_template_part( 'nothing-found' ); 39 39 40 40 endif; … … 66 66 else: 67 67 68 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );68 get_template_part( 'nothing-found' ); 69 69 70 70 endif; … … 93 93 else: 94 94 95 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );95 get_template_part( 'nothing-found' ); 96 96 97 97 endif; … … 126 126 else: 127 127 128 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );128 get_template_part( 'nothing-found' ); 129 129 130 130 endif; … … 153 153 else: 154 154 155 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );155 get_template_part( 'nothing-found' ); 156 156 157 157 endif; … … 178 178 else: 179 179 180 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );180 get_template_part( 'nothing-found' ); 181 181 182 182 endif; … … 210 210 else: 211 211 212 esc_html_e( 'Sorry, no post found on this archive.', 'project-management' );212 get_template_part( 'nothing-found' ); 213 213 214 214 endif; -
project-management/1.9/style.css
r258677 r262095 5 5 Theme URI: https://www.misbahwp.com/products/free-project-management-wordpress-theme 6 6 Author URI: https://www.misbahwp.com/ 7 Version: 1. 87 Version: 1.9 8 8 Requires PHP: 7.2 9 9 Tested up to: 6.7 -
project-management/1.9/woocommerce/archive-product.php
r239734 r262095 26 26 </div> 27 27 <div class="header-area"> 28 <h1 class="post-title feature-header-title"><?php e cho(esc_html_e('Archive Product Page','project-management')); ?></h1>28 <h1 class="post-title feature-header-title"><?php esc_html_e('Archive Product Page','project-management'); ?></h1> 29 29 <?php if ( get_theme_mod('project_management_breadcrumb_enable',true) ) : ?> 30 30 <div class="bread_crumb text-center"> -
project-management/1.9/woocommerce/myaccount/form-login.php
r244561 r262095 13 13 * @see https://woocommerce.com/document/template-structure/ 14 14 * @package WooCommerce\Templates 15 * @version 9. 2.015 * @version 9.7.0 16 16 */ 17 17 … … 32 32 <h2><?php esc_html_e( 'Login', 'project-management' ); ?></h2> 33 33 34 <form class="woocommerce-form woocommerce-form-login login" method="post" >34 <form class="woocommerce-form woocommerce-form-login login" method="post" novalidate> 35 35 36 36 <?php do_action( 'woocommerce_login_form_start' ); ?> -
project-management/1.9/woocommerce/single-product.php
r257886 r262095 29 29 </div> 30 30 <div class="header-area"> 31 <h1 class="post-title feature-header-title"><?php e cho get_the_title(); ?></h1>31 <h1 class="post-title feature-header-title"><?php esc_html_e('Single Product Page','project-management'); ?></h1> 32 32 <?php if ( get_theme_mod('project_management_breadcrumb_enable',true) ) : ?> 33 33 <div class="bread_crumb text-center">
Note: See TracChangeset
for help on using the changeset viewer.