Make it compatible with auction plugin (auctions for woocommerce 2.6)

This topic has 19 replies, 2 voices, and was last updated 9 months ago ago by Rose Tyler

  • Avatar: ljimenez
    ljimenez
    Participant
    August 2, 2023 at 13:57

    Hi the template doesnt work with this plugin, i just bought your theme: this is my url:
    https://staging.vgaraje.com/?product=olufsen-17-wireless-bluetooth-portable-speaker

    please help me it doesnt work with single product builder activated.

    18 Answers
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 2, 2023 at 14:15

    Hello, Ljimenez,

    Thank you for contacting us and for using XStore.

    1/ Does it works when our single product builder is deactivated?

    2/ Does it works when not our theme but the default WooCommerce theme – Storefront is activated?

    3/ Provide URL of the plugin site.

    4/ Describe in more detail how exactly the plugin should work and the problem.

    Kind Regards,
    8theme team

    Avatar: ljimenez
    ljimenez
    Participant
    August 2, 2023 at 14:24

    1. yes works like 80% without single product builder
    2. yes works with default wordpress template
    3. im trying two https://woocommerce.com/es-es/products/auctions-for-woocommerce/ and https://codecanyon.net/item/woocommerce-simple-auctions-wordpress-auctions/6811382 they both wont work
    4. check images

    img1 when single builder is activated: https://ibb.co/MgcKZdq
    img2 when single builder is disabled: https://ibb.co/JrB8H46

    both with woocommcerce oficial plugin

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 2, 2023 at 14:27

    Hello, Ljimenez,

    Thank you for your response.

    Please provide temporary wp-admin and FTP access, we will check what can be done to help you.

    To provide wp-admin access, you can create a new user account with administrator role via the Dashboard, and provide us with the username and password via the Private Content area.

    To create FTP access (FTP host, FTP username, FTP password, FTP port, FTP encryption) , please contact your hosting provider for assistance.

    Please note that we do not give a guarantee for full theme compatibility with all existing 3rd party plugins. Sometimes, not always, you need additionally customize the theme or plugin to make them work together. Unfortunately, it’s not possible for the author to make the theme compatible with all the existing plugins and additional customization is outside the scope of our basic support.

    Kind Regards,
    8theme team

    Avatar: ljimenez
    ljimenez
    Participant
    August 2, 2023 at 14:30

    attached both

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 2, 2023 at 15:07

    Hello, Ljimenez,

    Thank you for your response.

    We will have another specialist review your inquiry in greater detail and will be in touch with you.
    Please be patient and do not change access.

    Kind Regards,
    8theme team

    Avatar: ljimenez
    ljimenez
    Participant
    August 2, 2023 at 15:17

    thank you

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 2, 2023 at 16:27

    Hello, Ljimenez,

    1/ We created child-theme for you
    2/ We added next code snippet in your child-theme/functions.php

    add_action('init', function() {
        if (class_exists('Auctions_For_Woocommerce')) {
            foreach (
                array(
                    'auctions_for_woocommerce_add_to_cart' => 30,
                    'auctions_for_woocommerce_ajax_conteiner_start' => 1,
                    'auctions_for_woocommerce_condition' => 20,
                    'auctions_for_woocommerce_countdown' => 24,
                    'auctions_for_woocommerce_dates' => 24,
                    'auctions_for_woocommerce_reserve' => 25,
                    'auctions_for_woocommerce_sealed' => 25,
                    'auctions_for_woocommerce_max_bid' => 25,
                    'auctions_for_woocommerce_bid_form' => 25,
                    'auctions_for_woocommerce_ajax_conteiner_end' => 50,
                ) as $key => $priority) {
                if ( !function_exists($key) ) continue;
                add_action('etheme_woocommerce_template_single_add_to_cart', $key, $priority);
            }
            if ( is_user_logged_in() ) {
                add_action( 'etheme_woocommerce_template_single_add_to_cart', 'auctions_for_woocommerce_pay', 26 );
            }
        }
    });

    Result is next → https://prnt.sc/WfNFJMEejovl
    Waiting for your response!

    Kind Regards,
    8theme team

    Avatar: ljimenez
    ljimenez
    Participant
    August 2, 2023 at 16:31

    how you know which hooks to use? now i can style all that ? whats the best way to custom that style? with the xstorechild? or inside theme settting custom css?

    Avatar: ljimenez
    ljimenez
    Participant
    August 2, 2023 at 16:32

    when i click + and – button theres is an error see attached image

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 3, 2023 at 07:35

    Hello, Ljimenez,

    Thank you for your response.

    1/
    “how you know which hooks to use?” =
    Because our Single product builder uses its own actions for each element. The list of actions you may find in this answer → https://www.8theme.com/topic/trying-to-add-some-extra-code/#post-265666 . The hook related to add to cart block is named → etheme_woocommerce_template_single_add_to_cart.
    2/
    “now i can style all that ?” =
    You need to have some skills for making custom styles or ask for additional customization. We can recommend you to contact our partner → https://codeable.io/?ref=qGTdX
    For this time we added for you a few lines of custom CSS in child-theme/style.css with the next result → https://prnt.sc/KtLcaQKUJ0JK

    form.auction_form .plus, form.auction_form .minus {
        background: transparent;
        border: none;
        color: var(--et_main-color);
        font-size: 20px;
        padding: 0;
    }
    
    form.auction_form .bid {
        padding: 0;
        border: none;
        margin: 0 5px;
        text-align: center;
    }
    
    form.auction_form .bid_button {
        font-size: calc(var(--single-add-to-cart-button-proportion) * 1rem);
        background-color: var(--single-add-to-cart-background-color);
        color: var(--single-add-to-cart-color);
        padding: 5px 15px;
        height: auto;
        border-radius: 100px;
        min-width: 280px;
        min-height: 56px;
    }
    
    form.auction_form .bid_button:hover {
        background-color: var(--single-add-to-cart-hover-background-color);
        color: var(--single-add-to-cart-hover-color);
        border: none;
    }
    
    .et_cart-type-4 form.auction_form .bid_button:before {
        content: "\e916";
        font-family: xstore-icons;
        padding-inline-end: 5px;
    }

    In case you want to make some styles by yourself you can study how to make own CSS styles → https://www.w3schools.com/css/ , https://developer.mozilla.org/en-US/docs/Learn/CSS/First_steps

    3/ It depends on your needs. You can make your own styles inside Theme Options (it will be saved in database as theme_mod and could be simply made as backup once you need any). In case you make styles in xstore-child/style.css you will have it in a separate css file.

    Kind Regards,
    8theme team

    Avatar: ljimenez
    ljimenez
    Participant
    August 3, 2023 at 15:26

    thank you, but now my website looks weird

    https://staging.vgaraje.com/

    i didnt make any change at all looks broken

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 3, 2023 at 15:32

    Hello, Ljimenez,

    Thank you for your response.

    As we can see, you have a few Home pages: “Home minimal-electronics” – it is fine and created using Elementor, and your “Homepage” with the default editor.
    Have you changed the Front page? We’ve fixed the problem on your “Homepage” by disabling https://prnt.sc/hvScWUqnBcHx

    Kind Regards,
    8theme team

    Avatar: ljimenez
    ljimenez
    Participant
    August 3, 2023 at 16:01

    now it looks more weird in the product in homepage shows SSSSS after price before add cart button

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 3, 2023 at 16:05

    Hello, Ljimenez,

    Thank you for your response.

    Please check the screenshot in the private content area.

    Kind Regards,
    8theme team

    Please contact administrator
    for this information.
    Avatar: ljimenez
    ljimenez
    Participant
    August 3, 2023 at 16:09

    Means that came from homepage? I hava a partner working on that , so he touch something

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 3, 2023 at 19:34

    Hello, Ljimenez,

    Thank you for your response.

    On the screenshot, you can see path: plugins/woocommerce. It means the “SSSSS” content comes from WooCommerce, so please contact their support – https://wordpress.org/support/plugin/woocommerce/

    Kind Regards,
    8theme team

    Avatar: ljimenez
    ljimenez
    Participant
    August 3, 2023 at 20:15

    its fixed i just set homepage: homepage-minimal electronic and works good without SSSS https://staging.vgaraje.com/shop

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 4, 2023 at 05:41

    Hello, Ljimenez,

    We are glad that you fixed it.

    If you have any additional questions or concerns, please do not hesitate to reach out to us. Our support team is always available to assist you.

    Kind Regards,
    8theme team

  • Viewing 19 results - 1 through 19 (of 19 total)

The issue related to '‘make it compatible with auction plugin (auctions for woocommerce 2.6)’' has been successfully resolved, and the topic is now closed for further responses

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.