Forum Replies Created

Viewing 30 posts - 47,221 through 47,250 (of 67,591 total)
  • Author
    Posts
  • Hey!

    Can you please provide a link to the page with the slider? We would like to check it.

    Regards,
    Ismael

    in reply to: Show portfolio tags in blog module #499090

    Hi!

    Did you copy the code right from your email? Please copy the code directly from the forum. Make sure that all symbols (parentheses, semicolons etc) are intact.

    Best regards,
    Ismael

    in reply to: Image Cropping Issues #499089

    Hey!

    For the masonry element, try to adjust the width of the image before uploading. Make sure that it is not wider than 705px. Adjust the dimension of this image ( http://www.rorygibsonarchitects.co.uk/wp-content/uploads/2015/05/Synton-5.jpg ) to 705x286px.

    Cheers!
    Ismael

    Hey!

    Please turn on the custom css class field. http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Modify the buttons that requires a target=”_top” attribute. In the custom css class field, add something like “custom-button”. Update the page. Add this in the functions.php file afterwards:

    // target _top
    function add_custom_script(){
    ?>
    <script>
    (function($) {
    	$('.custom-button a').each(function() {
    		$(this).removeAttr('target');
    		$(this).attr('target', '_top');
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    If you’re working on a shortcode, just add this parameter inside the button shortcode:

    custom_class='custom-button'
    

    Regards,
    Ismael

    in reply to: Place an image betwen the top of page and the header #499081

    Hi!

    There is no default option for adding elements above the header so you have to modify the theme files directly. Go to the Appearance > Editor panel. Modify the header.php file. Look for this code:

    if(!$blank) //blank templates dont display header nor footer
    	{ 
    		 //fetch the template file that holds the main menu, located in includes/helper-menu-main.php
             get_template_part( 'includes/helper', 'main-menu' );
    
    	} ?>

    Above that, you can add another container. Something like this:

    <div class="custom-background-image container_wrap"></div>
    

    Use the Quick CSS field to apply the image as background.

    Regards,
    Ismael

    in reply to: Individual size of pictures doesn't work in Blogposts #499078

    Hey!

    I’m sorry but I’m not sure I understand it clearly. What do you mean by ” I gave the picture a individual size “? How did you do that? Please provide a screenshot so that we can understand it better.

    Cheers!
    Ismael

    in reply to: Nested layout elements #499075

    Hi Richard!

    Thank you for using Enfold.

    Try to use the Grid Row element to create nested columns.

    Best regards,
    Ismael

    in reply to: Issue with font icons #499071

    Hey!

    I’m sorry for the delay. The issue seems to be server specific which makes it hard to debug. Please try use the icon font manager again to regenerate the error. After that, ask your hosting provider for the php error log.

    Regards,
    Ismael

    in reply to: next and previous arrows for event manager #499056

    Hey leRenaar!

    Thank you for using Enfold.

    If you can alter the query parameter of the events, the post nav settings will automatically follow. The post nav script is base on the get_previous_post and get_next_post functions which can only retrieve the adjacent post. Please contact the plugin author regarding the events query.

    Regards,
    Ismael

    in reply to: Eigene Template-Seite #499052

    Hey webmanu!

    Thank you for using Enfold.

    I’m not sure if this is going to work with the ACF plugin but there are modules that lets you add php codes inside the editor:

    https://wordpress.org/plugins/insert-php/
    https://wordpress.org/plugins/shortcode-exec-php/

    Please contact the ACF plugin author for more info.

    Regards,
    Ismael

    in reply to: responsive issue #499009

    Hey!

    Which browser did you use to test the page? If the background is repeating, maybe this will help:

    .page-id-14 #main > .container_wrap {
        background-repeat: no-repeat;
    }

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: Image in menu bar #499005

    Hi!

    Please modify the includes > helper-main-menu.php file. Look for this code around line 108:

    if($headerS['header_social'] == 'icon_active_main' && !empty($headerS['bottom_menu'])) echo $icons;
    

    Add the flag code below.

    Regards,
    Ismael

    in reply to: background-picture only for first .container #499001

    Hi!

    Please do as suggested then we will provide you with the css modifications to remove the margin. Also, in the color section option panel, add an id in the Section ID field. Use “custom-section” for example. A screenshot of the actual layout that you have in mind will help. Use imgur or dropbox.

    Regards,
    Ismael

    in reply to: Masonry – shorten titles to xx characters #498997

    Hi!

    Unfortunately, this is not possible. You will have to update the file every time you upgrade the theme. Create a change log or note of some sort in case you update the theme.

    Regards,
    Ismael

    in reply to: Adsense ads above pagination. #498995

    Hi!

    Great! Glad you found the plugin. :)

    Cheers!
    Ismael

    Hey!

    Resize the images before uploading them as product image. If you set the Woocommerce > Settings > Products > Display > Catalog Images settings to 450x450px, try to resize the images to 950x950px or to the exact dimension specified. If there are images with different orientations, create a square canvas on photoshop or any image editor then attach the product image. Disable the “Hard crop?” option. The point is to not let WP do all the image cropping and resizing.

    Cheers!
    Ismael

    Hi!

    I was able to reproduce the issue but I still don’t know the root of the problem. If you replace the dash symbol with the “non-breaking space” ( &nbsp ;) entity, it seems to correct itself. NOTE: Remove the ; symbol after the letter “p” to create a non-breaking space. http://enfold.drachenmond.de/

    Cheers!
    Ismael

    in reply to: Add advertising banner to the right of post selected image? #498990

    Hi!

    You need to modify the includes > loop-index.php file. Look for this code:

    echo '<div class="big-preview '.$blog_style.'">'.$before_content.'</div>';
    

    Add the adsense code below. You will have to add css modifications afterwards.

    .big-preview.single-big {
        float: left;
        width: 50%;
    }

    Cheers!
    Ismael

    in reply to: Body Text with increased font on mobile #498988

    Hey Jan!’

    Thank you for using Enfold.

    The code is actually incorrect. The body tag contains the #top id attribute, basically, they’re the same. Please replace it with:

    @media only screen and (max-width: 467px) {
    body {
    font-size: 13px;!important;
    }
    }

    OR

    @media only screen and (max-width: 467px) {
    #top {
    font-size: 13px;!important;
    }
    }

    Best regards,
    Ismael

    in reply to: WordPress update to 4.3 Dashboard Menu funky #498987

    Hi!

    Is it the same when you activate a default theme? If it is then it is a browser or WP specific issue.

    Cheers!
    Ismael

    in reply to: Enfold theme not updating through Envato Toolkit plugin #498986

    Hey!

    We will include it in future updates. Are you experiencing any issues with the current version of the plugin?

    Cheers!
    Ismael

    in reply to: Few question regarding Menu Bar #498985

    Hey Khalid!

    Thank you for using Enfold.

    1.) Looks like you managed to remove the border. Is that correct?

    2.) Go to Appearance > Menus panel. Edit the menu item, look for the Description field.

    3.) Add this in the Quick CSS field to change the background on mobile view:

    @media only screen and (max-width: 767px) {
    .header_color .header_bg {
        background-image: none;
        background-color: #000000;
    }}

    Regards,
    Ismael

    in reply to: "displayed everywhere widgets" order permutation #498983

    Hi Anton!

    Thank you for using Enfold.

    Modify the sidebar.php file, look for this code:

     //global sidebar
            if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif;
    

    Place it above the other widget areas.

    Best regards,
    Ismael

    in reply to: Issue with mobile menu #498982

    Hey eny4W!

    Thank you for using Enfold

    Did you add any css modifications to alter designs on mobile devices? Please upgrade the theme to the latest version 3.3.2. If the upgrade doesn’t fix the issue, use this in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
        top: 50px !important;
        border: 0;
    }}

    Regards,
    Ismael

    in reply to: How to insert different background images to mega menu? #498793

    Hi!

    Please try to adjust the code to something like this:

    .avia_mega_div > .sub-menu {
        background: url("//barkingzebratours.com/new/wp-content/uploads/2015/08/Megamenu_kili-1050.jpg") !important;
        background-size: 100% 100% !important;
    }
    
    .avia_mega_div .sub-menu li, .avia_mega_div .sub-menu a, .avia_mega_div > .sub-menu li ul {
        background-color: transparent !important;
    }
    

    Best regards,
    Ismael

    in reply to: How do I update LayerSlider #498792

    Hi Mark!

    Thank you for using Enfold.

    We haven’t included the latest version of the plugin yet but it will be included eventually. Please wait for the next theme update.

    Best regards,
    Ismael

    in reply to: no automatic update on 1 of 2 sites….. #498791

    Hey!


    @fjhughes
    : If you can’t update the theme automatically, try to update the theme via FTP: http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/

    Best regards,
    Ismael

    in reply to: Add Serach Box to Mobile Menu #498790

    Hi!

    If you want to add a search box inside the mobile menu, please add this in the functions.php file:

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-5">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }

    After that, add this code in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    #top #searchform>div {
    display: block !important;
    opacity: 1 !important;	
    }
    }

    Regards,
    Ismael

    in reply to: Blog Page Titles incorrect #498788

    Hey!

    Alright. If you have the chance to access the site, try to add this in the functions.php file:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ( is_single() )
        {
            $args['title'] = get_the_title($id);
            $args['link'] = get_permalink($id);
            $args['heading'] = 'h1';
        }
    
        return $args;
    }

    https://kriesi.at/support/topic/cant-change-blog-die-aktuellsten-neuigkeiten/#post-460731

    Best regards,
    Ismael

    in reply to: Title in Single-Portfolio-Page and position of picture #498786

    Hey!

    Add this code below the other one:

    add_filter('avf_title_args', 'avf_title_args_mod', 10, 2);
    function avf_title_args_mod($args,$id)
    {
        if ( is_single() )
        {
            $category = get_the_category($id);
    		$args['title'] = $category[0]->name;
            $args['link'] = get_permalink($id);        
        }
    
        return $args;
    }

    Regards,
    Ismael

Viewing 30 posts - 47,221 through 47,250 (of 67,591 total)