Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 6 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,37 +10,26 @@
"php": ">=8.0",
"composer/installers": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.0",
"roave/security-advisories": "dev-master"
},
"repositories":[{
"type":"composer",
"url":"https://wpackagist.org"
}],
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10",
"wp-coding-standards/wpcs": "^3.1"
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "^2.1.0"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist"
"format": "phpcbf --standard=.phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=.phpcs.xml.dist"
}
}
215 changes: 214 additions & 1 deletion composer.lock

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

3 changes: 1 addition & 2 deletions includes/classes/class-frontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class Frontend {
* Contructor
*/
public function __construct() {

}

/**
Expand Down Expand Up @@ -52,7 +51,7 @@ public function init() {
* @return void
*/
public function enqueue_styles() {
//wp_get_theme()->get( 'Version' )
// wp_get_theme()->get( 'Version' )
wp_enqueue_style( 'lsxd-styles', get_template_directory_uri() . '/style.css', array(), time() );
}

Expand Down
2 changes: 1 addition & 1 deletion includes/classes/class-images.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct() {
public function init() {
add_action( 'after_setup_theme', array( $this, 'register_image_sizes' ), 10 );
add_filter( 'image_size_names_choose', array( $this, 'register_media_editor_sizes' ), 10, 1 );
/** add_filter( 'render_block_data', array( $this, 'render_post_image_data' ), 10, 3 ); */
/** add_filter( 'render_block_data', array( $this, 'render_post_image_data' ), 10, 3 ); */
}

/**
Expand Down
2 changes: 1 addition & 1 deletion includes/classes/class-setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function init() {
add_action( 'after_setup_theme', array( $this, 'theme_setup' ) );
add_action( 'admin_init', array( $this, 'woo_asset_files' ) );
}

/**
* Adds the old menu options back in for site transition
*
Expand Down
3 changes: 0 additions & 3 deletions includes/classes/vendors/class-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ private function get_assets() {
'path' => get_template_directory() . '/assets/css/woocommerce/checkout-totals-block.css',
),




);
return $this->assets;
}
Expand Down
2 changes: 1 addition & 1 deletion includes/patterns/cards/posts-style1-cards.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Posts Style 1 Cards
* Posts Style 1 Cards
*
* @package lsx-design
*/
Expand Down
2 changes: 1 addition & 1 deletion includes/patterns/cards/woo-style2-cards.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Woo Style 2 Cards
* Woo Style 2 Cards
*
* @package lsx-design
*/
Expand Down
2 changes: 1 addition & 1 deletion includes/patterns/cards/woo-style3-cards.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Woo Style 3 Cards
* Woo Style 3 Cards
*
* @package lsx-design
*/
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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

Loading