Skip to content

Commit

Permalink
release: 2.10.25
Browse files Browse the repository at this point in the history
- Fix PHP compatibility issues
- Codebase updates
  • Loading branch information
HardeepAsrani authored Jun 15, 2023
2 parents a88e1d7 + 241c92c commit b126ff5
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 16 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"require": {
"codeinwp/full-width-page-templates": "master",
"codeinwp/themeisle-sdk": "^3.2",
"codeinwp/themeisle-sdk": "^3.3",
"codeinwp/elementor-extra-widgets": "dev-master",
"codeinwp/themeisle-content-forms": "dev-master"
},
Expand Down
21 changes: 7 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions obfx_modules/mystock-import/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ class Mystock_Import_OBFX_Module extends Orbit_Fox_Module_Abstract {
*/
const CACHE_DAYS = 7;

/**
* Media strings ( used when the gutenberg editor is disabled ).
*
* @var string
*/
private $strings = array();


/**
* Mystock_Import_OBFX_Module constructor.
Expand Down
3 changes: 2 additions & 1 deletion obfx_modules/template-directory/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ public function add_template_directory_submenu() {
esc_html__( 'Template Directory', 'themeisle-companion' ),
'manage_options',
'obfx_template_dir',
array( $this, 'render_template_directory' )
array( $this, 'render_template_directory' ),
1
);
}

Expand Down
9 changes: 9 additions & 0 deletions themeisle-companion.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,15 @@ function() {
return array( 'otter' );
}
);
add_filter(
'themeisle_companion_about_us_metadata',
function() {
return array(
'logo' => esc_url( OBFX_URL . 'images/orbit-fox.png' ),
'location' => 'obfx_companion',
);
}
);
}

require 'class-autoloader.php';
Expand Down

0 comments on commit b126ff5

Please sign in to comment.