Viewing 30 results - 214,951 through 214,980 (of 244,463 total)
  • Author
    Search Results
  • #309218

    In reply to: Layout Gravity form

    This reply has been marked as private.
    #309169

    Hey Tal!

    In that case maybe the Image with hotspots is what you need:
    http://kriesi.at/themes/enfold/shortcodes/images-with-hotspots/

    Best regards,
    Josue

    #309151

    Hey!

    Please update the theme to the latest version (2.9.1).

    Best regards,
    Josue

    #309126

    Hi Jens!

    Thank you for using Enfold.

    Do you mind if we take a look at the actual website? It is better if you contact the plugin author. I’m sure they can give you a lot more insight regarding the problem.

    Regards,
    Ismael

    #309120

    Hey!

    No, I’m sorry but it’s not possible without modifying the theme files. Unfortunately, this particular task falls beyond the scope of support. You might need to hire someone to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Regards,
    Ismael

    #309119

    Hi eschmann!

    Thank you for using Enfold.

    I checked all languages’ home page and they’re all working fine. I’m sorry but I’m not sure what’s the issue here.

    Best regards,
    Ismael

    #309111

    Hi samforan!

    Thank you for using Enfold.

    Looks like you’re using the special heading element. What is the Heading Type that you’re using? If you’re using H1,you can set the font weight with this on Quick CSS or custom.css:

    #top #wrap_all .header_color h1, #top #wrap_all .main_color h1, #top #wrap_all .alternate_color h1, #top #wrap_all .footer_color h1, #top #wrap_all .socket_color h1 {
    font-size: 28px;
    font-weight: 300;
    }

    Cheers!
    Ismael

    #309109

    Hi Yigit!

    Added this to wp-content/theme/enfold/functions.php and it either doesn’t do a thing OR got a server error and the site didn’t loaded at all…

    really put in some effort to understand how tihs works and found
    wp-content/plugins/bbpress/templates/default/bbpress/content-single-topic.php

    understand that

    <?php bbp_get_template_part( 'pagination', 'replies' ); ?>
    
    			<?php bbp_get_template_part( 'loop',       'replies' ); ?>
                
    			<?php bbp_get_template_part( 'pagination', 'replies' ); ?>
    

    makes pagination, then replies, and pagination, and if i write a standard echo “where is my pagination bro?” he displays it but not the page links…

    sorry that i’m a noob but i’m ready to learn…

    #309108

    Hi Sven!

    Thank you for using Enfold.

    We would like to see the actual page with the table. Please post the website url here so that we can inspect it.

    Regards,
    Ismael

    #309104

    In reply to: Div to be full stretch

    Hi codecreative!

    Thank you for using the theme.

    You can use the Color Section element inside the Layout Elements panel. The element will give you a fullwidth section. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Cheers!
    Ismael

    #309102

    In reply to: media categories

    Hi Enffie!

    Thank you for using Enfold.

    No, I don’t think there is a media category on the uploads screen of WP. There never was if I am not mistaken.

    Regards,
    Ismael

    #309100

    Hey Jamie A!

    Thank you for using Enfold.

    There are no css declaration above that will affect the post navigation. Do you mind if we take a look at the actual page? Please post the website url here.

    Regards,
    Ismael

    #309090

    In reply to: IDX plugin with enfold

    Hi tassavor!

    Thank you for using Enfold.

    There are some idx plugin related issues on the forum, you might want to search for it. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Your best bet is to contact the plugin author or hire a freelance developer to investigate the issue.

    Thank you for your understanding.

    Cheers!
    Ismael

    #309086

    Hi Guenter!

    Thank you for using Enfold.

    I’m not really sure if I understand you clearly but this is actually not a theme related issue and improving any related performance regarding the customization on the tab element should be done by yourself or a freelance developer. Thank you for your understanding.

    Regards,
    Ismael

    #309061

    Topic: GA action tracking

    in forum Enfold
    NosovK
    Participant

    I would like to add some sustom GA tracking via
    onclick="_gaq.push(['_trackEvent', 'Download','loader1'])
    Is there any way to add something like that trigger: add_theme_support(‘avia_template_builder_custom_tab_toogle_id’);?
    Just to add coresponding elements to all buttons and tags?
    I allready saw
    that article about contats form, and allready use it here. But unfortunatly I need some other elements to track. For example big green button on that page – I should track downloads. Really say sometimes we need custom track for simple A elements.
    Google Analitics pretty common, and making some easy custom tracking form could be pretty usefull.

    #309051
    NosovK
    Participant

    Hello!
    I’ve use your child theme to customize google fonts, becouse I have cyrilic site, and standart fonts looking horryble.
    I used that article:
    http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/

    After making changes to my functions.php I can pick new google fonts in Theme Settings, but after I push Save All button – all changes reset to deafult. Why?

    #309049
    Charlie999
    Participant

    Hi!
    I have my site translated with WPML. The language flags are automatically added to the topmenu if i use a topmenu. This is not mobile friendly to have them there and i can’t find a solution to disable them from WPML settings, and not from Enfold theme settings.
    I want to place them somewhere else, in my first color section on startpage and in the socket.

    To do that i need to add this code in functions.php:

    function language_selector_flags(){
        $languages = icl_get_languages('skip_missing=0&orderby=code');
        if(!empty($languages)){
            foreach($languages as $l){
                if(!$l['active']) echo '<a href="'.$l['url'].'">';
                echo '<img src="'.$l['country_flag_url'].'" height="12" alt="'.$l['language_code'].'" width="18" />';
                if(!$l['active']) echo '</a>';
            }
        }
    }

    and this in a textblock and socket:
    <div id="flags_language_selector"><?php language_selector_flags(); ?></div >

    But where do i find the file with the socket file and the right place?
    I do also need this code in Quick CSS:

    #flags_language_selector img{
          margin:1px;
          border:1px solid #333;
    }

    So my problem is how to disable the flags from topmenu and where to find that socket file and the right place?

    Regards, Charlie

    #309046

    Hey coretekk!

    Take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Devin

    #309029
    redmans
    Participant

    Hi to all you hard working support people.

    This is probably a really stupid question but I would be really grateful if I could find out if Enfold is written using HTML5.

    Stan

    #309012
    MLA18
    Participant

    Hi there,

    I have had this website previously working successfully on SSL. However, we just moved the website away from BlueHost to SiteGround. After the move/copy/transfer was completed and the DNS was switched over to SiteGround, the SSL certificate was purchased and installed.

    However, now the theme appears to be broken. All URL’s have been changed to https. WordPress https is installed and active.

    Any ideas or feedback would be greatly appreciated. The website URL is noted in the “private content” below.

    Thanks!

    #309007

    Hey!

    There are some scripts showing as not loading on that page which are no longer used with version 2.9.1. Make sure you are using Enfold version 2.9.1 and that you’ve cleared any caching plugins cache that is displayed on the front end.

    Best regards,
    Devin

    #308999

    Topic: Gravity Form

    in forum Enfold
    fbccabool
    Participant

    Every time I place a Gravity Forms on a page it places a horizontal black strip on the left side of the window. I cannot figure out how to fix it and Gravity Forms says that it is a problem with enfold. Please help.

    #308988

    Topic: Backing up the site

    in forum Enfold
    Cheryl
    Participant

    Not sure if this is the right place to ask, but do you recommend an optimal backup plugin or software for Enfold?

    Thanks in advance for your help.

    #308984
    KairosCanada
    Participant

    Two questions re. customizing the main menu drop down.

    1) The main menu drop down is hanging too far below the main menu.
    This is what is holding it up:

    element.style {
        height: 88px;
        line-height: 88px;
    }

    How/where do I edit this? No stylesheet is indicated by Firebug.

    2) I want the color of the drop down menu font to be white (it is currently too dark).
    How do I edit this? (I’ve been looking long and hard for this!).

    Any help would be much appreciated.

    nik

    #308980

    Thank you for the help and sorry for the delayed reply.

    That function and CSS fixed the issue with the Enfold footer text being on top of the sticky footer. However, the sticky footer remains at the bottom of the page within the footer and it now displays on every page of the website. Is there a way to call the function only on the team page and have it stay within the page’s content area?

    New screenshot: https://www.dropbox.com/s/9a8vx99lp4ul56r/Capture08252014.PNG?dl=0

    #308945

    Topic: IDX plugin with enfold

    in forum Enfold
    tassavor
    Participant

    Not sure if any of the enfold users have the same issue.

    Using IDX plugin ( http://www.diversesolutions.com/idx/idx-plugin-for-wordpress ) to list properties using enfold theme. When i use IDX shortocde with enfold instead of list of properties. It returns us a link like: ” See all Featured Listings ”

    However if i disable enfold I get the list of all properties instead of the link.

    Here is the shortcode i’m using:
    [idx-listings linkid=”400766″ count=”20″ showlargerphotos=”true”]

    #308933

    Hi,

    Yes, I was trying to use enfold buttons first, then others from a plugin. I eventually tried the standard text plugin (I’d avoided it because it means creating stuff elsewhere and copying it into the text box afterwards and I was reluctant to do that) and found that it worked with 3rd party buttons. I didn’t have time to look at enfold buttons, so I’ll have another look tonight. I suppose I’m just being lazy.

    Thanks for the answer.
    Brian

    #308928

    revisiting this idea again…my question is this….do I paste this code in the theme functions php or the functions-enfold.php within the wordpress editor?

    #308924

    Hey jdrijver!

    Have you tried deactivating all active plugins? And to be sure, make sure you are running the most recent version of the theme (2.9.1 right now).

    I have Enfold running on our documentation multisite without issue so at the very least I know it works on a fairly active multisite install by default.

    Best regards,
    Devin

    #308895

    Hey otherwisz!

    No we don’t unfortunately. Its pretty uncommon for a single theme to have a style guide like a css framework does. You could use the theme demo as one however since it has examples of every element the theme comes bundled with: http://kriesi.at/themes/enfold/shortcodes/

    Starting at Animated numbers and working your way down is a pretty comprehensive list of everything.

    Cheers!
    Devin

Viewing 30 results - 214,951 through 214,980 (of 244,463 total)