Forum Replies Created

Viewing 30 posts - 4,471 through 4,500 (of 14,834 total)
  • Author
    Posts
  • in reply to: LayerSlider issues in Microsoft Edge #504215

    Hey!

    I see what you mean. Not sure what could be going on there. For now go ahead and update to the latest version of Enfold, 3.3.2, your currently using 3.0.8.

    After updating activate just Enfold and deactivate all plugins and then clear your cache in Edge to see if it happens again.

    Best regards,
    Elliott

    in reply to: Enable Advanced Avia Layout Builder #504188

    Hey klaaba!

    Make sure to add it right below this line.

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Or just copy it anywhere to a child theme functions.php file. You can download a child theme here, http://kriesi.at/documentation/enfold/downloads/.

    Best regards,
    Elliott

    in reply to: How to resize Slideshow Image Size #504183

    Hey!

    Just the parent theme and then activate it instead of the child to see if the problem is in your child theme.

    Best regards,
    Elliott

    in reply to: move text area up #504181

    Hey wiwaldi79!

    Next time send us a link to the exact page where your using it. I do not see it anywhere.

    If you just want to move it up then try this.

    .info_beta { position: relative !important; top: -25px !important; }
    

    Cheers!
    Elliott

    in reply to: Testimonial Video Size #504179

    Hi bgoldstraw!

    Add this to your custom CSS.

    .avia-testimonial-content > p {
      font-size: 13px;
      margin: 0 auto;
      max-width: 50% !important;
    }

    The last two lines are for it’s width.

    Best regards,
    Elliott

    in reply to: Varying layout by browser – behaviour not dynamic #504174

    Hey!

    In Dashboard > Enfold > General Layout > Dimensions you have “1310” for the maximum container width value but it should be “1310px”. Firefox will auto correct the error but webkit browsers will not.

    There is not much we can do for old IE versions however. They are just not compatible with modern standards.

    Best regards,
    Elliott

    in reply to: Enfold 3.3.2 breaks WPML with Domains #504161

    Hey!

    Hmm, that is kind of odd. You said there is nothing in the error logs? Try creating a copy of the .htaccess file and then completely delete it before saving your permalinks again. Open it up in an FTP client to double check if WordPress actually changed it.

    I would also try contacting WPML support about this. They may have a better idea of what’s going on. If it’s not a PHP error then it feels like htaccess issue or perhaps something server related.

    Best regards,
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: Post is not shown in full #504155

    Hey bryan1976!

    It’s because your using the layout builder on that post. You will need to switch back to the default editor or you can set a custom excerpt when editing the post. If you do not see the custom excerpt section then click on “Screen Options” in the top right hand corner of your screen and check it to display.

    Cheers!
    Elliott

    in reply to: Firefox "page back" button #504151

    Hey jeffreyvanoostrom!

    I’m sorry but I’m not sure I understand. I clicked on your portfolio items form your homepage to load them in the AJAX popup and then I click on the enquire button to load the portfolio item and then hit the back button in the browser but it sends me back to the homepage as expected.

    Do you mean when you hit the back button you want the previous AJAX information to popup again? If so then I do not think that would be possible actually. Perhaps if you use a session but that is very advanced coding and would have to be referred to a freelancer.

    Regards,
    Elliott

    in reply to: How to resize Slideshow Image Size #504149

    Hey vemaybayanz!

    It looks like you have been editing the image sizes in the functions.php file. Let’s try the following.

    1. Deactivate all plugins.

    2. Activate the parent theme instead of your child theme.

    3. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    If your still having trouble after doing the above three steps then send us a WordPress login and we’ll take a closer look.

    Regards,
    Elliott

    in reply to: Standar editor a Avia editor #504146

    Hey javierebollar!

    Try this out, http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/.

    Regards,
    Elliott

    in reply to: Logo disappears on the left on Windows 8/IE11 #504141

    Hey!

    It looks fine to me in Edge but IE11 is still looking weird. It must be some custom CSS your using.

    I see you have the .logo a link set to a height of 45% when it should be something like 88px max-height. Go ahead and remove that, perhaps IE11 does not like it.

    Cheers!
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: Portfolio Project > Independent Gallery #504130

    Hey!

    Well the page you linked to is opening them up in a gallery also.

    When I view your link I see your using the portfolio grid with AJAX option so it seems like you are wanting them to open up directly in magnific popup instead of the AJAX popup. To do that just edit your portfolio shortcode and set the “Link Handling” option from “AJAX portfolio” to “Display the image in a lightbox” and that should sort it for you.

    Regards,
    Elliott

    in reply to: Substitute external link rollover icon #504127

    Hey!

    You can add this to a codeblock element in the page.

    <style type = "text/css">
    .image-overlay.overlay-type-extern .image-overlay-inside::before { content: "\e913" !important; }
    </style>

    Though when I updated your page nothing was changing so I assume you have some sort of caching going on. Try deactivating all of your plugins to see if they are the cause. If the is still not updating then contact your hosting provider to see how to disable server caching.

    Cheers!
    Elliott

    in reply to: Blog image size, masonary gap and picture size, … #504121

    Hi!

    There is no option for that currently but you can open up the /enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php file and change line 355 from this.

    'offset'			=> 0,
    

    To this.

    'offset'			=> 1,
    

    To set an offset of 1.

    You can also try doing this, http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, and then in the debug view find your masonry shortcode which should look something like this.

    [av_masonry_entries link='category' sort='yes' items='12' columns='flexible' paginate='yes' query_orderby='date' query_order='DESC' size='fixed masonry' gap='1px' overlay_fx='active' caption_elements='title excerpt' caption_display='always' id=''][/av_masonry_entries]
    

    And add an offset = “1” to it like so.

    [av_masonry_entries link='category' offset = '1' sort='yes' items='12' columns='flexible' paginate='yes' query_orderby='date' query_order='DESC' size='fixed masonry' gap='1px' overlay_fx='active' caption_elements='title excerpt' caption_display='always' id=''][/av_masonry_entries]
    

    Best regards,
    Elliott

    in reply to: The Events Calendar – next & previous page links #504115

    Hi!

    Alrighty, let us know if you have any other questions.

    Cheers!
    Elliott

    in reply to: Fehlermeldungen zum Enfold Theme bei Google PageSpeed Insights #504106

    Hi Karin!

    Your site is loading for me in 4.21 seconds which is pretty good. There is only 400KB to download on your homepage which is very good and highly optimized.

    A plugin such as BWP minify would help in minifying your scripts / css and if your not already using a caching plugin such as W3 cache or WP Supercache then that would help a lot.

    Those are the best ways to optimize a WordPress site.

    According to page speed insights you can further optimize by minifying the JS / CSS. The images look good, it says you can further optimize the facebook image a bit.

    Regards,
    Elliott

    • This reply was modified 10 years, 4 months ago by Elliott.
    in reply to: JetPack not publicizing to Facebook, Twitter or Google+ #504098

    Hey ThomasNorden!

    None that I know of. Does it do the same in the default theme? Try deactivating all of your other plugins and clear your cache.

    Cheers!
    Elliott

    in reply to: Stretched Layout on most pages, Boxed on a few #504097

    Hi Flavius!

    Add this to a codeblock element in the page.

    <style type = "text/css">
    #header, #wrap_all { max-width: 1000px !important; }
    html { background: url("URL to your image") !important; }
    </style>

    Best regards,
    Elliott

    in reply to: Speed problem, only 1 request per second #504094

    Hey albertoty!

    Looks like you forgot the link to your site. Send us that and we’ll take a look.

    Best regards,
    Elliott

    in reply to: Quick CSS and custom.css have no effect #504092

    Hi Quentin!

    I don’t see them on my end so I assume the CSS worked. Perhaps you just need to clear your cache.

    Best regards,
    Elliott

    in reply to: post slider do not display images (category) #504091

    Hey brixG!

    Your getting a few javascript errors. Try deactivating all of your plugins to see if they go away.

    If your using some kind of flickr script / widget in the page then try removing that as well because one of the errors your getting is referring to it.

    Regards,
    Elliott

    in reply to: Portfolio page loading problem #504085

    Hey rotarex!

    I see what you mean. Can you send us a WordPress login so we can take a closer look?

    Please turn on WordPress debugging for us, https://codex.wordpress.org/Debugging_in_WordPress, and deactivate all of your plugins while testing.

    Cheers!
    Elliott

    in reply to: Is it possible to get a mobile menu button on a fixed layout? #504079

    Hi erusko!

    Try setting it back to responsive and then add this to your custom CSS.

    div#wrap_all {
        min-width: 700px !important;
    }
    #advanced_menu_toggle {
        right: 20px;
        position: fixed;
        top: 40px;
    }

    Cheers!
    Elliott

    in reply to: Issue with article's feature image #504070

    Hey PascalStifani!

    For the french translation make sure to use the default editor instead of the adanced layout builder. If you use the layout builder none of the regular post elements will be displayed such as comment form, featured image, post meta, etc etc. This is because users who use the layout builder need complete control over how the post displays.

    Best regards,
    Elliott

    in reply to: THEME UPDATE – SITE FROZEN #503582

    Hey betty!

    It’s related to your hosting provider. Contact them and check to see when the maintenance ends.

    Regards,
    Elliott

    in reply to: Change post header to category name #503580

    Hi ian_clarke!

    Add this to the bottom of your functions.php file.

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ( $args['title'] == 'Blog - Latest News' )
        {
            $categories = get_the_category();
            if ( !empty($categories) ) { $args['title'] = $categories[0]->name; }
        }
    
        return $args;
    }

    Best regards,
    Elliott

    in reply to: Conflict with "svg_painter" Causing Widget Problems #503574

    Hi JeeBar!

    I’m not familiar with any “svg_painter” script we are using in Enfold. Is that a plugin your using?

    Cheers!
    Elliott

    in reply to: “Sort by Author” #503570
    in reply to: ENFOLD – making Toggle Object sticky to bottom #503567

    Hey!

    Here you go.

    .av_toggle_section { position: fixed; top: 100px; }
    

    Cheers!
    Elliott

Viewing 30 posts - 4,471 through 4,500 (of 14,834 total)