how to remove shop page and the SHOW ALL link on product page

Hi,

1. I'm trying to remove the shop page. But can't seem to find a way. Can you help me with this?

2. on the product page, it shows "SHOW ALL", which links back to the shop page. I want to remove this link. Can't find anything on the internet.

Looking forward to your answer!


Comments

  • Hi,

    1. Shop page, like any other page, can be removed under Pages section.

    2. To remove Show All button, please use the following css:
    .single-product .post-nav .list-nav { display: none !important; }
  • edited November 2016
    Thank you so much for your quick response.

    1. doesn't woocommerce just replace the pages section with a new one if you delete it? It's configured within woocommerce that the shop page is located there. or not?

    2. This worked. Great! BUT, i have still a column that is visible and grey with slashes. If i inspect the element, it says this: <div class="column one post-nav ">..</div> how can i remove this also?

    3. On the checkout page, the title Billing Information and Ship to a different address is white against a white background, while the rest of the page has the black font color. I want to change the page title to black.

    4. Is there a way to automatically go to the cart page after adding the product to the cart on the product page? I have a single product shop, and find it confusing that the cart button shows in green on the top of the page and is also closable. 

    5. I want to edit the woocommerce emails that clients get. Like the cart abandonment mail, but i can't find any find to change put the text in there. For example, i want to send the customers a thank you email with a downloadable link. Can't find the right place to do it.

    Looking forward to your answer and thank you in advance.

    Best,

    FreeflyVR Team
  • 1. To be honest, we don't know anything about it. This question should be sent to plugin's author.

    2. You asked above, how to remove this link only. However, if you want to remove complete post navigation, you should use the following css instead:
    .single-product .post-nav { display: none !important; }
    3. Please send us link to checkout page so we can have a look on it.

    4. We are sorry but we do not have such option/possibility included.

    5. For that you need to modify WooCommerce plugin files because we do not interfere into any WooCommerce e-mails.
  • edited November 2016
    Thank you for your quick reaction.

    1. here's the link to the checkout page https://www.freeflyvr.com/checkout/. I want the titles Billing Details and Ship to different address in black, like the rest of the form. It's now white against a white background.

    2. I want my US shop page (https://freeflyvr.com/us/shop/) to look like this page https://www.freeflyvr.com/shop/. Any idea what CSS code to fill in to get that white box?

    3. Any idea how to get the header on this page https://freeflyvr.com/us/checkout/ full width, or the same as the header on this page https://freeflyvr.com/checkout/ ? I've set the header as full width, but doesn't make any difference.

    4. Also on the product page https://www.freeflyvr.com/product/mobile-virtual-reality-headset-wireless-controller/ i see a thumbnail of previous or next products that i've configured. I want to remove this thumbnail which is shown in the bottom corner of the product page.

    5. I've just update the betheme from 12.5 tot 15.5 and i'm having padding issues. check here www.freeflyvr.com/us/ what can i do about this? Couldn't find any answer quick on the forum, the search option isn't getting me anything specific. Also after this, i need to update the main domain, hope i don't get the same problem.

    thanks in advance!

  • 1. As we can see, those fonts are white because of your custom css:

    .woocommerce-billing-fields h3 {color:#fff}

    and also, you set white color for headings under Theme options > Colors > Headings section.

    So to change these colors, you need to replace white color in above css but for the second title, use:
    h3#ship-to-different-address { color: #000 !important; }
    2. Sorry but what white box you mean? The only difference we noticed between pages is header's background image.

    3. To set cover position for subheader's background, please use:
    #Subheader {
        background-size: cover;
    }
    4. It's fixed navigation and it could be disabled under Theme options > Blog, Portfolio & Shop > General section.

    5. Please go to Theme Options > Fonts > Size & Style and increase line-height for headings you use.
Sign In or Register to comment.