Forum Replies Created

Viewing 30 posts - 54,661 through 54,690 (of 67,485 total)
  • Author
    Posts
  • Hey harmrietmeijer!

    Thank you for using Enfold.

    I checked the site but I don’t see any issue on the layer slider. It looks good.

    Cheers!
    Ismael

    Hey DaveL77!

    Thank you for using Enfold.

    1.) Add this on Quick CSS or custom.css:

    #commentform label {
    position: absolute;
    left: 10px;
    font-size: 11px;
    top: 0;
    }

    2.) No, you can’t add a pop up error message without creating a custom script. Unfortunately, this particular task is beyond the scope of support, please hire a freelance developer for further customization or try this plugin: https://wordpress.org/plugins/wp-ajaxify-comments/

    Regards,
    Ismael

    Hi!

    Thank you for the link. Add this on Quick CSS or custom.css to remove the featured image of the post slider:

    .page a.slide-image {
    display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Grid flex cells containment #340477

    Hi!

    Thank you for using Enfold.

    Unfortunately, you can’t constrain the grid row element on the main container. It will always be full width unless you use the boxed layout. What you can do is to add a custom css class on the grid row element: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Specify the width of the grid on different screen sizes using media queries.

    Cheers!
    Ismael

    in reply to: Best way to handle a CSS change to base.css #340476

    Hey!

    Looks like the only solution to your problem is to copy the #Form section of the base.css on Quick CSS or the child theme’s style.css file. Modify the code to override the base.css default #Form style.

    Best regards,
    Ismael

    in reply to: Unable to edit gallery on ipad #340470

    Hey mpaska!

    Thank you for using Enfold.

    I was able to reproduce the issue on an iPod. The captions fields are not working but I can drag and sort the gallery items without any problem. Working on desktop and iPad is not the same. There are limitations on the admin interface when you’re working with WordPress using an iPad. Even the WordPress App is fairly new and still in development. I’ll ask Kriesi to take a look.

    Best regards,
    Ismael

    in reply to: Read More "Arrow" changes to "?" #340466

    Hi!

    If the list-style-type is not working, the css content property will do. Please refer to this link: http://www.w3schools.com/cssref/pr_gen_content.asp

    Did the images improve on retina display when you select a larger image size?

    Cheers!
    Ismael

    in reply to: Thumb-Size in Recent Post Widget #340465

    Hey!

    I checked Settings > Media and the Bildgröße „widget“ is stll 36x36px. It should be 210x90px if you follow the instructions above correctly. Please review the instructions, let us know if it works.

    Best regards,
    Ismael

    Hey sdbroker!

    Thank you for using Enfold.

    Aside from additional options and elements on the advance layout builder, the system is unchanged. We would like to see the actual website. Please post it here. Make sure that you’re running Enfold 3.0.2 and the latest version of the plugin.

    Cheers!
    Ismael

    in reply to: The translation of the theme does not work on my site #340461

    Hey!

    Since you’re not using WPML, you need to edit the en_US language file. After rescanning and translating the strings, click the generate mo file button.

    Cheers!
    Ismael

    in reply to: Chinese Icons #340459

    Hey!

    Still not sure why the icons are not working. Is it OK if we deactivate the plugins while working on the site? Please post the FTP details here. We would like to check the files.

    Cheers!
    Ismael

    in reply to: Some problems #340455

    Hey!

    Did you add any modifications on the child theme? I can’t see the child theme code because the Appearance > Editor is missing. Please set the Frontpage and Blog page using the theme options. Reset the Settings > Reading to default.

    Regards,
    Ismael

    Hey Softwaredanmark!

    Thank you for using Enfold.

    Please don’t set any value on the Layers Container field located on Slider Settings > Responsive Mode.

    Cheers!
    Ismael

    in reply to: Enfold Header and menu disappears on tablets #339917

    Hey Lynn!

    Thank you for using Enfold.

    I checked the site and the header elements are working as expected. Can you please provide a screenshot? You can use imgur, dropbox, clipular etc.

    Best regards,
    Ismael

    Hey angeloca!

    Thank you for visiting the support forum.

    Please post the template code on pastebin.com. I’ll ask the rest of the support team and Kriesi to check.

    Regards,
    Ismael

    Hey!

    Thank you for using Enfold.

    Please use this plugin: https://wordpress.org/plugins/post-types-order/

    Or add this on functions.php:

    add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
    
    function avf_custom_post_grid_query ( $query ) {
    $query['orderby'] = 'date';
    $query['order'] = 'DESC';
    return $query;
    }

    Refer to this link for more sorting parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Best regards,
    Ismael

    in reply to: Vimeo Video to a lazy load #339912

    Hi!

    Instead of adding a video, add an image then enable the Apply a link or buttons to the slide?. Set the Image Link? to manual. Add the the url of the video. If you really want the lazy load, I’m sorry but we won’t be able to help you with that. Please hire a freelance developer or find a suitable plugin that is compatible with the theme.

    Cheers!
    Ismael

    in reply to: category archive page: change the title #339911

    Hey CAUM!

    Thank you for using Enfold.

    You can remove the first part of the title with this:

    add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3);
    function avf_change_which_archive($output)
    {
    	if(is_category())
    	{
    		$output = single_cat_title('',false);
    	}
    
    	return $output;
    }

    Regards,
    Ismael

    in reply to: Thumb-Size in Recent Post Widget #339908

    Hi!

    Thank you for using Enfold.

    Please add this on Quick CSS or custom.css:

    .image_size_widget .news-thumb {
    width: 210px;
    height: 90px;
    }

    You might need to add css media queries to change the size on different screen sizes. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Go to Settings > Media then adjust the widget size thumbnail to 210x90px. If you don’t want to crop the images, set the Crop parameter to false or No but this might stretch the images with a different ratio. Update then save changes before you regenerate the thumbnails.

    Regards,
    Ismael

    Hi!

    Please go to Enfold > Theme Options > Mobile Menu panel. Disable the Hide Mobile Menu Submenu Items to show all submenus by default. This will also enable the parent menu item.

    Cheers!
    Ismael

    in reply to: Image instead of Slider on Mobile #339903

    Hi Lilo!

    Thank you for using Enfold.

    Add an Image or Color Section element on top of the slider then add a unique css selector to any elements on the advance layout builder except for column layouts. Refer to this link for more info:
    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Edit the newly added element then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “hide-desktop”.

    You can add something like this on your custom.css or Quick CSS to hide the image on desktop view:

    /* All Mobile Sizes (devices and browser) */
    @media only screen and (min-width: 767px) {
    .hide-desktop {
    display: none !important;
    }
    }

    Cheers!
    Ismael

    in reply to: Image on the video HTML5 video player #339901

    Hi Santos Ramos!

    Thank you for using Enfold.

    No, the poster attribute is not possible with the Video element but you can use the default video shortcode: http://codex.wordpress.org/Video_Shortcode

    Or you can use the Image element then set the Image Link? to manual. Add the video url. It will open the video on a lightbox.

    Cheers!
    Ismael

    in reply to: Research Page – link images to PDFs? #339898

    Hi GGLNetwork!

    Thank you for using Enfold.

    You can use the portfolio items then set the pdf file link on Overwrite Portfolio Link setting > Define custom link. Use the portfolio grid element. Or use the Masonry Gallery element then set a custom link on the gallery items.

    Cheers!
    Ismael

    in reply to: Noindex subpages of archives when using avia builder 'blog' #339896

    Hey pageladder!

    Thank you for using Enfold.

    Please set the Blog on Enfold > Theme Options > Where do you want to display blog? option then go to Blog Layout panel. Set the Blog Style to “Use the advance layout builder”. We would like to check the actual website. Please post it here. Make sure that you’re running Enfold 3.0.2 on WordPress 4.0.

    Cheers!
    Ismael

    in reply to: Portfolio edit will not load #339895

    Hey!

    Thank you for the info.

    You’re using a very old version of the theme, 2.4.1. Please download the latest version 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/

    There are two enfold themes available but the old one is activated. Please delete the old one then activate the 3.0.1 version.

    Regards,
    Ismael

    in reply to: additional menu item #339894

    Hi LukasE!

    Thank you for using Enfold.

    I’m sorry but can you please provide a screenshot or an example of what you’re trying to do. You can use the Fullwidth Submenu element on the advance layout builder to add another menu.

    Regards,
    Ismael

    in reply to: Problems with WPML (start pages) #339893

    Hi Martin!

    Thank you for using Enfold.

    Please edit the Frontpage settings on the other languages. Switch to your language dashboard then go to their respective Enfold > Theme Options, set the home page on Frontpage settings. Note that you need to configure these settings for each languages.

    Regards,
    Ismael

    in reply to: Some problems #339892

    Hi!

    Thank you for the info.

    Try switching the menu as Enfold Main Menu on Appearance > Menus > Theme Location. If it doesn’t work, please post the login details here. Set it as a private reply.

    Cheers!
    Ismael

    in reply to: Media Problem!! #339890

    Hey!

    Thank you for using Enfold.

    Please check the login credentials. It’s not working. If possible, please deactivate all plugins then test it again.

    Regards,
    Ismael

    Hi onegirlrtw!

    Thank you for using Enfold.

    Please edit functions.php, find this code on line 386:

    $tc1     = "            <span class='entry-title'>{$the_title}</span>";
    if($image)  $tc2     = "            <span class='entry-image'>{$image}</span>";
                $output .= $key == 'prev' ?  $tc1.$tc2 : $tc2.$tc1;

    Replace it with:

    $tc1     = "            <span class='entry-title'>{$the_title}</span>";
    if($image)  $tc2     = "            <span class='entry-image'>{$image}</span>";
    			$tc3     = "            <span class='entry-text-prev'>Previous Post</span>";
    			$tc4     = "            <span class='entry-text-next'>Next Post</span>";
                $output .= $key == 'prev' ?  $tc3.$tc1.$tc2 : $tc4.$tc2.$tc1;

    Add this on Quick CSS or custom.css:

    span.entry-text-prev, span.entry-text-next {
    font-size: 11px !important;
    position: absolute;
    }

    Cheers!
    Ismael

Viewing 30 posts - 54,661 through 54,690 (of 67,485 total)