Skip to content
View UraraReika's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report UraraReika

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
UraraReika/README.md

Hi there 👋

This is the place where I opensource stuff and break things.

  • 🔭 I’m currently working on something cool;
  • 🌱 I’m currently learning Vue.js.

Anurag's github stats Top Langs

Languages and Tools:

HTML5

CSS3

Sass

JavaScript

JavaScript

Git

GitHub

Terminal


Connect with me:

UraraReika | Instagram UraraReika | Twitter UraraReika | LinkedIn UraraReika | Instagram



Show your support buy me a coffee.

Pinned

  1. Crocoblock/suggestions Crocoblock/suggestions Public

    The suggestions for CrocoBlock project

    190 79

  2. Adding AJAX support for adding to cart Adding AJAX support for adding to cart
    1
    <?php
    2
     	add_filter( 'jet-woo-builder/template-functions/product-add-to-cart-settings', 'wvs_pro_archive_variation_button_args', 999, 2 ); 
    3
    	
    4
    	function wvs_pro_archive_variation_button_args( $args, $product ) { 
    5
    
                  
  3. Add new macros to default jet-woo-bu... Add new macros to default jet-woo-builder macros list and assign a callback functions.
    1
    <?php
    2
    	add_filter( 'jet-woo-builder/macros/macros-list', function( $macros ) {
    3
    		$macros['percentage_sale_max'] = 'get_percentage_sale_max';
    4
    		$macros['percentage_sale_min'] = 'get_percentage_sale_min';
    5
    
                  
  4. Replace default Elementor image plac... Replace default Elementor image placeholder to Woocommerce Placeholder image
    1
    <?php
    2
    	add_filter( 'jet-woo-builder/template-functions/placeholder-thumbnail-src', '__your_prefix_get_wc_placeholder_image' );
    3
    
                  
    4
    	function __your_prefix_get_wc_placeholder_image() {
    5
    			$placeholder = wc_placeholder_img_src( 'woocommerce_thumbnail' );
  5. Get custom taxonomy image and displa... Get custom taxonomy image and display it, as tile background of Jet Woo Taxonomy Tiles Widget
    1
    <?php
    2
    	add_filter( 'jet-woo-builder/jet-woo-taxonomy-tiles/tax_thumbnail', '__your_prefix_display_taxonomy_thumbnail', 10, 2 );
    3
    
                  
    4
    	function __your_prefix_display_taxonomy_thumbnail( $image_key, $tax ) {
    5
    		if ( $tax->taxonomy === 'category' ) {
  6. Add whatever you want option to swip... Add whatever you want option to swiper slider.
    1
    <?php
    2
     	add_filter( 'jet-woo-builder/tools/carousel/options', '__your_prefix_add_carousel_options' );
    3
    
                  
    4
    	function __your_prefix_add_carousel_options( $options ) {
    5
    		$options['freeMode'] = true;