• Hello,

    I’m having issues:

    1. There is no price showing up on the product page making it impossible for users to check out.

    On the shop page:

    2. I have a ‘read more’ popping up, how can I get rid of it (on my product)

    3. Currently I have a Product title, and box to enter the price. I don’t want any price to be shown on the shop page just a “Select your price” button. Which then takes the user to the price page checkout.

    Thanks

Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Author ELEXtensions

    (@elextensions)

    Hello peoniesforspring1(@peoniesforspring1),

    Thanks for contacting us.

    I wanted to confirm with you whether you have configured a product price for your items. This is crucial because the regular price must be established for the “Add to Cart” button to be visible. Once you’ve defined your product price, you can choose to conceal it using our plugin settings.

    The “Read more” button you’re currently observing is from WooCommerce due to the absence of any set product prices.

    Feel free to reach out if you require any further assistance.

    Thread Starter peoniesforspring1

    (@peoniesforspring1)

    Hi,

    Thanks for your response. I’ve semi figured out the button situation with this code:

    add_filter( ‘woocommerce_loop_add_to_cart_link’, ‘custom_product_links’ );

    function custom_product_links( $link ) {
    global $product;

    // Check if the product is of a certain type or has specific attributes
    if ( $product->is_type( 'simple' ) && $product->get_price() === '' ) {
        // Display "Choose a Price" button for products with no price
        echo '<form action="' . esc_url( $product->get_permalink() ) . '" method="get">';
        echo '<button type="submit" class="button choose_price_button">' . __('Choose a Price', 'woocommerce') . '</button>';
        echo '</form>';
    } else {
        // Display "View Product" button for other products
        echo '<form action="' . esc_url( $product->get_permalink() ) . '" method="get">';
        echo '<button type="submit" class="button view_product_button">' . __('View Product', 'woocommerce') . '</button>';
        echo '</form>';
    }

    }

    1. However, the price of the product needs to be 0. And if people want to donate a higher amount they can. Right not there is no ‘add to cart’ on product page bc I’m assuming the price is 0. How do you work around that?
    2. I also don’t want any price to show up on the shop page, just my woo commerce button.
    Plugin Author ELEXtensions

    (@elextensions)

    Hello @peoniesforspring1,

    In response to your queries, I’d like to clarify that when you set the product price as “0”, the Add to Cart button will still appear on both the shop and product pages. However, if you leave the price field empty without any values, then the Add to Cart button would disappear. This behavior is a default functionality of WooCommerce.

    Furthermore, if you wish to hide the price that has already been updated, you can utilize the Hide Price feature located under the General Settings of the plugin. This feature enables you to hide the price on both the shop page and product page without disabling the Add to Cart button. Please find the below screenshots for your reference.

    https://prnt.sc/P3arOtMGJEXW

    https://prnt.sc/UBJqH7rmMp0W

    Please let us know if you have any further questions or concerns.

    Thread Starter peoniesforspring1

    (@peoniesforspring1)

    Hi,

    I have done what you said.

    1. This hid the price. However, I want to hide the red box from the shop page. I just want the button to show. See scrnshot: https://prnt.sc/4SUdlzijyPM_
    2. The buttons are stuck together how would I space them out?

    https://prnt.sc/kCdKWbhPYEQ_

    Plugin Author ELEXtensions

    (@elextensions)

    Hello?@peoniesforspring1,

    At present, the plugin does not provide a dedicated feature to hide the “Name Your Price” input field exclusively on the shop page, as this functionality is considered fundamental to the plugin. Additionally, regarding spacing concerns on the product page, the plugin adjusts automatically based on your theme.

    Feel free to reach out if you have any further inquiries.

    Thread Starter peoniesforspring1

    (@peoniesforspring1)

    well darn- this is what I was after and respectfully kind of a deal breaker in my search for a plugin. I have seen shops without the “name your price” display on shop page and can send an example. If not, what code can I use to hide it?

    Plugin Author ELEXtensions

    (@elextensions)

    Hello peoniesforspring1(@peoniesforspring1)

    Thank you for getting back.

    We genuinely appreciate your suggestions. We will promptly communicate your feedback to our product team and conduct a feasibility check to explore the possibility of hiding the “Name Your Price” feature on the shop page in any of the future releases of the plugin.

    Should you have any further suggestions or feedback, please feel free to share them with us without hesitation.

    Thread Starter peoniesforspring1

    (@peoniesforspring1)

    Appreciate your response- in the meantime what code can I use under ‘additional css’?

    Plugin Author ELEXtensions

    (@elextensions)

    Hello?@peoniesforspring1,

    Thank you for getting back.

    Regarding the request to incorporate extra CSS to hide the “Name Your Price” section on the shop page, please note that hiding the “Name Your Price” section may render the Add to Cart button unresponsive, given the absence of a visible price. Moreover, as per our earlier discussion, it seems that you have also deactivated the regular price.

    To provide more tailored suggestions, it would be helpful if you could explain your business case and workflow on your site in more detail.

    We look forward to hearing from you soon.

    Thread Starter peoniesforspring1

    (@peoniesforspring1)

    hi,

    I have messaged you

    Plugin Author ELEXtensions

    (@elextensions)

    Hello @peoniesforspring1,

    Thank you for sharing the requirement?in detail with our support team and we will get back to you as soon as possible.

    Thread Starter peoniesforspring1

    (@peoniesforspring1)

    Update: the team has resolved the issue. I’m super impressed in less than a week they created a new version of the plugin with the changes needed. As well as helped me a css code to make a sentence appear on a new line. Thank you guys!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘‘Read more’ showing up on shop page. No checkout on product page’ is closed to new replies.