Avada Child Theme for GD 1.0 released

This topic contains 75 replies, has 13 voices, and was last updated by  Joana Cardoso 8 years, 8 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #9767

    John Allsopp
    Expired Member
    Post count: 399

    Could you please include your URL and WP login details in a private reply, so that i can check it out for you and get you up-and-running 🙂

    #9772

    nicolalucie
    Free User
    Post count: 33
    This reply has been marked as private.
    #9822

    John Allsopp
    Expired Member
    Post count: 399

    Hi,

    I set your permalinks to %postname% and all is well 🙂

    #10120

    nicolalucie
    Free User
    Post count: 33

    Thanks John, you’re a star 🙂

    #10142

    nicolalucie
    Free User
    Post count: 33

    Good Evening Gentlemen,

    I seem to be having an issue with 3 elements:

    1) On the Homepage I don’t want the sidebar, however when I deselect ‘Home Right Section’ and make width of ‘Home Content Section’ to 100 – nothing changes.

    2) Latest places in sidebar – it does not respect ‘Post Content excerpt character count’

    3) When selecting ‘List View’ for latest places, it’s all messed up.

    Any ideas would be very much appreciated
    Thank you 🙂

    Details of site can be found in private post above!

    #10168

    Paolo
    Site Admin
    Post count: 31206

    Hi,

    1) not using GD wrappers, but avada wrappers, those width settings can’t have any effect. Avada doesn’t allow to manipulate width of it’s pages content, so only an extra css rule can work there:

    
    
    .home #content {
        width: 100%;
    }

    or replacing a function in your function.php file to force home to be full-width:

    replace

    
    
    
    // WRAPPER CONTENT OPEN FUNCTIONS
    function gd_avada_action_wrapper_content_open($type='',$id='',$class=''){
     if($type=='signup-page') {
      echo '<div id="content" class="full-width">';
     } else {
      echo '<div id="content">';
     }
    }
    

    with

    
    
    
    // WRAPPER CONTENT OPEN FUNCTIONS
    function gd_avada_action_wrapper_content_open($type='',$id='',$class=''){
     if($type=='signup-page' || $type=='home-page') {
      echo '<div id="content" class="full-width">';
     } else {
      echo '<div id="content">';
     }
    }
    

    At the moment I’ve added the second option…

    2) The widget by default displays the entire excerpt (this is a bug). Only after saving it applied the 20 carachters limit. I saved on your detail page and you can check it.

    3) This was a bug in GD plugin that I reported to developers. I’ve quickly applied a fix in geodirectory > design > script > Custom style css code:

    
    
    .gridview_onehalfclearfix {
        overflow: hidden;
    }

    Let us know if eevrything now is working as expected or if you have any other questions.

    Thx

    #10231

    nicolalucie
    Free User
    Post count: 33

    Absolutely Perfect 🙂 Thank you very much xx

    #14688

    openmindtrips
    Expired Member
    Post count: 180

    Hi
    I cant seem to install the avada child. I have done an installation of the parent theme, but I keep getting:

    Name Description
    GeoDirectory – Avada Child The parent theme is missing. Please install the “Avada” parent theme.

    I tried to remove the child theme in my ftp, and I also removed the parent, then uploaded avada parent, and then got the same message. What am I doing wrong?

    #14827

    Paolo
    Site Admin
    Post count: 31206

    Hi and sorry for the delay in replying to you.

    Can you please send us a link to your website and wp admin credentials in a private reply?

    This normally happenes when either the theme or the child theme are uploaded within an extra folder, but I need to check if this is the case.

    Let us know,

    Thx

    #15633

    idleme.com
    Expired Member
    Post count: 124

    hi can you help me with the mobile version of my website, i have tried everything to sort it out but am struggling now,

    the menu with location isn’t working correctly

    I’ve tested it on iPhone 5s, iPad mini and iPad and have issues on all of them regarding the menu using avada child theme.

    http://idleme.com

    Thanks

    #15727

    Paolo
    Site Admin
    Post count: 31206

    Hi,

    Avada latest version is 3.6 and there are few other minor issues with Avada child theme that we are fixing, it should be released very soon and we’ll keep you posted.

    Thx

    #15730

    idleme.com
    Expired Member
    Post count: 124

    ok i will wait for the updates, also is there anyway of adding the functionality of the change location in the menu to be included in the search bar and remove the search near input box?

    seeing as they don’t work together there are not much use

    Darren

    #16168

    tommiekeeston
    Free User
    Post count: 18
    This reply has been marked as private.
    #16169

    Paolo
    Site Admin
    Post count: 31206

    should be today…

    #16187

    Paolo
    Site Admin
    Post count: 31206
Viewing 15 posts - 61 through 75 (of 76 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket