Viewing 30 results - 240,571 through 240,600 (of 243,737 total)
  • Author
    Search Results
  • #132736

    Hey!

    Did you solve the problem? I’m asking because the thread is marked as resolved.

    Best regards,

    Peter

    #132840

    Hi,

    yes you’re right. It seems to be a WPML issue/bug. However (as supposed in my last post) it’s not theme related because if I switch to another theme (like the default TwentyTwelve theme) I still have the same error. I tried to deactivate all plugins – then it works because WPML is not activate. Then I switched the theme to TwentyTwelve and activated WPML again and the error was there again. So it must be a plugin problem. I’d suggest to contact the plugin devs here: WPML and ask them to look into it.

    #132631

    In reply to: Slider fade speed

    Tbh this would really surprise me if the transition speed varies from slide to slide because the executed code is always the same. However if the transition speed is still too fast try to increase the value or replace following code in enfold/js/shortcodes.js

    displaySlide.css({visibility:'visible', zIndex:2, opacity:0}).avia_animate({opacity:1}, this.options.transitionSpeed/3, 'linear');

    hideSlide.avia_animate({opacity:0}, this.options.transitionSpeed/2, 'linear', function()

    with

    displaySlide.css({visibility:'visible', zIndex:2, opacity:0}).avia_animate({opacity:1}, this.options.transitionSpeed, 'linear');

    hideSlide.avia_animate({opacity:0}, this.options.transitionSpeed, 'linear', function()

    #27216
    wepe1507
    Participant

    I use the Enfold-theme and have changed the alternate background color in the enfold options menu. When I do this, also the background color of input field of the search bar in the main menu changes.

    What have I to do that background color of the search bar remains white and how can I change the font color of the search bar input field in the main menu?

    Thanks.

    #132839

    hi peter, I have created the account, you will receive a notification from http://www.galarestaurant.es

    #27017
    NCornelius
    Participant

    Had created a few slides using LayerSlider and at first things were working fine, and as of last Thursday, our slides started losing the text headings.

    1) Have disabled every plugin – no change

    2) Disabled the background – text reappears

    3) Changed to a different file for the background – text disappears again.

    4) Tried Enfold’s demo slide – first page works fine as logo and text is actually a graphic, but 2nd page only shows the screens and screen elements. Text blocks to the left don’t appear – no edits were done to the default demo slide.

    5) Have tried Ismael’s suggestion in an earlier issue to up the memory to 256M – no change

    6) Have asked the web hosts if they made any changes or updates to the server software or settings – they assure me they have not.

    7) Have gotten the web hosts to restart our server – no change

    8) Have checked text content layers – Using <div> as per the Enfold demo, no change, using H1, H2, etc, text appears in the preview, but not on the site.

    9) Have tried removing custom styles – no change

    10) Have deactivated my child theme – no change

    As far as I can tell, nothing has changed from my perspective except the backend PHP tweaks for iconbox.

    Would be nice if there was a fix for this.

    #132838

    Hey!

    Thanks for the notice. It’s quite strange though because our theme does not interact with the media translation in any way…

    Best regards,

    Peter

    #132729

    In reply to: Changing menu layout

    No, the “small non-fixed header” doesn’t support such a layout and you’d need to customize the code. However you can use the “Header with bottom menu + social media icons” option – http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/ – it looks similar to the menu of http://www.iphotoscanning.co.uk/ and we can help you to change the background color of the menu (i.e. see https://kriesi.at/support/topic/setting-navigation-text-color-setting-font-size ).

    #27214
    adrenal
    Participant

    Hi,

    Great theme and support guys,

    I have 2 questions:

    1) I must be missing something basic here: all I want to do is add images (actually advertisments) to the sidebar that are full sidebar width.

    The enfold advertising area widget images are too small so I used the text widget and added:

    But this doesn’t work. The jpg is where it’s supposed to be and I’ve checked everything else.

    Is there an easier way?

    2) The semi-transparent tabs with < > at the side of blog pages that flip to next or previous page. I would like to make them the same colour as the theme color which in my case is orange. Would like to keep semi transparent etc.

    Thanks

    Adrian

    #131348

    Hi,

    1.) You can use FTP or go to your cpanel to edit wp-config.php.

    2.) Please overwrite your wordpress installation with a new wordpress download, see if it fixes the menu. Override the whole site except the wp-content folder.

    Regards,

    Ismael

    #133066

    Hey,

    The idea is almost the same but no. :)

    Regards,

    Ismael

    #114773

    And another one: An option to deactivate elements in the advanced layout editor to hide the elements but not delete their content. Similar to the “Inactive Widgets” pane in the widget section of WordPress.

    #132973

    In reply to: Mega Menu resizing

    Hi,

    Go to Enfold > Styling > scroll at the bottom, look for the Quick CSS field. Add this code.

    .avia_mega_div {
    width: 1024px;
    }

    Save changes then remove browser cache and reload the page. Please give us a link to your website.

    Regards,

    Ismael

    #132589

    Hi,

    Go to Enfold > Sidebar > Sidebar on Archive Pages, choose left sidebar. Go to Appearance > Widgets panel, add the Latest News widget on the Sidebar Blog widget area.

    Regards,

    Ismael

    #129623

    Hi,

    Yes, that might be the problem. As you can see on the screenshot, it works properly on my end. Create a test installation without your sidebar plugins then Import the dummy data. Add the css code above.

    Regards,

    Ismael

    #133044

    Hi,

    Kriesi removed the caption on the prettyPhoto plugin. You can add a request here to turn it back. https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    #133096

    I have to correct the first post.

    The post was never published due to an error on a plugin, now resolved.

    I discovered that the problem of the -1 message after the publishing of a post as “author” is because an incompatibility between Enfold theme and the plugin WP Admin UI Customize (http://wordpress.org/plugins/wp-admin-ui-customize/)

    If I only change to the main WP theme it’s ok.

    If this could help I found that this is the die() method that stops the refresh of the post page after its publishing.

    It can be found on wp-includes/pluggable.php

    function check_ajax_referer( $action = -1, $query_arg = false, $die = true ) {

    if ( $query_arg )

    $nonce = $_REQUEST[$query_arg];

    else

    $nonce = isset($_REQUEST) ? $_REQUEST : $_REQUEST;

    $result = wp_verify_nonce( $nonce, $action );

    if ( $die && false == $result ) {

    if ( defined( ‘DOING_AJAX’ ) && DOING_AJAX )

    wp_die( -1 );

    else

    die( ‘-1’ ); // <— this is the -1 shown

    }

    do_action(‘check_ajax_referer’, $action, $result);

    return $result;

    }

    I’m using Enfold 1.8.4

    Thank you

    #27207
    stunna42
    Participant

    Hello Epic Kriesi Support Team – How can I give the inactive tabs at http://thebailorgroup.com/jonathan-bailor/#tab-id-4 a transparent white background color so that the tab title’s are visible. Please see http://thebailorgroup.com/wp-content/uploads/2013/08/enfoldTabs8.4.13.png

    Thanks for everything!

    #133093

    Kriesi used following code to build the page

    [av_textblock]
    <h2 style="text-align: center;">Learn about our Team and Culture</h2>
    <p style="text-align: center;">We are a team of dedicated professionals, ready to do what ever it takes to make your business grow</p>
    [/av_textblock]

    [av_hr class='short' height='50' shadow='no-shadow' position='center']

    [av_one_half first]
    [av_team_member name='Max Mac Man' job='CTO' src='http://dummyimage.com/600x400/000/fff&text=Pic' description='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. ']
    [av_team_icon title='Max on Behance' link='' link_target='' icon='246']
    [av_team_icon title='Max on Facebook' link='' link_target='' icon='214']
    [/av_team_member]
    [/av_one_half]

    [av_one_half]
    [av_team_member name='Max Mac Man' job='CTO' src='http://dummyimage.com/600x400/000/fff&text=Pic' description='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. ']
    [av_team_icon title='Max on Behance' link='' link_target='' icon='246']
    [av_team_icon title='Max on Facebook' link='' link_target='' icon='214']
    [/av_team_member]
    [/av_one_half]

    [av_promobox button='yes' label='Contact Enfold' link='manually,#' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='large' icon_select='yes' icon='5']
    Welcome! This is our dedicated Team. Did we say that we would love to work with you? So dont be shy, get in touch!
    [/av_promobox]

    [av_one_third first]
    [av_team_member name='Max Mac Man' job='CTO' src='http://dummyimage.com/600x400/000/fff&text=Pic' description='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. ']
    [av_team_icon title='Max on Behance' link='' link_target='' icon='246']
    [av_team_icon title='Max on Facebook' link='' link_target='' icon='214']
    [/av_team_member]
    [/av_one_third]

    [av_one_third]
    [av_team_member name='King Cul' job='Marketing & Sales' src='http://dummyimage.com/600x400/000/fff&text=Pic' description='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. ']
    [av_team_icon title='King on LinkedIn' link='' link_target='' icon='221']
    [av_team_icon title='King on Github' link='' link_target='' icon='204']
    [/av_team_member]
    [/av_one_third]

    [av_one_third]
    [av_team_member name='Max Mac Man' job='CTO' src='http://dummyimage.com/600x400/000/fff&text=Pic' description='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. ']
    [av_team_icon title='Max on Behance' link='' link_target='' icon='246']
    [av_team_icon title='Max on Facebook' link='' link_target='' icon='214']
    [/av_team_member]
    [/av_one_third]

    [av_one_third first]
    [av_team_member name='Harra Halloy' job='Marketing & Sales' src='http://dummyimage.com/600x400/000/fff&text=Pic' description='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. ']
    [av_team_icon title='King on LinkedIn' link='' link_target='' icon='221']
    [av_team_icon title='King on Github' link='' link_target='' icon='204']
    [/av_team_member]
    [/av_one_third]

    [av_one_third]
    [av_team_member name='Harra Halloy' job='Marketing & Sales' src='http://dummyimage.com/600x400/000/fff&text=Pic' description='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. ']
    [av_team_icon title='King on LinkedIn' link='' link_target='' icon='221']
    [av_team_icon title='King on Github' link='' link_target='' icon='204']
    [/av_team_member]
    [/av_one_third]

    [av_one_third]
    [av_team_member name='Harra Halloy' job='Marketing & Sales' src='http://dummyimage.com/600x400/000/fff&text=Pic' description='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. ']
    [av_team_icon title='King on LinkedIn' link='' link_target='' icon='221']
    [av_team_icon title='King on Github' link='' link_target='' icon='204']
    [/av_team_member]
    [/av_one_third]

    [av_hr class='full' height='50' shadow='no-shadow' position='center']

    [av_textblock]
    <h2 style="text-align: center;">The Office</h2>
    <p style="text-align: center;">We recently moved the team to Florida. Here is how it looks like if you work with us</p>
    [/av_textblock]

    [av_slideshow size='entry_without_sidebar' animation='slide' autoplay='false' interval='5']
    [av_slide id='315']
    [av_slide id='314']
    [av_slide id='313']
    [/av_slideshow]

    [av_textblock]
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient <strong>montes</strong>, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_textblock]

    You can insert it into the default editor, the save the page and switch to the advanced editor to import it.

    The “the office” section uses a fixed background image – you can edit the color section to set a bg image. The settings are:

    background-repeat: no-repeat;

    background-image: url(http://kriesi.at/themes/enfold/files/2013/04/photodune-1011301-city-skyline-m1.jpg);

    background-attachment: fixed;

    background-position: center center;

    #133120

    Open up wp-content/themes/enfold/js/avia.js and search for

    if(st < el_height/2)
    {
    newH = el_height - st;
    header.removeClass('header-scrolled');
    }
    else
    {
    newH = el_height/2;
    header.addClass('header-scrolled');
    }

    Replace 2 with a lower value like 1.5 or 1.2 and the menu height should increase accordingly. At the moment Kriesi shrinks the menu height to the half size because of the division by 2.

    #133101

    Maybe the browser cached some css files. Enfold generates a dynamic css file when you change the settings and maybe the browser just used the file which contained the old css code instead of the newly generated file.

    #27196
    energetic2013
    Participant

    I just installed the theme.

    After activating I got the following error message when I go to any page.

    I wast using Central theme before with pagebuilder plugin. any suggestions?

    Warning: session_start() [function.session-start]: SAFE MODE Restriction in effect. The script whose uid is 5060 is not allowed to access /tmp owned by uid 0 in /home/wikifcco/public_html/nitzaflantz.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Fatal error: session_start() [function.session-start]: Failed to initialize storage module: files (path: ) in /home/wikifcco/public_html/nitzaflantz.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    #131347

    Hi Nick,

    Thanks for the advice! I deactivated Jetpack, thinking that was the problem, then completely deleted it.

    There are four “config.php” files when I go Appearance > Editor, but no “wp-config.php”. Do I have to FTP into the site and download that file specifically?

    What happens: I go to Appearance > Menus

    Create new menu (save menu), add pages

    Select menu under “Enfold Main Menu” dropdown at left > click Save

    Leaving the Menus page, or even refreshing, just removes my selection (meaning, “Enfold Main Menu” dropdown returns to blank state).

    Any ideas? I’d like to use the Enfold menu with the highlighted underscore, and also remove the Home page from menu.

    Thanks again,

    Sam

    #133019

    Awesome, thanks !!

    #27188
    danielebr
    Participant

    Hi,

    I’m using the WP 3.5.2 (but it’s the same with the WP 3.6) and the last version of the theme Enfold.

    When I save or I publish a post I receive a blank page with only “-1”. The problem is exactly the same posted here a year ago

    https://kriesi.at/support/topic/custom-post-type-saving-error-1

    The post is saved but the redirect doesn’t work. If I goto the url shown in the address bar the post is opened in the edit page and the page is correctly filled.

    I noticed that:

    1. if I save the post as “admin” it works, saving as “author” it doesn’t

    2. if I change to the default WP template and I save the post as “author” I don’t see the error, it’s ok

    Thank you

    #27186

    Topic: Feature site layout

    in forum Enfold
    Gewora
    Participant

    Hey,

    how can i create this page layout:

    http://kriesi.at/themes/enfold/features/?skin=Black

    I mean this icon navigation.

    THanks

    #27182
    mylander
    Participant

    in the Enfold theme:

    which dragndrop layout-builder do u use here?

    is it visual composer?

    #129622

    I’m sorry, but that isn’t working for me. I also don’t see the underline on the blog grid page when I view the Enfold demo, though I have tried it in several browsers.

    When I make a page a child of another, the page title shows up in the sidebar above the photo. I wonder if the problem is because I am using the Simple Sidebars and Random Content plugins to make the different sidebars, in order to avoid having the same sidebar throughout my entire site.

    #132827

    In reply to: customize header

    Hi Xavier,

    That level of customization would need to be done by a freelance developer in order to maintain the responsive functionality and proper cross browser support.

    Getting to that header is just a bit beyond what we can help customize.

    Since it has been done already, what you can do however is look at the custom css that that site has already used which should help you in creating something very similar: http://media.pcamobile.de/dynamic_avia/enfold_en.css

    With the comments that are already there it is just a matter of copying over and modifying things to how you’d like them.

    For #3 Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top .main_menu .menu > li >a {
    font-family: Times; /*your font */
    }

    Regards,

    Devin

    #133018

    Hi

    Open up the themes functions.php file and look for:

    /*
    * Register frontend javascripts:
    */
    if(!function_exists('avia_register_frontend_scripts'))

    This function loads in all the css and javascript that the theme uses in the order that is needed.

    Regards,

    Devin

Viewing 30 results - 240,571 through 240,600 (of 243,737 total)