Forum Replies Created

Viewing 30 posts - 13,651 through 13,680 (of 14,834 total)
  • Author
    Posts
  • in reply to: Advanced Layout Editor keeps loading forever #357256

    Hey baccioly!

    Make sure your using the latest version of Enfold (3.0.4) and deactivate all plugins. If your still having problems after that then send us a WordPress login and set your reply as private and we’ll take a closer look.

    Best regards,
    Elliott

    in reply to: Header #357253

    Hi ashok522!

    I think your looking for Dashboard > Enfold > Header. The first option you see will let you change the menu position, left, right, or below the logo. If that’s not what your looking for then take a screenshot and highlight what your trying to do so we can get a better idea.

    Or if your trying to get the left / right menu then you can change that in Dashboard > Enfold > General Layout with the “Logo and Main Menu” setting.

    Best regards,
    Elliott

    • This reply was modified 10 years ago by Elliott.

    Hey Effektid!

    1. + 2. Add this to your custom CSS.

    .template-blog article header > * {
        text-align: left !important;
    }
    .template-blog article header .post-meta-infos .text-sep { display: none !important; }
    

    3. Updating to version 3.0.4 should fix this. Your currently using 3.0.2.

    Best regards,
    Elliott

    in reply to: portfolio thumbnail images same height? #357244

    Hi ariane1001!

    Try adding this to your custom CSS.

    .grid-image img { min-height: 238px !important; }
    

    Cheers!
    Elliott

    in reply to: Limit manual excerpt lenght #357241

    Hi pegasso4444!

    Try adding this to the bottom of your functions.php file.

    function new_excerpt_length( $length ) {
    	return 20;
    }
    add_filter( 'excerpt_length', 'new_excerpt_length' );

    Or you can edit the excerpt when editing each portfolio post. If you don’t see the excerpt field then click on “Screen Options” in the top right hand corner and check it to display.

    Regards,
    Elliott

    in reply to: Enfold CSS conflict #357239

    Hi codecreative!

    It looks like the author is using fontawesome and your getting a 404 on the font file.

    "NetworkError: 404 Not Found - your_domain/dev/glyphicons/fonts/fontawesome-webfont.woff
    

    Have you tried contacting the plugin author?

    Cheers!
    Elliott

    • This reply was modified 10 years ago by Elliott.
    in reply to: Fonts don't display correctly #357231

    Hi!

    It’s not a bug. All we do is grab the fonts from google and display them. If you want to use the italic version then change my previous code to this.

    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:300italic,400italic,600italic,700italic,800italic';
    return $fonts;
    }

    Or if you just want to use your code and don’t want to edit the header.php file then you can try adding this to the bottom of your functions.php file.

    add_action( 'wp_head', 'enfold_customization_addheaderscript' );
    function enfold_customization_addheaderscript() {
    echo "<link href=’http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,latin-ext’ rel=’stylesheet’ type=’text/css’>";
    }

    Best regards,
    Elliott

    Hi atrifico!

    Try line 9 in /enfold/includes/admin/register-portfolio.php.

    'name' => _x('Portfolio Items', 'post type general name','avia_framework'),
    

    Regards,
    Elliott

    in reply to: Po-file – yellow text= gibberish translation #357215

    Hi bertel!

    We rely on our customers to translate the theme texts so if you see some areas that look off it would be best to re-translate them.

    Best regards,
    Elliott

    • This reply was modified 10 years ago by Elliott.
    in reply to: Upgrade advice #357214

    Hi MarcG5!

    If you need to do a bunch of editing and adding in customizations then I would update the theme first and then do the customizations and then WordPress but it does not really matter if your doing them at the same time.

    I would do a backup first though and maybe install a maintenance mode plugin while your editing, https://wordpress.org/plugins/wp-maintenance-mode/.

    Cheers!
    Elliott

    in reply to: Are enfold theme settings stored in the database? #357210

    Hi!

    Are you talking about the CSS options in the Enfold settings? I think those get saved in /wp-content/uploads/dynamic_avia/enfold.css. Check to see if the file is still there. If you made a file backup then I would try reloading that.

    Cheers!
    Elliott

    in reply to: Theme Updates: Shows no updates although there are #357209

    Hi evergreenmedia!

    Are you sure you have the correct api information set in Dashboard > Enfold > Theme Update? If so then try giving it 12 more hours to check for an update.

    Cheers!
    Elliott

    in reply to: Resizing featured image in blog posts #357205

    Hi petersandin!

    You can do this around line 110 in /enfold/functions.php file.

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    

    Cheers!
    Elliott

    in reply to: Permalink for Portfolio Base is being ignored #357203

    Hey!

    I just tested this on my XAMPP setup and it seems to be working fine. Try deleting your .htaccess file and then refresh your permalinks again. Pay special attention to any messages that WordPress gives you such as the .htaccess file is not writable, etc etc. Also be sure to deactivate all plugins while testing.

    If your still having problems then send us a WordPress login and set your reply as private and we’ll take a closer look.

    Regards,
    Elliott

    in reply to: Site crash after adding custom Google font (ver. 3.04) #357199

    Hey!

    I checked your site but it looks like you have added the code correctly. I can see the new font in Dashboard > Enfold > General Styling and using it on your site does not appear to produce any errors. Did you get this sorted?

    Cheers!
    Elliott

    in reply to: Easy Slider not working ! #357193

    Hi!

    You can set a background for the header in Dashboard > Enfold > General Styling > Logo Area. As for the menu background try using this CSS.

    nav.main_menu { background: red !important; }
    

    Cheers!
    Elliott

    in reply to: enfold doesnt want to open and save pages … #357191

    Hi!

    That would be from completely deleting the theme before uploading a fresh copy. I would create a copy of your translations in a safe place as well.

    As for the editor issue there is really not much we can do there. You would need to scroll down highlight the text and then scroll back up and hit the bold button to make it bold for example. Or you can use multiple textblock elements to split your content up in sections so it is easier to edit.

    Cheers!
    Elliott

    in reply to: Fullwidth sub menu questions #357185

    Hi!

    Not sure if that would be possible. Send us a WordPress login and a link to where your using the shortcode and we’ll take a closer look.

    Cheers!
    Elliott

    in reply to: Remove title with with functions.php #357183

    Hey damursch!

    Open up /enfold/functions-enfold.php and find line 278 which should look like this.

    'html'			=> "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>",
    

    And change it to this.

    'html'			=> "<div class='{class} title_container'><div class='container'>{additions}</div></div>",
    

    Cheers!
    Elliott

    in reply to: Show parent page above nested subpages in sidebar navigation #357178

    Hey!

    It’s working fine on my XAMPP setup. Please upgrade the login to administrator so we can take a closer look.

    Cheers!
    Elliott

    in reply to: Big problems after update with Slider and Contact-Formular #357176

    Hey Frank!

    Thanks for using Enfold.

    It looks like you forgot to include a link. I think the problem will be fixed when you update to Enfold 3.0.4 though. See here for updating, http://vimeo.com/64927356.

    Best regards,
    Elliott

    in reply to: No preview in LayerSlider #357172

    Hey svetkol!

    Make sure your using the latest version of Enfold (3.0.4) and then try deactivating all plugins to see if that helps.

    If your still having problems then send us a WordPress login and set your reply as private and we’ll take a look.

    Best regards,
    Elliott

    in reply to: Tooltips with click #357171

    Hey Patrick!

    Try opening up /enfold/config-templatebuilder/avia-templatebuilder/assets/js/avia-modal.js and change line 681 from this.

    _self.hotspot_container.on('mouseenter', '.av-image-hotspot', function()
    

    To this.

    _self.hotspot_container.on('click', '.av-image-hotspot', function()
    

    Regards,
    Elliott

    in reply to: Sidebar Focus in Foreground #357168

    Hey Heathcliffe!

    Try adding this to your custom CSS.

    main { position: relative !important; z-index: 100 !important; }
    aside { position: relative !important; z-index: 50 !important; }

    Cheers!
    Elliott

    in reply to: How to change the Facebook widget size in footer #357162

    Hey Herbert!

    Try adding this to your custom CSS.

    div .av_one_fifth { width: 25% !important; }
    

    That will make your first widget bigger and it will set you other widgets to display beneath each other. Other than that I’m not sure what else we could do. You could consider using three footer widgets and then combine the others.

    We could also try increasing the width of the first one and reducing the margin of the others but it might look a little weird.

    Best regards,
    Elliott

    • This reply was modified 10 years ago by Elliott.

    Hey wjstarrsiii!

    In this case you’ll want to use the stretched layout with this CSS.

    #main > .container_wrap:first-child { background: red !important; } /* or use whatever background you need */
    #main > .container_wrap:first-child .container { background: white; }
    

    That will leave the header full width but make everything else look like it’s boxed.

    Regards,
    Elliott

    • This reply was modified 10 years ago by Elliott.

    Hi!


    @3DdesktopsUK
    , I believe your problem is different and you have already posted about this so we will continue in your other thread.

    Best regards,
    Elliott

    in reply to: Website Bug after new Plugins installed #357145

    Hey jhop75!

    Are you using the latest version of Enfold (3.0.4) ?

    If not then be sure to update. If your still having problems then send us a link and we’ll take a closer look. You can mark your reply as private if you wish.

    Cheers!
    Elliott

    • This reply was modified 10 years ago by Elliott.
    in reply to: "Load more" in text block #357144

    Hey!

    It sounds like your wanting to use a toggle. See here, http://kriesi.at/themes/enfold/shortcodes/toggles-accordions/.

    You can drag a toggle in the advanced layout editor to below your textblock.

    Cheers!
    Elliott

    in reply to: wp-content/themes/enfold/css/dynamic-css.php on line 772 #357142

    Hey!

    Perhaps it could be a weird value your using in the Enfold CSS settings. Try creating a copy of your theme settings in Dashboard > Enfold > Import / Export and try hitting the “Reset All Options” button. Also let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete the theme from your WordPress theme directory before downloading + uploading a fresh copy.

    That may help when doing the next update.

    Best regards,
    Elliott

Viewing 30 posts - 13,651 through 13,680 (of 14,834 total)