Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1118735
    maghrabi42
    Participant

    Hello,
    I’m trying to move the search icon and the cart into the corner also the icons of (home etc..) to the centre you can see it in the attachment and how can i remove the item word from the cart just need the number of item
    thank you

    #1118922
    Darshana
    Moderator

    Hi there,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    #1118994
    maghrabi42
    Participant
    #1119734
    Rue Nel
    Moderator

    Hello There,

    Thanks for providing the url. Regretfully your site is under construction mode. http://prntscr.com/c27ckj
    To assist you better with this issue, would you mind providing us the url of your site with login credentials so we can take a closer look? This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    To do this, you can make a post with the following info:
    – Link to your site

    – WordPress Admin username / password

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    Thank you.

    #1119960
    maghrabi42
    Participant
    This reply has been marked as private.
    #1119964
    maghrabi42
    Participant
    This reply has been marked as private.
    #1120043
    Nabeel A
    Moderator

    Hi again,

    Thank you for providing the credentials. Please add the following code in your Customizer via Appearance > Customize > Custom > Edit Global CSS:

    .masthead-stacked .desktop .x-nav {
        width: 100% !important;
        text-align: center !important;
    }
    .rtl.x-navbar-static-active .desktop .x-nav>li, .rtl.x-navbar-fixed-top-active .desktop .x-nav>li {
        float: none !important;
        display: inline-block !important;
    }
    .rtl.x-navbar-fixed-top-active .desktop .x-nav>li.x-menu-item-woocommerce, .rtl.x-navbar-fixed-top-active .desktop .x-nav>li.menu-item.x-menu-item.x-menu-item-search {
        float: left !important;
    }
    .rtl.x-navbar-fixed-top-active .desktop .x-nav>li#menu-item-36 {
        margin-right: 280px !important;
    }

    Let us know how this goes!

    #1120118
    maghrabi42
    Participant

    Hello,
    Thank you soon much it’s work fine
    🙂

    #1120121
    maghrabi42
    Participant

    Hello,
    can you please provide me the css code for remove the word of the item next the baskit you can see it in the attachment i just need the number

    thank you

    #1120161
    Thai
    Moderator

    Hi There,

    Please add the following code under functions.php file locates in your child theme:

    add_filter('ngettext', 'x_translate_text' , 20, 3);
    function x_translate_text ( $translated_text, $single, $plural ) {
    
    	$translation = array(
    		'%d Item'      => '%d',
    		'%d Items'     => '%d'
    	);
    
    	if( isset( $translation[$single] ) ) {
    		return $translation[$single];
    	}
    	if( isset( $translation[$plural] ) ) {
    		return $translation[$plural];
    	}
    	return $translated_text;
    }

    Hope it helps 🙂

    #1120310
    maghrabi42
    Participant

    thank you so much for support

    #1120691
    Rad
    Moderator

    You’re so much welcome!

  • <script> jQuery(function($){ $("#no-reply-1118735 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>