• Resolved sagibinder

    (@sagibinder)


    Hello everyone
    I just installed the woo commerce plugin and I faced 2 issues:
    1. in the main page, between the menu and the video there are products for the shopping.
    I would like to remove this section, I want my original homepage before I installed the woo-commerce plugin.
    2.The text description on the product page is white color altough in the text box i set it as black.
    Why is that? and how can I change it to black?
    3.As you can see, the product page is standing on the menu because i added CSS code into my website before i installed the plugin
    .site-content {
    margin-top: -110px;
    }
    How can i disable it on the shop pages ?

    Can you please advise?

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • 1. That looks like the “Shop Section” and you can turn it off at:
    Dashboard > Appearance > Customize > General > Shop Settings
    Ensure the “Shop Section” slider is set to off.

    2. Please turn off WP Super Cache and try again in elementor. It would be better to get it to work in elementor rather than try to overwrite what elementor is doing.

    3. You’ll need the :not selector, see
    https://www.w3schools.com/cssref/sel_not.asp
    Try something like:
    :not(.woocommerce) .site-content {
    Some experimentation with the classes in the body tag may be necessary to get your style to work on the pages you want it to.

    Thread Starter sagibinder

    (@sagibinder)

    Hi Lorro
    Thanks for the help but some of your solutions are not working.
    1. Working, thanks a lot
    2. I deactivate the Super Cash Plug-in and I was not able to edit it via Elmentor, I guess it’s because I am using the free version of Elementor?
    WooCommreice it’s a pro version feature.
    What is the other solution? Editing the product page via normal edit doesn’t show up in the product page content? just a blank page?
    Do we have other solutions instead of editing it via CSS?
    3. Didn’t work I guess I didn’t write the code correctly
    4. After I have installed the woocoomerce plug-in the page title of each page is now shown, although I disable it before using elmentor.
    How can I remove it again?

    2. I should leave WP Super Cache deactivated until website development is completely finished. I should not use the free version of elementor for WooCommerce pages. You don’t have to use a page builder.

    3 What code did you use? Please put it back in so I can debug it.

    4. I can’t see any pages with page titles. Please post a link to a page with a page title.

    Thread Starter sagibinder

    (@sagibinder)

    2. I am not going to purchase elementor.
    Anyway, i did it via CSS code
    .woocommerce {
    color: black;
    }

    DO you have another idea to solve this issue? or to stay with CSS code
    3.

    .site-content  {
        margin-top: -110px;
    }
    .woocommerce .site-content  {
        margin-top: 0px;
    }

    4. any page in the website, for empale this page The page title is in white and background is white so it’s difficult see
    I figure it out with CSS code
    .page-title {
    display : none
    }

    • This reply was modified 4 years, 1 month ago by sagibinder.
    • This reply was modified 4 years, 1 month ago by sagibinder.

    2. What you have done seems good. Take out the style on the p tag to make sure. It should not be necessary.

    3. Try:
    :not(.woocommerce) .site-content {

    4. Good, seems fixed.

    Plugin Support abwaita a11n

    (@abwaita)

    Hi @sagibinder,

    We haven’t heard back from you in a while, so I’m going to mark this as resolved. Hopefully, the above info was helpful and you were able to find a solution to your problem.

    If you have any further questions, please feel free to start a new thread.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing the shop in the main page’ is closed to new replies.