Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • Hi,

    I have edited the file: “enfold\config-templatebuilder\avia-shortcodes\tab_section.php”
    added: $tab_title_id = str_replace(‘ ‘, ”, $tab_title);
    to the line 382

    and edited line 383
    from : $tabs .= “<a href=’#{$tab_title}’ data-av…
    to: $tabs .= “<a href=’#{$tab_title_id}’ data-av…

    this only removed the space in the IDs for every title (which has a space ex: “Some Title”) in the title container, but it works even on firefox now.
    for now this seems to be working, but I’ll be glad if you have a better solution for this.

    Thanks again !

    Hi,
    not sure if I should be posting this question here.
    There is a problem with the tab sections IDs, the ID is set using the title, so for example when I use this title: “Some Title”, the ID will be “#Some Title”, With a space , and it doesn’t work on FireFox. I had to add a dash “-” instead of the space in the title to make it work, so the new title is “Some-Title”.

    I have checked the link from Victoria’s reply above, the user who asked the question posted a link to his website which also have the same problem.

    Is there any way to fix this? even if the ID is set automatically

    Thank you

    in reply to: Removing duplicate blog post recommendations #723761

    Hi,

    I’m having the same problem here, I tried the above code:

    add_filter(‘avia_post_slide_query’, ‘enfold_customization_query_custom’);
    function enfold_customization_query_custom( $query ) {
    global $post;
    if ( is_single() ) {
    $query[‘post__not_in’] = array($post->ID);
    return $query;
    }
    }

    Seems to be working with grid layout only, but my blog layout doesn’t show up (which is also a grid layout).
    any idea what could be the problem ?

    Thanks

    EDIT:

    Hi,

    a friend helped and this fixed the problem:

    add_filter(‘avia_post_slide_query’, ‘enfold_customization_query_custom’);
    function enfold_customization_query_custom( $query ) {
    global $post;
    if ( is_single() ) {
    $query[‘post__not_in’] = array($post->ID);
    return $query;
    }
    else
    return $query;
    }

    Thanks !

    • This reply was modified 7 years, 11 months ago by sam-to-911. Reason: Solved
    in reply to: Color Section custom-height #723550

    Hi Rikard,

    Always a pleasure to help :)

    Thanks

    in reply to: Color Section custom-height #723272

    Hi,

    I’m glad I could help :)
    also, I don’t think this will take much time to do, even with a 20+ pages website.
    if you want to set the same height value for multiple elements, you can set the same ID for all the color sections you’d like to apply this for.
    this way you can set the ID (for example: height-100-section) to each color section you need and choose a custom height with any value, then add the following to your custom css:

    #height-100-section .container {
    height: 100vh !important;
    }

    I think this can be done in 15 mins for 20 pages.
    Sorry I’m not one of the support team, If I was I would have done it for you.

    Good luck !

    in reply to: Hiding Author #722150

    Hey,

    I just found this: http://wordpress.stackexchange.com/questions/5742/change-the-author-slug-from-username-to-nickname
    This will change the link from “/author/username” to “/author/nickname”

    this is perfect, this way anyone who’s trying to find your admin username will only see the nickname (which should be changed to anything else from the profile edit page)

    Thanks

    in reply to: Hiding Author #722142

    Hi,

    Thank you ! That changed the name, but a link is still there with the username.
    is there a way to remove the link ?

    Thanks again :D

    in reply to: Color Section custom-height #722124

    Hi,

    This worked for me, not sure if it’s the best solution but it works :)

    edit your color section –> (Section minimum height) select “Custom height in pixel” then set it to any value in px, this will keep the elements inside the section aligned in the middle (vertical align).
    then type an ID for the section (For Developers: Section ID).

    finally add this to your custom css:

    #your-section-id .container {
    height: 100vh !important;
    }

    vh is Viewport Height, edit the value as needed , (100vh is 100%) you can google it to learn more about this ;)

    Goodluck

    in reply to: enfold (v 3.3.2) all sliders not working #526148

    Hi,

    I’m having the same problem.
    all the pages with layer slider wont load, and any other pages without slider loads perfectly.
    I have tried editing and removing the layer slider element from one page and the page is loading perfectly, and when I try to edit any slider I only get the layerslider update message.

    I’m using the latest version of enfold 3.3.2 and wordpress 4.3.1 on WAMP.
    I tried and downloaded the theme again, also didn’t work.
    Please let me know if there is anything else I should try.

    Thanks in advance,

    • This reply was modified 9 years ago by sam-to-911.
    in reply to: Full width Mega Menu #343076

    Hi,
    I’ve fixed that myself ;)

    Thanks

    in reply to: Updated files for 3.0.2 #342350

    Hi Yigit,
    I’m using version 3.0.1
    I thought you could tell me which files are changed.

    I guess I have to do everything again..
    Thanks for your help :)
    I will post the translation files as soon as its ready ;)

    in reply to: Full width Mega Menu #342298

    Hi Yigit

    Its not online yet.. im working on localhost …
    What im trying to do is with the submenu (mega menu ).
    I would like to change it to full width.
    is it possible ?

    Thanks

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