Viewing 30 results - 208,501 through 208,530 (of 244,634 total)
  • Author
    Search Results
  • #344022

    Hi!

    I believe that was your WordPress installation or a plugin related issue. As @albertpr9 said, please go to ThemeForest/downloads and download the latest version and re-install the theme – http://kriesi.at/documentation/enfold/faq/#install

    @albertpr9
    thanks :)

    Best regards,
    Yigit

    #344013

    Hey Jamie A!

    Your question is a bit confusing to me. Dummy pages and template pages are two different things. Dummy data is database content and template pages are physical templates located in Enfold theme folder.

    The old template pages are not entirely compatible when you comapre different versions of the theme. There may be code differences between the two.

    That said, you should be able to upgrade to the new theme without problem if you have not made coding changes to your installed theme.

    Regards,
    Arvish

    #343983

    Hey!

    Sure, please add your logo and then go to Enfold theme options > Header > Header Size and set it to Custom pixel value and choose the height you would like to display. Logo will be resized automatically

    Cheers!
    Yigit

    #343976

    Topic: Multilingual site

    in forum Enfold
    amepro
    Participant

    Dear all,
    I’ ve the necessity to create a MultiLingual site and normally I used WPML-Multilingual Plugin so is it possible to know if this plugin is compatible with Enfold? If not there is a possibility to find another plugin with which is possible to obtain a multilingual site?

    Thank you for any hint

    #343975

    Hi Andy,

    Thanks for reply !

    I can’t share link cause this try is on local wamp, but all new install WP + Enfold do same thing. I took screenshots for show my problem :

    My text in TinyMCE : Pic 1
    Now on avia builder (on page edit) : Pic 2
    And the result on web (similar to Pic 2, of course !) : Pic 3

    I think this problem is easily solvable but i don’t know how, on WP without Enfold just installing Advanced TinyMCE plugin solve this when i check the option for stop removing <p> ans <br /> tags.

    #343957

    Thanks, that works. Couldn’t you build that in as an option to enfold, so people don’t have to mess with their functions.php?

    #343954
    Jamie A
    Participant

    Can I pick and choose some of the new template designs in my existing site which consists of entirely the old classic pages?

    Also can I import the dummy pages of the new designs? without addin all the old classic enfold templates?

    #343951

    Forgot to mention, using latest version of WP and Enfold.

    #343948

    Hi Ismael, kikidesoibs

    I have the same problem. What did you do to fix this? WP and Enfold theme are up to date.

    NL (dutch) is default language.
    FR: styles are loaded directly in to page, so style.css of child-theme is overridden:

    <!– custom styles set at your backend–>
    <style type=’text/css’ id=’dynamic-styles’>

    Same page, translated with WPML:
    NL: http://www.smartschool.be/aanmelden/
    FR: http://www.smartschool.be/fr/aanmelden-2/

    How can I make it so the css is loaded the same way on both languages ?

    #343941

    Hello @Ismael
    Great :-) Better than modifiying Enfold core files.
    I’ve found some tricks that can do what I want :

    RANDOM AND POST FROM THE CURRENT MONTH :

    add_filter('avf_magazine_entries_query', 'avf_magazine_entries_custom_query');
    function avf_magazine_entries_custom_query ( $query ) {
    $query['orderby'] = 'rand';
    $query['order'] = 'DESC';
    $current_month = date('m');
    $query['monthnum'] = $current_month;
    return $query;
    

    RANDOM AND POSTS FROM THE LAST 5 WEEKS

    add_filter('avf_magazine_entries_query', 'avf_magazine_entries_custom_query');
    function avf_magazine_entries_custom_query ( $query ) {
    $query['orderby'] = 'rand';
    $query['order'] = 'DESC';
    $query['date_query'] = array(
                                	array(
                                		'after' => '5 week ago'
                                	)
                            );
    return $query;
    }
    

    With the help of :
    https://tommcfarlin.com/get-posts-from-last-week/
    and
    http://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters

    #343936

    Hi djsmbd!

    Thank you for using Enfold.

    I have notified my colleagues using IPhones to verify the site on their systems. They will get back to you shortly.

    Regards,
    Arvish

    #343935

    In reply to: Enfold Secondary Menu

    Hi!

    You can achieve what you are requesting by using conditionals to display different menus or many parts in (theme folder)/includes/helper-main-menu.php

    E.g

    <?php
    if ( is_user_logged_in() ) {
    	echo 'Welcome, registered user!';
    } else {
    	echo 'Welcome, visitor!';
    }
    ?>

    Unfortunately this customisation will take a while to implement and therefore falls outside the scope of our theme support. You can try http://studio.envato.com or http://www.peopleperhour.com for further customization. You can also vote for or post a feature request on our feature request page https://kriesi.at/support/enfold-feature-requests/.
    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Best regards,
    Arvish

    #343932

    Thanks Yigit, on closer inspection Filezilla had been creating an Enfold folder inside the destination folder as oppose to merging it. Never seen that before as the default should be to merge folders with the same name. Either way the Theme looks updated now.

    #343924
    georgivalchev
    Participant

    Hello,

    Currently I can’t deal with the following issue:

    I made a color section (let’s call it #MySection) and I want simply to put an image inside. Also I want my users to experience the whole image within their browser windows without messing up the image ratio and stay completely responsive.

    1. Enfold Theme does fit the image by browser width – OK!

    2. Enfold Theme does not fit the image by browser height – NOT OK!

    The problem occurs when I upload square or portrait orientated image. Then the theme fits the image by browser width, but you have to scroll down to view the hole image.
    I suppose the image should be fitted (scaled) both by width and height whether the browser width or height is smaller.

    Is there any way to fix this issue?

    Thank You

    #343920
    This reply has been marked as private.
    #343916
    This reply has been marked as private.
    #343906
    markpevans
    Participant

    Hi,

    Is there a way of adding a block colour behind certain columns in Enfold using layer builder?

    #343895

    In reply to: Yoast SEO Plug IN

    Hi Kriesi,

    Thanks for your well worded and thoughtful reply. I think I will continue to sit on the sidelines and not take the benefits of the features of the new revisions of Enfold and Yoast until either the compatibility is solid or I am forced to experiment. I am probably the 1% of users that will have an issue :). I’ll keep on checking back-in to keep current on progress to see if you figure it out and nail the problem down.

    All the best,

    Ed

    #343893

    Hi chryseis!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css to adjust the menu padding and font size on a tablet screen size:

    @media only screen and (max-width: 1024px) {
    #top #header .av-main-nav > li > a {
    font-size: 12px;
    padding: 0 8px;
    }
    }

    You can also adjust the size of the logo wit this:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive .logo a, .responsive .logo img {
    max-height: 65px !important;
    height: 65px !important;
    top: 5px;
    }
    }

    Regards,
    Ismael

    #343892

    Hi koala!

    Thank you for using Enfold.

    Please use google inspector or firebug to inspect the element selectors. Use rgba color values on the css background property. Something like this:

    .selector {
    background: rgba(255,255,255,.5);
    }

    I’m sorry but we are stumped with inquiries so I’m not being too specific at this point but google inspectors and firebug plugin will really help you with website design. Please try to start using it right now.

    Regards,
    Ismael

    #343890

    Hi direggio!

    Thank you for using the theme!

    Did you update WordPress to 4.0 recently? I’m sorry but you’re using a very old version of the theme, 2.4.2. Please download the latest version 3.0.2 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    The update might change the layout of the theme a bit so you need to adjust the theme options or reconfigure the elements from scratch. Please update the theme regularly. A new patch will be available every now and then to cope up with wp changes and updates.

    Regards,
    Ismael

    Hi oakfurniturehub!

    Thank you for using Enfold.

    Regretfully, we cannot provide support for third party plugins or scripts, specially extensions, 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. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.

    Thank you for your understanding.

    Best regards,
    Ismael

    #343883

    Hi!

    I’m sorry but aside from the video tutorial on how to update the theme, I’m afraid we can’t be of any help at this time. Please review the tutorial or hire a freelance developer to override the old theme files with the new one. Make sure that you extract the enfold folder from the theme zip package. You can find all you need from the video. Please watch it again.

    Cheers!
    Ismael

    #343882

    Hey GGLNetwork!

    Thank you for using Enfold.

    1.) Thumbnails are cropped differently depending on the image dimension and proportion. You can use this apply a minimum and max height for blog grid thumbnails but this might stretch landscape images. The best solution is to use images with the same sizes for post featured images:

    .page-id-33 a.slide-image img {
    min-height: 135px;
    max-height: 135px;
    }

    2.) What arrow? A screenshot will help.

    3.) You chose 3 columns so it will render 3 columns. Why did you place the blog posts inside a 3/4 column?

    4.) I’m sorry but this particular modification is beyond the scope of support. You can try to use the magazine element but the layout is different from the blog grid element.

    Cheers!
    Ismael

    #343877

    In reply to: Redirects

    Hey Justin!

    Thank you for using Enfold.

    Please add this on top of the .htaccess file:

    RedirectMatch 301 ^/wp-content/$ http://la-appraisal.com
    RedirectMatch 301 ^/wp-content/dir/$ http://la-appraisal.com
    

    Create a backup of the file first, just in case.

    Best regards,
    Ismael

    #343875

    Hey evilgglong!

    Thank you for using Enfold.

    I used the same shortcode on my installation and it works fine. Please try to deactivate the plugins then test the shortcode again. If possible, test it on a text block, switch to Text / HTML mode:

    [av_video src='http://vimeo.com/1084537' format='16-9' width='16' height='9']
    

    Best regards,
    Ismael

    #343873

    Hi!


    @etnMathy
    . The languages are saved on wp-content > themes > enfold > lang folder. Before updating, create a backup of the language files (.mo and .po). After the update, override the default lang folder.

    @marcellametae: What do you mean it doesn’t load automatically?


    @adagietto
    : Please use the codestyling localization plugin. Go to Tools > Localization. Look for the Enfold theme, add or select the language files that you want to translate then click Rescan. When finished, click Edit then look for the strings that you want to translate. Don’t forget to click the generate mo file button.

    Cheers!
    Ismael

    #343872

    In reply to: icon list size

    Hi dhuet!

    Thank you for using Enfold.

    For now, you can only modify the icon size and circle with css. Add something like this on Quick CSS or custom.css:

    .avia-icon-list .iconlist_icon {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 10px;
    border-radius: 500px;
    margin-right: 30px;
    margin-left: 18px;
    }

    Adjust the values.

    Best regards,
    Ismael

    #343865

    Hi!

    Thank you for using Enfold.

    @Tung Do: Thanks! Very helpful. :)


    @itchybrain
    : Aside from the suggestions above, you can use the wp_head action hook function. Regarding the google fonts, the theme have a particular filter for that. Use this on functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }

    Change the google font name and specify the correct font weights.

    Best regards,
    Ismael

    #343861

    Hey!

    Yes, unfortunately, for now the magazine element can only fetch the event posts. Please feel free to open a request or vote for this feature on our Feature Requests.

    Regards,
    Ismael

Viewing 30 results - 208,501 through 208,530 (of 244,634 total)