Home Forums WoodMart support forum Move the below add to cart elements

Move the below add to cart elements

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #226092

    addy
    Participant

    Hello,

    Greetings!

    When I turn ON the “below add to cart” feature, then the content of that part appears before the “Size guide row”

    This makes it difficult for customers to fins a size guide easily.

    I want the entire row to be above the “below add to cart” element. In this case, it is the Payment Image.

    Please see the image attached for better understanding.

    Hoping for a solution

    Attachments:
    You must be logged in to view attached files.
    #226137

    Hello,

    HTML structure does not allow solving it by custom CSS. Such modification requires complicated code customization which is not covered by our support.

    Please consider adding the content by means of content in Above Add to cart or we can increase a gap between the content and icons. Please provide page URL I will provide custom CSS.

    Best Regards

    #226165

    addy
    Participant

    You could have provided me the HTML code snippet for the child theme.

    I already have received such kind of support from your theme 2 years ago by different agents. For example –
    1) https://xtemos.com/forums/topic/custom-style-fix/page/2/
    2) https://xtemos.com/forums/topic/custom-style-fix/page/2/#post-86248
    3)https://xtemos.com/forums/topic/custom-style-fix/page/2/#post-86342
    4) https://xtemos.com/forums/topic/shopping-cart-error/#post-75641

    I have been provided with HTML code like these below from woodmart support before:

    add_action('init', 'woodmart_child_hooks', 300);
    
    function woodmart_child_hooks() {
    	remove_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 38 );
    	add_action( 'woocommerce_single_product_summary', 'woodmart_sguide_display', 31 );
    
    }

    Proof: https://xtemos.com/forums/topic/custom-style-fix/page/2/#post-86342

    But it seems that now the theme is popular, you no longer interested to help your customers.

    Being a loyal customer for 2 years, I receive such kind of unhelpful answers. Disappointing!

    If we try to prove, then every problem is out of scope. What matters is the willingness to help or not.

    1 month ago also, I received a similar reply on my ticket with no willingness to help – https://xtemos.com/forums/topic/adding-size-guide-and-info-popups-over-variations/

    I use to love woodmart but this kind of behaviour is ringing the bell in my mind and is not healthy for a website with long-term plan with woodmart. I mean sticking to your them, renewing support every 6 months and then not receiving any willingness to help!!

    I still hope for the better support.

    #226298

    Hello,

    Please add this code:

    add_action(
       'wp',
       function() {
          remove_action( 'woocommerce_single_product_summary', 'woodmart_after_add_to_cart_area', 31 );
          add_action( 'woocommerce_single_product_summary', 'woodmart_after_add_to_cart_area', 35 );
       }
    );

    Best Regards

    #226400

    addy
    Participant

    Thanks but it worked half of it.

    When I applied your code, “compare” and add to wishlist were moved above but size guide was left behind.

    Please check the link.
    How it should look – Screenshot attached.

    Attachments:
    You must be logged in to view attached files.
    #226447

    Hello,

    Please replace the code with this one:

    add_action(
       'wp',
       function() {
          remove_action( 'woocommerce_single_product_summary', 'woodmart_after_add_to_cart_area', 31 );
          add_action( 'woocommerce_single_product_summary', 'woodmart_after_add_to_cart_area', 39 );
       }
    );

    Best Regards

    #226521

    addy
    Participant

    Thanks. It worked. I am happy you finally helped. Hope your day goes as per your expectations.

    #226535

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 8 posts - 1 through 8 (of 8 total)