Forum Replies Created

Viewing 15 posts - 3,391 through 3,405 (of 3,591 total)
  • Author
    Posts
  • in reply to: Some issues to consult for My New Purchased Theme #3351

    Hi,

    Our theme don’t support this issue but We can custom charge this issue for you.

    in reply to: Header problem #3347

    Ok, I resolved this issue, please recheck

    in reply to: Edit text “add to cart” button #3344

    Please use this code:

    add_filter('woocommerce_product_add_to_cart_text', 'piizalian_woocommerce_product_add_to_cart_text');
    function piizalian_woocommerce_product_add_to_cart_text(){
    	return 'Voir le produit';
    }

    Change ‘Voir le produit’ = ‘your-text’;

    in reply to: Change “back to store” link #3340

    Hi,

    Please use this php code:

    
    add_filter('woocommerce_return_to_shop_redirect','piizalian_return_to_shop_redirect');
    function piizalian_return_to_shop_redirect(){
    $link_redirect = 'your-link';
    return $link_redirect;
    }
    in reply to: Problem with article display + Question #3337

    Hi,

    I resolved all issues, please recheck.

    in reply to: Installing thema #3334

    I checked on firefox again and it still works normally:

    https://prnt.sc/1h4fyev
    https://prnt.sc/1h4gejv

    You can use Chrome and click edit Header or footer: https://prnt.sc/1h4gxix

    in reply to: Edit article link #3333

    OK, you are welcome!

    in reply to: Edit article link #3331

    I resolved this issue, please recheck.

    in reply to: Edit article link #3330

    HI,

    Please don’t edit your site, I’m checking your site.

    in reply to: Disable suggested items #3329

    I fixed this issue, please check

    in reply to: Disable suggested items #3323

    Please send link login for me, I don’t find it.

    in reply to: Text “Read more” buttons #3322

    Hi again,

    #1. No, our theme support WPML plugins. You need to install the full set of WPML plugins and install the steps according to the instructions, then translate pages, posts, products, categoríes…

    #2. Updating wordpress does not lose data, but WordPress version 5.8 is having some problems, so it is not recommended to update WordPress at this time.

    in reply to: Edit article link #3321

    Please add this php code to file functions.php ( child-theme):

    remove_action('woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open');
    add_action('woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_link_open', 15);
    add_action('woocommerce_before_shop_loop_item', 'woocommerce_add_aff_link_open', 10);
    add_action('woocommerce_before_shop_loop_item_title', 'woocommerce_add_aff_link_close', 10);
    
    function woocommerce_add_aff_link_open(){
        $product = wc_get_product(get_the_ID());
    
        if( $product->is_type( 'external' ) ) {
            echo '<a target="_blank" href="' . $product->get_product_url() . '" class="">';
        }
    }
    
    function woocommerce_add_aff_link_close(){
        $product = wc_get_product(get_the_ID());
    
        if( $product->is_type( 'external' ) ) {
            echo '</a>';
        }
    }
    in reply to: Text “Read more” buttons #3316

    Hi you,

    I installed Loco translate plugin, please go to Translate text on theme, search your text and add translate

    in reply to: Installing thema #3315

    Hi,

    I checked your site and it still works normally: https://prnt.sc/1gofx41

Viewing 15 posts - 3,391 through 3,405 (of 3,591 total)