Can i display waitlist widget in any page?

This topic has 2 replies, 2 voices, and was last updated 2 hours, 6 minutes ago ago by Jack Richardson

  • Avatar: Denurade
    Denurade
    Participant
    January 24, 2025 at 14:39

    Could you please advise me. Is it possible to show what quantity and for what amount of goods in a wait list?
    Using a shortcode or a widget in the elementor ?

    1 Answer
    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    January 24, 2025 at 16:13

    Dear @Denurade,

    Thank you for reaching out to us.

    You can utilize the shortcode mentioned in the official documentation of our theme to implement the waitlist feature. Please refer to the following link for detailed guidance: https://www.8theme.com/documentation/xstore/xstore-features/waitlist-feature/.

    If you need to modify specific fields within the waitlist table, you can use the filter provided below to hide or display certain elements. Simply add the following code snippet to your xstore-child/functions.php file:

    add_filter('xstore_waitlist_page_content', function($elements) {
    	// to hide product image 
    	if ( in_array('product', $elements)) 
    		unset($elements[array_search('product', $elements)]);
    	// to hide price
    	if ( in_array('price', $elements)) 
    		unset($elements[array_search('price', $elements)]);
    	// to hide email
    	if ( in_array('email', $elements)) 
    		unset($elements[array_search('email', $elements)]);
    	// to hide action
    	if ( in_array('action', $elements)) 
    		unset($elements[array_search('action', $elements)]);
    	return $elements;
    });

    Should you wish to display additional information in the table, you are welcome to submit your request on our -> https://www.8theme.com/roadmap/ or request further customization through this -> https://www.8theme.com/account/#etheme_customization_panel.

    If you have any further questions or need additional assistance, please do not hesitate to contact us.

    Best regards,
    Jack Richardson
    The 8Theme Team

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

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

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