Webshop Toys - by irish - on WordPress WooCommerce support

This topic has 34 replies, 5 voices, and was last updated 6 years, 9 months ago ago by Laranz

  • Avatar: irish
    irish
    Participant
    February 1, 2017 at 17:18

    Hi there!

    Is it possible to have in the header, in the “share” area left of the logo, a big search widget?

    Thank you!

    Please, contact administrator
    for this information.
    33 Answers
    Avatar: Eva
    Eva Kemp
    Support staff
    February 1, 2017 at 17:59

    Hello,

    I’ve added this code in Theme Options > Header Settings > Header custom HTML:
    [et_top_search view="default"]

    Please check header now.

    Regards,
    Eva Kemp.

    Avatar: irish
    irish
    Participant
    February 6, 2017 at 16:27

    Hi eva,

    1. See header-> Search area. How can i remove the dot-lines etc. so i have only the search row? I want it at the same height as the cart-item

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    February 6, 2017 at 17:23

    Hello,

    Please add this code in Global Custom CSS:

    .header-type-6 .header .tbs span {
       border: none;
    }
    .header-type-6 .header .tbs span:before {
      display: none;
    }

    Best regards,
    Jack Richardson.

    Avatar: irish
    irish
    Participant
    February 6, 2017 at 17:25

    Hi Jack,

    Perfect!
    1. Is it possible to have the search bar a little bit lower and in stead of purple, blue?
    2. Shop page: How can i change color of “add to cart” button” + hover colors?
    3. Shop page: how can i change the color of the product names?
    4. Single product page: how can i make the product name a bit smaller?
    5. Singe product page: How can i change hover color of “add to cart” button?
    6. How can i color the topbar background + text?

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    February 6, 2017 at 17:46

    Hello,

    1. Add this code in Global Custom CSS:

    .et-mega-search input[type="submit"] {
       background-color: blue;
    }

    Write any color value you need.

    .header-type-6 .header .tbs .et-mega-search {
       margin-top: 20px;
    }

    2. Use this css code:

    a.add_to_cart_button {
      color: white;
      background-color: black;
    }
    a.add_to_cart_button:hover {
      color: white;
      background-color: black;
    }

    Write colors you need.

    3. Add this css code:

    .products-grid .product-title a {
        color: #000 !important;
    }

    4. This code will help you:

    .product-information .product_title {
        font-size: 20px;
    }

    5. Use the following code:

    .single-product .product-information .cart button[type="submit"]:hover {
      color: red;
      background-color: white;
    }

    Best regards,
    Jack Richardson.

    Avatar: irish
    irish
    Participant
    February 14, 2017 at 15:58

    Hi!

    Just some color questions 🙂

    See single product page
    1. Text “wishlist” and “tell a friend” from purple to orange
    2. Social links in side bar from purple to orange
    3. Product title of related Products, purple to orange

    4. When clicking on preview product; text ‘Show details” from purple to orange
    5. The bottom footer is very large, can we make this smaller?

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 15, 2017 at 11:54

    Hello,

    1-2.

    .product-information .yith-wcwl-add-to-wishlist a, .product-information .email-link, .single-product-sidebar .et-follow-buttons.buttons-size-normal.icons-colorfull i {
        color: purple;
    }
    .product-information .yith-wcwl-add-to-wishlist a:hover, .product-information .email-link:hover, .single-product-sidebar .et-follow-buttons.buttons-size-normal.icons-colorfull i:hover {
        color: orange;
    }

    3.

    .single-product .product-slide .product-title a {
         color: purple;
    }
    .single-product .product-slide .product-title a:hover {
         color: orange;
    }

    4.

    .quick-view-popup .product-information .show-full-details{
        color: purple;
    }
    .quick-view-popup .product-information .show-full-details:hover{
        color: orange;
    }

    5.

    .copyright.copyright-3 {
        padding-top: 0;
    }
    .row-copyrights {
        padding: 30px 0 0 0 !important;
        border: none !important;
    }

    Regards,
    Rose Tyler.

    Avatar: irish
    irish
    Participant
    February 15, 2017 at 12:19

    hi Rose!

    Perfect :)!

    1. See header. Is it possible to change the position of the logo and search bar? So logo left and searcher in the centre?
    And is it then possible to have the search bar full with?

    2. See homepage; Is it possible to have the fields from the Contact Form full width?
    + Is it possible to make the “message” field a lot smaller?

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 15, 2017 at 13:34

    Hello,

    1. You can edit header-structure file wp-content/themes/royal/headers/
    We recommend to make changes in the child theme http://codex.wordpress.org/Child_Themes not to lose modifications after theme update.

    2.

    input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
        width: 100%;
    }
    textarea.wpcf7-form-control.wpcf7-textarea {
        width: 101%;
    }

    Please, read this article https://contactform7.com/text-fields/

    Regards,
    Rose Tyler.

    Avatar: irish
    irish
    Participant
    February 24, 2017 at 16:35

    Hello!

    Some questions, see also the printscreen; http://www.ditto.nu/wp-content/uploads/2017/02/Screenshot-1.png

    1. Is it possible to have those lines on 1 line? Or remove the first black line in the sidebar?
    2. Breadcrumbs; It it possible to make the padding between top and bottom smaller?
    3. Is it possible to have the breadcrumbs in normal letters, in stead of all capitalise?
    4. Homepage: Is it possible to have 5 columns in a row?
    5. Is it possible to remove the menu in the header? Or not showing?
    6. The Quick View option does not work
    7. I don’t have a sticky header when scrolling down… Can we make this visible?

    Thank you!

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 27, 2017 at 12:04

    Hello,

    1. You can use this code:

    .single-product-sidebar {
        margin-top: 23px;
    }

    2.

    .page-heading.bc-type-1 {
        padding: 10px;
    }

    3.

    .page-heading .title {
        text-transform: none;
    }

    4. Try to use this way http://prntscr.com/edx6mc
    5.

    .menu-main-container {
        display: none;
    }

    or

    .menu-wrapper {
        display: none;
    }

    6-7. Please try to disable all 3rd-party plugins and check after that.

    Regards,
    Rose Tyler.

    Avatar: irish
    irish
    Participant
    February 28, 2017 at 12:27

    Hello Rose,

    Thank you!
    1. Unfortunately we can’t find the issue with the fixed header en quick view. Deactivate all plugins.
    2. Also we use now the child theme, but now the translations aren’t working anymore.
    3. See shop sidebar; why are all sub categories collapse? Normally they are only showing when clicking on the head-category

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 3, 2017 at 14:40

    Hello,

    Sorry for the delay in answering.
    1, 3. The problem persists only with your child theme. If you activate parent theme you’ll see the Add to cart is working fine. Please check it. So you need to check the customizations you’ve made in child theme files.
    2. I’ve checked your translation files and didn’t see it in languages folder. Please, read http://xstore.helpscoutdocs.com/article/30-base-theme-translation and provide FTP credentials in private content area.

    Regards,
    Rose Tyler.

    Avatar: irish
    irish
    Participant
    March 6, 2017 at 09:31

    Hi Rose,

    Okay we’ll look at the child theme.
    The translation files are set up just the same as our other shops… 🙁
    See ftp credits in private content

    Please, contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 6, 2017 at 12:42

    Hello,

    I’ve changed localization in Settings > General > Site Language.
    Also, I checked your translation files and turned out that they were not relevant and did not contain the translation. I generated a new royal-nl_NL.mo and royal-nl_NL.po and placed them in wp-content/languages/themes.
    You can translate theme use Loco Translate http://prntscr.com/egmwme. Please, check it.

    Regards,
    Rose Tyler.

    Avatar: irish
    irish
    Participant
    March 29, 2017 at 10:39

    Hello!

    1. See mobile MENU-> Is it possible to have the words “Account + icon” and ‘SIGN IN” also white?
    2. See mobile MENU-> Is it possible to have a search option in the menu?
    3. See mobile homepage: Now it’s starting with the big categorie symbols. Is it possible to have them in 2 columns?
    4. See mobile footer: How can i have those Social icons next to each other?
    5. See footer: How can i have that phone number in white? Now it’s grey.

    Thanks!

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 29, 2017 at 12:26

    Hello,

    1. Please add this code in Custom css:

    .mobile-nav .links {
        border-color: white;
    }
    .mobile-nav-heading,  .mobile-nav .links li a {
        color: white;
    }

    2. Unfortunately, in our theme, it’s not possible.
    3. You can try to change http://prntscr.com/epuwr8
    4. I’ve changed http://prntscr.com/epuza4 http://prntscr.com/epuzlp
    5. http://prntscr.com/epv03e

    Regards,
    Rose Tyler.

    Avatar: irish
    irish
    Participant
    April 3, 2017 at 16:07

    Hi there!

    One question; on a product page like: https://www.ditto.nu/product/3d-wanddecoratie-geel-gekleurde-muurvlinders/ i added a table. The first row is dark blue en now we want to have the font in that row white. Is that possible?

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 4, 2017 at 08:07

    Hello,

    Is your issue solved? http://prntscr.com/es7drk

    Regards,
    Rose Tyler.

  • 1 2
    Viewing 20 results - 1 through 20 (of 34 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.