Forum Replies Created

Viewing 30 posts - 53,761 through 53,790 (of 67,499 total)
  • Author
    Posts
  • in reply to: Blog Post – Title as Caption on Image #354157

    Hi!

    You can try this on Quick CSS:

    .template-blog .post .entry-content-wrapper {
    z-index: 5000;
    position: relative;
    overflow: visible;
    padding-left: 150px;
    }
    
    .template-page .template-blog .entry-content-wrapper h1, .template-page .template-blog .entry-content-wrapper h2 {
    margin-top: -50px;
    margin-bottom: 50px;
    }

    Cheers!
    Ismael

    in reply to: Not translated into Spanish #354153

    Hey!

    Thank you for using Enfold.

    The only explanation is that the es_ES.mo and es_ES.po file located on the lang folder is not fully translated yet. We only rely on other users to translate the theme. You can use the Codestyling Localization plugin to manually translate the strings.

    Cheers!
    Ismael

    in reply to: Error since ver. 2.0 in slideshow? #354152

    Hi!

    My bad. It’s not error. It’s a console.log function from the plugin. What I noticed is that the logo is missing. The error says that the file is missing or not found. Please check.

    Best regards,
    Ismael

    in reply to: logo bar looks pixelated on a mobile device. #354151

    Hey!

    Might be but we’re not sure. I’m afraid we won’t be able to help you with server configuration issues. Anyway, glad you fixed it. Looks like the website is running smoothly now. Regarding the logo, please resize it to 436x116px (that is the size of the desktop logo) then upload it again. This should improve the look of the logo on mobile device because it will not force the logo to resize from a very large image.

    Best regards,
    Ismael

    in reply to: WPML automatically in top header – change flag to dropdown #354150

    Hi!

    Did you create a menu on Appearance > Menu yet? Set the menu as Enfold Main Menu.

    Cheers!
    Ismael

    in reply to: Big issue with Enfold 3.0.1 + WP4 : AVIA "breaks up" #354146

    Hey!

    Glad this is sorted out. Thank you for the kind words and for recommending Enfold. :)

    Regards,
    Ismael

    Hey!

    We tested this on our end and the Image element is not causing any issues whether you close the shortcode or not. We turned on debug mode to manually edit the shortcode and remove the [/avia_image] closing tag, updated the page and all contents below are still intact. This is probably a plugin conflict since you’re using a real lots of plugins. And out of thousands of Enfold users, you’re the only one who reported this issue. The related post that you mentioned, turns out to be the user’s fault.

    https://kriesi.at/support/topic/big-issue-with-enfold-3-0-1-wp4-avia-breaks-up/#post-337721

    Regards,
    Ismael

    in reply to: How to disable mediaelement? Enfold theme #354141

    Hi!

    If you want to disable the media element script, you can add this on functions.php:

    add_action('init', 'avf_remove_media_element', 10);
    function avf_remove_media_element()
    {	
    	wp_deregister_script('wp-mediaelement');
    	wp_deregister_style('wp-mediaelement');
    }

    I’m sorry but we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author.

    Regards,
    Ismael

    in reply to: How to implement Google Search with Enfold? #354137

    Hey!

    We’ve added it on the Quick CSS field and the child theme’s style.css but it is not working.The only thing left to do is to add an internal css styling on the header: Add this at the very bottom of the child theme’s functions.php file:

    function remove_404_content() { ?>
    <style type="text/css">
    div#search-fail p.entry-content, section.404_recommendation, .error404 .entry-content {
    display: none !important;
    }
    </style>
    <?php }
    
    add_action('wp_head', 'remove_404_content');

    I hope this works. If not, I’m sorry but you will need to hire a freelance developer to configure the google search script.

    Regards,
    Ismael

    in reply to: Display menu description text in main nav menu #353821

    Hi!

    You should copy the helper-responsive-megamenu.php file not the helper-main -menu.php.

    Best regards,
    Ismael

    in reply to: Create dynamic models with advanced ditor #353747

    Hey nparent!

    Thank you for using Enfold.

    Click the Template button on the top right corner of the advance layout builder to save the current template. You can use it again on another page.

    Cheers!
    Ismael

    in reply to: Blog layout – sidebar issue #353745

    Hi!

    Please add this on functions.php:

    function avf_blog_style() { ?>
    <script>
    (function($){
        $(window).load(function() {
    		var blog = $(".template-blog").length;
    		if(blog) $(".main_color.container_wrap").removeClass('fullsize');
        });
    	
    })(jQuery);
    </script>
    <?php
    }
    
    add_filter('wp_footer', 'avf_blog_style', 10);

    Remove browser cache then reload the page. There will be a bit of delay but it will work.

    Regards,
    Ismael

    in reply to: Centering a Layout Element #353740

    Hey!

    Unfortunately, it won’t work on layout elements. You can create the columns manually on a text block. Add this:

    <div class="flex_column av_two_third center_flex_column">TEXT HERE</div>
    

    Use this on Quick CSS:

    .flex_column.av_two_third.center_flex_column {
    float: none;
    clear: both;
    margin: 0 auto;
    text-align: center;
    }

    Regards,
    Ismael

    in reply to: Email on Contact Form #353734

    Hi!

    I’m sorry but you’re using an old version of the theme. 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/

    Make sure that you set the email on the Contact Form’s Your email address field. Install this plugin: https://wordpress.org/plugins/easy-wp-smtp/

    Regards,
    Ismael

    in reply to: Adding conditional tags to single.php #353732

    Hey!

    These are images that you want to add:

    http://bookwalterdesign.com/albaughinc/wp-content/uploads/2014/07/Fulton.jpg
    http://bookwalterdesign.com/albaughinc/wp-content/uploads/2014/07/Hoskins.jpg

    I’m sorry but I don’t see them on the mockup. Where do you want them to show on the single post pages? You need to edit includes > loop-index.php.

    Best regards,
    Ismael

    Hey!

    I’m sorry but this seems like a server side issue and not a theme related issue at all. Please refer to this link for a possible fix: http://stackoverflow.com/questions/8896644/request-entity-too-large

    It would help if you can direct that to your hosting provider. These seems to be nginx error messages according to the layerslider author. Ask them if they could increase the “client_max_body_size” setting.

    Best regards,
    Ismael

    Hey!

    Please refer to this link for a possible workaround: https://kriesi.at/support/topic/word-wrap-in-menu-or-have-the-menu-on-two-lines/#post-283385

    Best regards,
    Ismael

    in reply to: Display menu description text in main nav menu #353714

    Hey Riavon!

    Thank you for using Enfold.

    You can actually find the wp_nav_menu(); function on includes > helper-main -menu.php and you will see that the walker parameter is already defined. Unfortunately, it is only available for Left or Right Header. Anyway, if you want to enable it on the default header, you need to edit helper-responsive-megamenu.php. Find this code on line 239:

    if(!$this->top_menu && !empty($item->description))
    

    Replace it with:

    if(!empty($item->description))
    

    You can do this on your child theme or create a change log in case you update the theme.

    Cheers!
    Ismael

    in reply to: Language switcher #353706

    Hey!

    Looks like you didn’t activate the header meta. Please replace the code with this:

    add_action('ava_main_header', 'ava_icl_language_selector');
    function ava_icl_language_selector(){
    	do_action('icl_language_selector');
    }

    Regards,
    Ismael

    in reply to: Remove attached picture of blog posts #353695

    Hey NBSIME!

    Thank you for using Enfold.

    Do you want to remove the image on the single post page or the blog overview page? Add this on Quick CSS:

    .big-preview.single-big, .small-preview {
    display: none;
    }

    Cheers!
    Ismael

    Hey!

    Thank you for using Enfold.

    Please restore the site to the previous version of Enfold or if you have a copy of the old version, get the lang folder from the enfold folder then override the new one. Make sure that you create a backup of the lang folder whenever you update the theme.

    Best regards,
    Ismael

    in reply to: Masonry Gallery 1px Gap #353647

    Hey djshortkut!

    Thank you for using Enfold.

    Please replace the code with this:

    @media only screen and (min-width: 1800px) {
    .responsive.html_stretched .av-masonry-col-flexible .av-masonry-entry {
    width: 16.68%;
    }
    }

    IMO, I don’t think users / visitors will even recognize the gap.

    Regards,
    Ismael

    in reply to: Full screen images on an iPhone #353638

    Hi!

    Please add this on Quik CSS:

    @media only screen and (max-width: 767px) {
    .responsive #top .fullsize .template-blog .post .entry-content-wrapper img {
    width: 100%;
    max-width: 100%;
    }
    }

    Cheers!
    Ismael

    in reply to: Layout change on "category" page #353631

    Hi!

    Thank you for using Enfold.

    You can edit archive.php, find this code:

    'columns' => 3,
    

    Adjust the columns to 2.

    Cheers!
    Ismael

    in reply to: WPML Customization #353621

    Hi!

    The code above works fine on our installation. Please post the login details here. We would like to check it.

    Regards,
    Ismael

    in reply to: Related news shortcode – images and excerpt #353619

    Hi!

    The topic is included on the Enfold theme, that’s why I assumed you’re using Enfold. I didn’t recognized the Broadscope theme. Anyway, I’m sorry but you can’t add an excerpt on the related posts. Regarding the thumbnail, did you edit the thumbnail size by using a plugin or manually adjusting the code? The widget thumbnail size should be 48x48px. Please try to regenerate the thumbnails using this plugin: https://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    in reply to: all languages in search result #353605

    Hi!

    Kriesi is a little bit busy right now so it might take a while before he can respond to this inquiry. I’ll close it for now but it will be re-opened when Kriesi respond. For faster results, please contact the plugin author or hire a freelance developer to investigate the issue further.

    Regards,
    Ismael

    in reply to: WordPress 4.0 and Enfold #353600

    Hey!

    I dont see why you have slimmed the look and feel of the parallax boxes.

    I didn’t edit anything on the page. Regarding the masonry element, can you please give us a link to the actual page where you’re using this? And the link to the page with the Special Heading issue. Screenshots explaining the issues will help.

    Regards,
    Ismael

    Hi!

    You can still use the shortcode wand instead of the advance layout builder. I’m sorry but the meta information like get_the_time or author needs to be included on the loop but the advance layout builder uses the template-builder.php file which only compiles the shortcodes and use it as the content. Like I said, if you enable the advance layout builder for post, you have to manually add all the content of the post like page or portfolio items.

    Best regards,
    Ismael

    in reply to: Enfold Search #353594

    Hi!

    Try to add this on functions.php:

    add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1);
    function avf_modify_ajax_search_query($search_parameters)
    {
    $order = 'orderby=title&order=DESC&';
    $search_parameters =  $order . $search_parameters;
    return $search_parameters;
    }

    You can replace the orderby and order parameter.

    Best regards,
    Ismael

Viewing 30 posts - 53,761 through 53,790 (of 67,499 total)