Home Forums WoodMart support forum A few issues

A few issues

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #232688

    GHGbR
    Participant

    Hello everybody,

    first: Super Theme and implementation.

    Over the weekend we changed our complete shop to your theme and we noticed a few things.

    Probably these can be easily solved or where we have to intervene.

    1. Search: Results from blog
    https://ibb.co/vx2cTYR
    You can set your search to search in products and blog articles. However, if you display all hits, we seem to be missing the hits for the blog articles. It looks like a shortcode, but we did not find it where it is used.

    2. Where in the theme you can make a basic setting for “DARK” and “LIGHT”. We wanted to make the following places on the page a little brighter, but not go through everything individually in the CSS. Is there a way to adjust the colour in only a few CSS places?
    https://ibb.co/3RFCXG6

    3. We would like to configure more tabs that cover all articles. Currently there is only one additional tab that can be used. Is there a snippet from you that allows us to configure more tabs in the theme?
    https://ibb.co/1Jg35BH

    4. How do we set the mobile menu to open the current category? We have set it to open this (so we thought ^^), but it is only highlighted in colour.

    Currently it looks like this when you are on a category: https://ibb.co/SJrwq0R

    But it should be unfolded like this: https://ibb.co/YtzMWkW

    5. Unfortunately we have to notice that our WebP plugin (https://wordpress.org/plugins/webp-converter-for-media) for the WebP images does not work in your theme. Is there a plugin which you support for the WebP image format? It would be a real pity if we can’t continue to use WebP images, as this helps with the loading time enormously (40% of the MB can be saved).

    Should everything be too much and I should rather make several issues out of it, please let me know. Otherwise I say thank you very much 🙂

    Greetings, Andreas

    #232755

    Hello,

    Thank you very much for choosing our theme and for contacting us.

    1. I have checked the link provided in the Private area. Each title contains the word “Game”. The search finds the words by a keyword. Please explain what did you expect it should work.

    2. You can find the option in the Theme Settings > Styles and colors;

    3. You can add one global tab and one individual tab for your product, if you need more you will have to find a plugin.

    4. Unfortunately, there is no option to keep the current category open in the mobile menu.

    5. We have not tested any plugins for the purpose that is why we can hardly recommend it. I would recommend you trying free ones or those who guarantee a refund for the case of incompatibility.

    Best Regards

    #232839

    GHGbR
    Participant

    Hello Elise,

    1. I see that the link was destroyed. The link was supposed to be /?s=game&post_type=product, but it became /?s=game&post_type=product the & sign is converted. With the URL ?s=game&post_type=product you will end up on a completely wrong page. Please use the URL with the & sign, then you will end up on the same page as I have shown in the screenshot. If you are on the right page, you will see what I mean. In the lower area, after the products, the blog posts should appear, but only the shortcode [woodmart_blog slides_per_view="2" blog_design="carousel" search="game" items_per_page="10"] is displayed. Why is only a short code displayed and no hits?

    2. I think you have not quite understood me. In the range you mention, I cannot give any colour values for DARK or LIGHT. I can only set that I want to use the DARK theme. But that was not my question. As I showed in the first screenshot, I would like to know where I can change the LIGHT or DARK CSS in ONE place, so that it works everywhere. Currently I would have to go through every class of CSS and change it manually.
    https://ibb.co/T2tgccC

    3. Pity, would have thought that you already have ready made hooks and snippets for it.

    5. I have searched for it in your forum. It is desired by some, but the statement was that it is currently not possible in your theme. You have added it to your feature list. Is there anything new about it?

    6. Found an error in InternetExplorer 11 and Windows 7. In the menu the graphics (SVG’s) are not scaled correctly. Here the deminitions in the CSS of the graphics seem to be missing. Chorme and FireFox can handle this, but unfortunately not IE11.
    https://ibb.co/HBYFHBY
    https://ibb.co/jz9njPR

    Thank you very much for the answers.

    Greetings, Andreas

    #232942

    Hello,

    1. This issue relate to the Settings > Permalinks. No theme generate or influence the URL generation.

    2. There is no option to set the color in one place. You will have to configure the header in the Header builder, Footer in the Theme Settings > Footer and set the color or image in the Theme Settings > Styles and colors > Background.

    5. Our theme doesn’t not have this option I cannot tell you exactly if it would be implemented.

    6. Try to open your SVG icons file with some editor like Sublime Text or default system text editor and add width=”31″ height=”40″ attributes to your <svg> tag like it is shown: http://prntscr.com/m4n0qw
    Then you will need to re-upload your icons in WordPress Dashboard.

    Best Regards

    #233428

    GHGbR
    Participant

    Hello,

    apparently there is a problem of communication here. But I will try my best to put it differently.

    1. I just told you that in this forum the link in the “private area” is broken.

    Let’s try it again and just have a look at the pictures.
    It is about this function:
    https://ibb.co/hKzx52d

    At your DEMO page https://woodmart.xtemos.com/?s=sim&post_type=product&product_cat=0 scroll down! You see the results from Blog? https://ibb.co/23K2qVT

    And with us it looks like this: https://ibb.co/mCkXmG7

    As I have already written several times now. Only the shortcode appears in our system! What do I have to change so that it also shows the Results from Blog?

    2. then changed it manually in the CSS.

    3. you do not need a plugin here. Added it with a few simple snippets.

    add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
     
    function woo_new_product_tab( $tabs ) {
        
    $tabs['related_products'] = array(
       'title'    => __( 'Ähnliche Produkte', 'woocommerce' ),
       'priority'    => 50,
       'callback'    => 'woo_new_product_tab_content'
    );
       return $tabs;
    }
     
    function woo_new_product_tab_content() {
    woocommerce_output_related_products();
    }

    5. you should really think about it, image formats like JPEG 2000, JPEG XR and WebP are the future of the web. You can talk to WP-Rocket about this, because it seems that in the forum it is often said that WP-Rocket works well with your theme.

    6. it would not be a reasonable solution that I limit the pictures in the deminsion. Here the problem arises that in the category view https://ibb.co/T4dtpVj the presentation would not be nice. I have now added the deminsions in CSS:

    .title-size-small .category-icon {
        max-height: 30px;
        max-width: 30px;
    }
    
    .site-mobile-menu li a .category-icon {
        max-height: 19px;
        max-width: 19px;
    }

    IE can also cope with this.

    #233514

    Hello,

    1. Please delete this shortcode from the page and add a Blog element separately. If you still have the problem, provide your site admin into the private area. This area works properly, just insert the credentials, write a line in the main message area and press “submit”,

    3. You can find a plugin or customize Woocommerce in this case. If the snippet works, use it. Our support does not include Woocommerce customization that is why we do not have ready snippets for such cases.

    5. We shall take it into consideration, however, we do not promise to implement that.

    6. You can use this solution if it is workable for your case. At the same time the best way is to upload images of the same size and proportion.

    Best Regards

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