Skip to content
View manuelhudec's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report manuelhudec

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
manuelhudec/README.md

Manuel Hudec GitHub Profile Banner

About

I work on structured e-commerce operations, ERP-related processes, product data workflows and documentation systems.

My focus is turning operational knowledge into reusable workflows, standards and workspace structures.

Focus

  • E-Commerce Operations and multi-channel workflows
  • JTL-Wawi, JTL-Workflows and JTL-Ameise
  • ERP-related process automation
  • Product data, variants, attributes and import/export processes
  • WordPress, WooCommerce and Blocksy
  • GitHub-based documentation and workspace standards

Current Work

I am currently building reusable structures around:

  • workspace and documentation standards
  • GitHub-based knowledge and project systems
  • an internal Operations Workspace Project for service insights, client workspaces and process optimization

Links

Pinned Loading

  1. Blocksy Theme - Preload Fonts Blocksy Theme - Preload Fonts
    1
    add_action( 'wp_head', function () {
    2
    	?>
    3
    
                  
    4
    <link rel="preload" href="/wp-content/uploads/blocksy/local-google-fonts/s/opensans/v20/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2" as="font" type="font/woff2" crossorigin>
    5
    <link rel="preload" href="/wp-content/uploads/blocksy/local-google-fonts/s/opensans/v20/mem5YaGs126MiZpBA-UNirkOUuhpKKSTjw.woff2" as="font" type="font/woff2" crossorigin>
  2. Blocksy Blog or CPT live jQuery filt... Blocksy Blog or CPT live jQuery filter (show only subcategories)
    1
    <script>
    2
    jQuery(document).ready(function($) {
    3
      $('.ct-filter').on( 'click', function(event){	
    4
      var $type = $(this).data("filter");
    5
      if($type == "all"){
  3. WooCommerce custom tabs per product WooCommerce custom tabs per product
    1
    // Use the following code and paste it into the Code Snippets plugin or functions.php of your child theme.
    2
    // After that you will find a new meta box in the WooCommerce products. 
    3
    // Everything you enter there will appear in the single product as a new tab.
    4
    
                  
    5
    // In line 17 you can give your meta box a title
  4. WooCommerce - Show out of stock prod... WooCommerce - Show out of stock products in archives last
    1
    add_action( 'woocommerce_product_query', 'out_of_stock_last', 999 );
    2
     
    3
    function out_of_stock_last( $query ) {
    4
        if ( is_admin() ) return;
    5
        $query->set( 'meta_key', '_stock_status' );
  5. WooCommerce - Customer account: Show... WooCommerce - Customer account: Show recently purchased products
    1
    add_filter ( 'woocommerce_account_menu_items', 'misha_purchased_products_link', 40 );
    2
    add_action( 'init', 'misha_add_products_endpoint' );
    3
    add_action( 'woocommerce_account_purchased-products_endpoint', 'misha_populate_products_page' );
    4
     
    5
    // here we hook the My Account menu links and add our custom one
  6. WooCommerce - Remove Tabs in single ... WooCommerce - Remove Tabs in single product
    1
    add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 );
    2
    
                  
    3
    function woo_remove_product_tabs( $tabs ) {
    4
    
                  
    5
      //  unset( $tabs['description'] );      			// Remove the description tab