Is it possible to modify .etheme-product-grid-item

This topic has 10 replies, 2 voices, and was last updated 1 weeks, 4 days ago ago by Jack Richardson

  • Avatar: RichPoetry
    RichPoetry
    Participant
    June 16, 2025 at 20:09

    Is it possible to modify .etheme-product-grid-item?

    i have uploaded image 1 shows my default product grid
    and 2 shows what i want to achieve.

    is it possible to modify then where can i go and change the settings

    Files is visible for topic creator and
    support staff only.
    9 Answers
    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    June 17, 2025 at 16:39

    Dear @RichPoetry,

    Thank you for reaching out.

    Unfortunately, it is not possible to overwrite such files directly from a child theme. However, you can achieve a similar design by applying custom CSS in combination with the widget you are currently using.

    Alternatively, we recommend exploring Elementor’s Loop Builder feature, which may offer the flexibility you need. You can find more information about it here: https://elementor.com/blog/introducing-the-loop-builder/

    Kind regards,
    Jack Richardson
    The 8Theme’s Team

    Avatar: RichPoetry
    RichPoetry
    Participant
    June 18, 2025 at 13:31

    thanks for reply i successfully made similar design.
    now the problem is i am not able to add wishlist heart icon. also i saw that there ia a Wishlist widget but its locked. how to add the wishlist icon so that the user can wishlist it?

    Files is visible for topic creator and
    support staff only.
    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    June 18, 2025 at 14:06

    Dear @RichPoetry,

    I hope this message finds you well.

    We are currently experiencing difficulties logging into your dashboard due to the active CAPTCHA. We kindly ask you to temporarily disable the CAPTCHA feature to allow us proper access.

    Additionally, we would appreciate it if you could provide us with the correct login credentials for the WordPress admin panel (wp-admin) as well as the FTP access details. This will enable us to thoroughly investigate the issue and work towards an effective solution.

    Thank you for your cooperation.

    Best regards,
    The 8Theme Team

    Avatar: RichPoetry
    RichPoetry
    Participant
    June 18, 2025 at 14:15

    here are the details

    Please contact administrator
    for this information.
    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    June 18, 2025 at 15:28

    Dear @RichPoetry,

    We hope this message finds you well.

    As you are currently using the editor (please refer to the screenshot: https://prnt.sc/hNs9LSNUgHzG), we are unable to apply direct content modifications at this time.

    However, we kindly suggest using the following shortcode instead: https://prnt.sc/pmy1VtmXFnVh.

    To ensure the shortcode functions correctly, we have added the following custom code (https://prnt.sc/WHg39A9lHTaB) to your child theme’s functions.php file:

    add_shortcode('etheme_child_xstore_wishlist', 'child_theme_wishlist');
    
    function child_theme_wishlist($atts, $content = null) {
        if ( !class_exists('\XStoreCore\Modules\WooCommerce\XStore_Wishlist') ) return;
        $wishlist_instance = \XStoreCore\Modules\WooCommerce\XStore_Wishlist::get_instance();
        ob_start();
        $wishlist_instance->print_button();
        return ob_get_clean();
    }

    Please let us know if you need any further assistance.

    Best regards,
    The 8Theme Team

    Avatar: RichPoetry
    RichPoetry
    Participant
    June 18, 2025 at 18:39

    i have finally designed my product template, when i used loop grid on homepage and selected my design and click update, the page is bricked now. not working on mobile and desktop. how to fix this now?

    i turned on the maintenance mode so user wont see the bricked page

    Files is visible for topic creator and
    support staff only.
    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    June 19, 2025 at 07:20

    Dear @RichPoetry,

    We hope this message finds you well.

    We kindly ask you to check your homepage again. Our team has improved the code, and you should now be able to see the wishlist icon displayed on each custom-created product.

    Please find the updated code below:

    add_shortcode('etheme_child_xstore_wishlist', 'child_theme_wishlist');
    
    function child_theme_wishlist($atts, $content = null) {
        if ( !class_exists('\XStoreCore\Modules\WooCommerce\XStore_Wishlist') ) return;
        
        $wishlist_instance = \XStoreCore\Modules\WooCommerce\XStore_Wishlist::get_instance();
        global $product;
        
        if ( ! $product ) {
            $product = wc_get_product();
        }
        
        if ( ! $product ) return;
        
        ob_start();
        $wishlist_instance->print_button($product->get_ID());
        return ob_get_clean();
    }

    Should you have any further questions or require additional assistance, please do not hesitate to reach out.

    Best regards,
    The 8Theme Team

    Avatar: RichPoetry
    RichPoetry
    Participant
    June 24, 2025 at 20:37

    i installed litespeed cache and when i Purge All cache i see the error
    “There has been a critical error on this website. Please check your site admin email inbox for instructions. If you continue to have problems, please try the support forums.”

    i tried many time but see the same error again and again.

    Files is visible for topic creator and
    support staff only.
    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    June 25, 2025 at 07:00

    Dear @RichPoetry,

    Thank you for reaching out.

    At the moment, we are not detecting any errors on your website. If you are experiencing issues on a specific page, we kindly ask that you provide the URL so we can investigate further.

    Additionally, we recommend reviewing the following article for guidance on debugging WordPress:
    https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/

    Should you have any further questions or concerns, please do not hesitate to contact us.

    Best regards,
    The 8Theme Team

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

You must be logged in to reply to this topic.Log in/Sign up

Helpful Topics

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