• Resolved h3x

    (@h3x)


    I am not able to edit the “home” reference link to the name I have right now “Inicio” ? (#2 in picture)

    Is there anyway to eliminate this index (UL.breadcrumb) from all the pages (#1 in Picture)

    View post on imgur.com

    How much faster is the Pro version compared to this one?

    Thanks in advance, love great theme! <3

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter h3x

    (@h3x)

    Also, with how many websites can I use the theme if I buy it?

    Thanks <3

    Hey there h3x,

    Hope you’re well today!

    You can remove the breadcrumbs with some custom CSS. Since the theme has it’s own custom CSS in Appearance >> Theme Options >> General Settings >> Custom CSS you can insert this code there:

    ul.breadcrumb {
    display: none;
    }

    This should remove the breadcrumbs.

    As far as I know you should be able to use the theme as many times as you like but since I do not represent theme authors maybe you should wait for them to respond on this one ??

    Hope this helps.

    Best regards,
    Bojan

    Thread Starter h3x

    (@h3x)

    Hey Bojan, Thanks anyways for the help hope you are well too!

    I fixed it 30 minutes ago by looking at this custom CSS —> .enigma_blog_area {display:none;} and figured It was going to work with ul.breadcrumb! I program in Java, Python, VBS and Perl but never had the chance to play with PHP until today

    What I haven’t figured out its how to use more that one custom CSS together example:

    .breadcrumb {display:none;}
    .enigma_blog_area {display:none;}

    I try adding a comma between them even putting them line by line but nothing ??

    Very Appreciated,
    <3

    Hey again h3x,

    Putting a comma between two classes is a correct way to do it if you want to add the same property to the classes. For example in your case it should look like this:

    .breadcrumb, .enigma_blog_area {
    display:none;
    }

    Even putting another class with the same property below like you did is not wrong and it should work. However, maybe your not targeting the correct selector.

    Tell me what what are you trying to hide with CSS and I’ll try to help ??

    Best regards,
    Bojan

    Thread Starter h3x

    (@h3x)

    Touché, that worked thanks Bojan! I was trying to hide .breadcrumb and after the blog preview .enigma_blog_area and I fixed it!

    In regards to my first question in the topic –>

    I am not able to edit the “home” reference link to the name I have right now “Inicio” ? (#2 in picture) https://i.imgur.com/YQvCFjz.png?1

    Do you have any idea how to correct that?

    Again, Thanks <3

    Hey again h3x,

    Not sure why are you looking to do that since we hidden the breadcrubs in the first place.

    Anyway the easiest way to change the Home breadcrumb would be to use translation files since the word is translatable. You can find more info on how to translate your theme here:

    https://codex.www.ads-software.com/Translating_WordPress

    An alternative to that would be to make changes in functions.php. I strongly suggest not editing theme core files since all changes will be lost once you update the theme but rather make a copy of functions.php in your child theme and make the changes there.

    Once you have it there, open your child theme functions.php with the text editor of your choice and go to line 194, it looks like this:

    $home = __('Home', 'weblizar' ); // text for the 'Home' link

    Replace Home with the word of your choice. This should change the Home word in breadcrumbs.

    Hope this helps ??

    Best regards,
    Bojan

    @h3x: The breadcrum “Home” is Translation Ready.

    In .Pot file you can change your language.

    Thanks

    abhishek17

    (@abhishek17)

    How i am able to Make Home in multilingual

    abhishek17

    (@abhishek17)

    @weblizar How i am able to make Home (In Breadcrum) multilingual

    abhishek17

    (@abhishek17)

    I am added this line of code in functions.php ofchild theme and it works fantastically

    $r = $_SERVER[‘REQUEST_URI’];
    $r = explode(‘/’, $r);
    $r = array_filter($r);
    $r = array_merge($r, array());
    $endofurl = $r[1];
    if($endofurl==’hi’)
    {
    $home = __(‘????? ?????’, ‘weblizar’ ); // text for the ‘Home in Hindi’ link
    }
    elseif($endofurl==’ur’)
    {
    $home = __(‘???’, ‘weblizar’ ); // text for the ‘Home in Urdu’ link
    }
    else
    {
    $home = __(‘Home’, ‘weblizar’ ); // text for the ‘Home in English’ link

    }

    hi there,

    i have change “HOME” to “UTAMA”.

    i done editing this line $home = __(‘Home’, ‘weblizar’ ); // text for the ‘Home’ link

    but it cannot work

    can anyone help me?

    i try to add this coding

    $r = $_SERVER[‘REQUEST_URI’];
    $r = explode(‘/’, $r);
    $r = array_filter($r);
    $r = array_merge($r, array());
    $endofurl = $r[1];
    if($endofurl==’hi’)
    {
    $home = __(‘????? ?????’, ‘weblizar’ ); // text for the ‘Home in Hindi’ link
    }
    elseif($endofurl==’ur’)
    {
    $home = __(‘???’, ‘weblizar’ ); // text for the ‘Home in Urdu’ link
    }
    else
    {
    $home = __(‘Home’, ‘weblizar’ ); // text for the ‘Home in English’ link

    }

    but didnot work

    Hi,

    Please use WPML plugin for this.

    Please share your site URL.

    Thanks.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Make sure to create a new thread to discuss your own issues: https://www.ads-software.com/support/theme/enigma#postform

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Unable to edit home page "Home" name’ is closed to new replies.