Home Forums WoodMart support forum Setup problem

Setup problem

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #329555

    jeffrey
    Participant

    Hello

    I have some questions

    1. The mobile device footer cannot be folded. I have set it to allow. Is it related to the components of the footer? Please see Figures 1 and 2

    2. How to modify the icon below the mobile device? Please see Figure 3

    3. How to modify the red line marked part of the product page? Please see Figure 4

    4. I keep getting theme error messages, please see Figure 5

    Finally, how do I compile the language I use?

    Please assist me, thanks

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

    jeffrey
    Participant

    I keep getting theme error messages, please see Figure 5

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

    Hello,

    1) Footer collapse doesn’t work if you created Footer using HTML Block. It only works for standard footer columns.

    2) To change the icons you need to use custom CSS.

    For home button:

    .wd-toolbar-shop .wd-tools-icon:before {
        content: "\f146";
        font-family: "woodmart-font";
    }

    For Wishlist button:

    .wd-toolbar .wd-header-wishlist .wd-tools-icon:before {
        content: "\f106";
        font-family: "woodmart-font";
    }

    For cart button:

    .wd-toolbar .wd-header-cart .wd-tools-icon.wd-icon-alt:before {
        content: "\f126";
        font-family: "woodmart-font";
    }

    For My Account button:

    .wd-toolbar .wd-header-my-account .wd-tools-icon:before {
        content: "\f124";
        font-family: "woodmart-font";
    }

    3) You need to edit the short description area of the product.

    YOu can read the following documentation for help:
    https://docs.woocommerce.com/document/managing-products/#prettyPhoto

    4) Please, try to add this code to the functions.php file in your child theme

    function woodmart_cart_count() {
    	if ( ! is_object( WC() ) || ! property_exists( WC(), 'cart' ) || ! method_exists( WC()->cart, 'get_cart_contents_count' ) ) {
    		return;
    	}
    
    	$count = WC()->cart->get_cart_contents_count();
    	?>
    		<span class="wd-cart-number<?php echo woodmart_get_old_classes( ' woodmart-cart-number' ); ?>"><?php echo esc_html( $count ); ?> <span><?php echo esc_html( _n( 'item', 'items', $count, 'woodmart' ) ); ?></span></span>
    	<?php
    }

    Best Regards

    #329811

    jeffrey
    Participant

    Hello
    You haven’t answered me yet. How do I modify the text in the bottom icon of the mobile device?
    Which document is the translation language?
    thanks

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

    Hello,

    To change the text you need to use the Loco translate plugin.

    You can also watch the video in our detailed documentation in the following link: https://www.youtube.com/watch?v=D3NsDdMzsls

    Best Regards

    #329886

    jeffrey
    Participant

    Excuse me

    The language file is woodmart.pot?
    Can I manually translate without breaking the theme?
    If possible, I will translate manually.

    thanks

    #329898

    Hello,

    You can edit the theme .POT file using any PO editor software.

    Best Regards

    #330142

    jeffrey
    Participant

    HI,

    The Loco Translate you introduced is very good, but unfortunately, I cannot complete the language translation, and manual translation is not possible. I still have problems to solve, but the use of our language is what my website needs most.

    Excuse me, can I translate for me for a fee?

    thanks

    #330212

    Hello,

    Sorry but we currently are not offering any paid services.

    You can try importing our translation files if your language is available.
    https://xtemos.com/docs/woodmart/translation/

    Otherwise, you need to hire a developer who can do it for you.

    Best Regards

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