Home Forums WoodMart support forum Edit user account.

Edit user account.

Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #278096

    ipix
    Participant

    How do I replace the Downloads page tabs in my user account? Replace page title and icon. https://i.imgur.com/OdMpXuf.png
    How do I replace the product download page with the Loyalty page? And place a barcode on this page? This page can only be seen by a registered user from his personal account.

    Attachments:
    You must be logged in to view attached files.
    #278178

    Hello,

    I saw the screenshot you attached.

    Sorry but there is no option in Theme Settings available for that. Because My Account is woocommerce functionality and our theme doesn’t influence.

    Best Regards

    #279141

    ipix
    Participant

    How can I add my page to the user’s personal account?

    #279209

    Hello,

    Do you want to add a new tab on my account page? If yes, then it is not possible without customization in the theme files.

    It requires customizations and this is beyond our limitations and support policy.

    Best Regards.

    #279213

    ipix
    Participant

    I understand you, tell me how can I do this so that your theme works and is updated. Can I buy a plugin compatible with your theme?

    #279259

    Hello,

    Do you mean how to update the theme or do the customization in the theme?

    Best Regards.

    #280474

    ipix
    Participant

    1)After updating the theme, an illegible filter icon appeared. How can I change it?
    2) After changing the color of the icons on the category page, I changed the color of the icon and the “add to wishlist” button. How can I change the color of the Add to Wishlist button and icon so that other buttons of this class remain black?
    I was adding css code:
    .wd-action-btn > a {
    color: #000;
    }
    body .wd-action-btn.wd-wishlist-btn > a:before {
    color: #fff;
    }
    But this code doesn’t work for me, because it changes the color of the icons on other pages, and I only need it on the product page.

    #280762

    Hello,

    1) Please try adding the following Custom CSS for that.

    .woodmart-filter-buttons .open-filters:before {
        background-color: transparent;
    }

    2) Please try adding the following Custom CSS for that.

    .single-product .wd-action-btn.wd-wishlist-btn>a:before {
        color: #fff;
    }
    
    .single-product .wd-action-btn > a {
        color: #fff;
    }

    Regards.
    Xtemos Studios

    #280960

    ipix
    Participant

    Thank you.
    1) How can I change the width of the columns (columns) so that the description of the delivery option is in one line?
    2) Please tell me where to edit this text?
    Thank

    #281115

    Hello,

    You are Most Welcome.

    1) Please try adding the following Custom CSS in the Custom CSS for the Desktop area and see if this works for you. Otherwise, it requires Customizations.

    .woocommerce-checkout ul#shipping_method li {
        width: 350px;
    }

    2) You forgot to attach a screenshot of the text you want to translate.

    Regards.
    Xtemos Studios

    #282513

    ipix
    Participant

    1) I added this code
    `.woocommerce-checkout ul#shipping_method li {
    width: 350px;
    }
    , but now in mobile this check is not responsive (you have to swipe to the right / left – this is inconvenient for the user). How do I make responsive columns? For example, so that the delivery and pickup options are under the heading (and the Delivery heading can be hidden altogether in the mobile)? Thank you.

    2) How do I change the background color of a popup button? To keep the background color of other buttons from changing (for example, the background of the Add to Favorites button)?

    3) I added this code to change the color of the Add to Wishlist button on the product page. But in the original “Similar Products” product, the icon also changed color. How to make them different (one white, one black)?

    #282648

    Hello,

    1) It seems that you have added the Custom CSS in the Global Custom CSS area that’s why it is affecting the mobile.

    Please move the Custom CSS in the Custom CSS for Desktop area under Theme Settings >> Custom CSS.

    2) Please try adding the following Custom CSS for that.

    .wd-buttons.wd-pos-r-t {
        background-color: green;
    }

    3) Please try adding the following Custom CSS for that.

    .single-product .wd-carousel-container .wd-action-btn.wd-wishlist-btn>a:before {
        color: black;
    }

    Best Regards

    #282705

    ipix
    Participant

    1) Thanks,
    `.woocommerce-checkout ul # shipping_method li {
    width: 350px;
    }
    I added some code to the Custom CSS for Desktop. Works. How can I do it for mobiles now? Can the title move to one line, and the product selection to another?

    2)How can I make the menu style of the main categories and subcategories one-on-one in my dark theme as on the light theme (everything is like on the skin shot, the color of the icons, the color of the active menu and the menu on hover, the background of the menu)?

    #282747

    Hello,

    You are Most Welcome.

    1) Sorry but it is not possible for the mobile devices as you can see the length of the text is greater then the device width so that if we try adding width then it is displayed outside.

    2) Sorry but your explanation is not clear enough to understand what you require. Please Elaborate with the help of some more relevant screenshots of what you require to check it myself and help you out accordingly.

    Regards.
    Xtemos Studios

    #282914

    ipix
    Participant

    1) Okay, thanks, I’ll think about what I can do.
    2) I have a dark theme selected because the background is dark. But the vertical menu of product categories I need one to one as in your light theme https://i.imgur.com/vNM9fNs.png. The background of the drop-down list of the main menu of categories and subcategories is white. When you hover over a category menu item, the line turns gray and remains gray if the category item is active (1.1). When you hover over subcategory menu items, they turn green (1.2).

    #283077

    Hello,

    You are Most Welcome.

    2) Please try adding the following Custom CSS for That.

    .wd-nav-vertical>li:hover>a {
        background-color: #F9F9F9 !important;
        color: rgba(51,51,51,.9);
    }

    Regards.
    Xtemos Studios

Viewing 16 posts - 1 through 16 (of 16 total)