Home Forums Basel support forum Facebook logo in to main menu

Facebook logo in to main menu

Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #6322

    MGer
    Participant

    Hi team,

    I can´t find a solution to add a simple big fb logo in to main menu. If I use HTML blocks I get down narrow option, I want to be visible in the menu, as you enter the main page.

    Thanks for help.

    #6323

    Artem Temos
    Keymaster

    Hello,

    Thank you so much for using our theme and contacting us.

    But there is no such option in our theme and our demo doesn’t have a facebook logo in the main navigation. But it can be done through a small CSS customization. Please, upload image you want to use as a logo and add simple Custom Link to your main menu. Then we will prepare CSS snippet for you.

    Regards

    #6324

    MGer
    Participant

    Ok done. Please advise.

    Thank you.

    #6329

    Artem Temos
    Keymaster

    Ok, try to add this code snippet to the Custom CSS area in Theme Settings and remove extra classes for this item

    .menu-item-510 > a {
    	color:transparent!important;
      width:30px;
      background-size: 20px;
      background: url(http://snowcon.no/wp-content/uploads/2016/10/FB-f-Logo__blue_58.png) no-repeat center center;
    }
    
    .menu-item-510 > a > i {
    	display:none;
    }

    Regards

    #6335

    MGer
    Participant

    I struggle to make a simple Custom link into main menu.

    #6338

    Artem Temos
    Keymaster

    It is because you have removed the previous link and added a new one. Try to add this CSS class fb-menu-link to your menu item and replace your previous code with this one

    .fb-menu-link > a {
    	color:transparent!important;
      width:30px;
      background-size: 20px;
      background: url(http://snowcon.no/wp-content/uploads/2016/10/FB-f-Logo__blue_58.png) no-repeat center center;
    }
    
    .fb-menu-link > a > i {
    	display:none;
    }
    #6340

    MGer
    Participant

    It worked! See bellow on private.

    #6341

    MGer
    Participant

    Here is a copy of function.php

    #6344

    Artem Temos
    Keymaster

    Try to enable debug mode and see what PHP errors do you have that break your back end. You can do this by changing this line

    define('WP_DEBUG', false);

    to

    define('WP_DEBUG', true);

    in wp-config.php file.

    Regards

    #6351

    MGer
    Participant

    I edited wp-config.php file and change to basel theme.

    I get “No direct script access allowed”, everything is white blank when I enter the site or backend.

    Please help.

    #6358

    Artem Temos
    Keymaster

    Try to restore original functions.php file that comes with our theme downloaded from themeforest and remove all your PHP customization.

    #6365

    MGer
    Participant

    Will I lose all the design?
    How do you prefer to restore it, with FTP just rewrite?

    #6367

    Artem Temos
    Keymaster

    What design you are asking about? Did you make any changes in PHP files? Just make a back up (download all changed files via FTP and save on your computer). Then replace them via FTP also.

    Regards

    #6394

    MGer
    Participant

    Works perfect! Thank you! Top customer service.

    1. How can I disable the filters in product page, I don´t want to have filters (categories on right side of the top, page /shop)

    2. Shopping cart (I translated all the theme and widgets) Still getting in english, when the cart is empty: “Before proceed to checkout you must add some products to your shopping cart.
    You will find a lot of interesting products on our “Shop” page.”

    Any solution, definitely function.php was not clever idea from my side.

    #6400

    Artem Temos
    Keymaster

    Hi,

    1. You can disable filters area in Theme Settings -> Shop.

    2. Edit this text in Theme Settings -> Shop also.

    Kind Regards

    #6608

    MGer
    Participant

    1. I disable filters area in Theme Settings -> Shop and I got stil another way of filter and to order the products for view. Is there any ways to removed that?

    2. done, thank you

    3. Text in the header top bar
    I placed text in the header top bar. Couldn’t center it, was always on the left. So I used short code.[html_block id="XXX"] Than I got to review site in mobile version or another browsers, that text don´t align with size of monitor. Any suggestions?

    #6613

    Artem Temos
    Keymaster

    Hello,

    1. Sidebar can be disabled in Theme Settings -> Shop -> Shop page layout. And you can add this snippet to the Custom CSS area in Theme Settings to remove “Sort by” select

    select.orderby {
        display: none;
    }

    3. Try to increase topbar height by adding this code to the Custom CSS area in Theme Settings for mobile devices only

    .topbar-wrapp {
        height: 90px;
    }

    Regards

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