Forum Replies Created

Viewing 30 posts - 19,051 through 19,080 (of 66,702 total)
  • Author
    Posts
  • in reply to: Button over image #1173221

    Hi,

    Thank you for the clarification.

    You can use columns to separate the image and the button, edit the column containing the button, apply a custom css class attribute to it (e.g custom-column-button-class), then use this attribute to adjust the style of the column. You can pull the button column towards the image by applying a negative left margin value to it.

    .custom-column-button-class {
       margin-left: -300px;
    }

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: Change header colour when scrolling #1173218

    Hi,

    Thank you for the update.

    Is it possible to change the header color, without having to activate the shrinking header?

    The required class attribute header-scrolled is only available when the shrink option is enabled and the css modifications above will not work without this attribute, so it has to be enabled. You can always use css to prevent the header from shrinking even if the option is enabled.

    Now, if you want the header to only change after scrolling down up to a certain point or position, then you have to modify the enfold\js\avia-snippet-sticky-header.js. Add another condition in the else statement.

     if(st - 30 < el_height)
    	                {
    	                    av_change_class(header, 'remove', 'header-scrolled-full');
    	                }
    	                else
    	                {
    	                    av_change_class(header, 'add', 'header-scrolled-full');
    	                }
    

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    The latest version of the theme 4.7.1 is now available on Themeforest. It contains a lot of improvements, fixes for WPML issues and a few additional filters.

    fixed: WPML translation manager integration and problems with several ALB elements like portfolio and masonry sort buttons
    added: filter avf_alb_taxonomy_values: WPML wrapper to translate object id's
    added: filter avf_alb_linkpicker_value: allows WPML to translate 'linkpicker' element id's
    

    Let us know if the issues persists after the upgrade.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We can’t reproduce the issue in the site anymore. The header or green bar is no longer visible on iPad view — either portrait and horizontal view. Did you enable the css and js compression previously?

    When you have the time, please upgrade the theme to the latest version, 4.7.1. The new version contains a lot of addons, improvements and compatibility patches for the latest version of WordPress.

    Best regards,
    Ismael

    in reply to: Adding ids to titles (h-tag) #1173199

    Hi,

    Does this means, that in future, the options “Show and allow to edit classes” and “Show and allow to edit ids” will not be there anymore?

    Yes, these options are no longer available starting on version 4.7.1. All developer fields for the elements will be enabled by default and can be hidden manually. Please check the documentation below.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#developer-options

    You can also use the following filter to manually adjust the visibility of the fields.

    // https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/ALB%20Elements/Editing%20ALB%20elements/avf_alb_get_developer_settings.php

    Best regards,
    Ismael

    in reply to: Image size on blog grid page #1173195

    Hi,

    @edgold: Are you using an extension or plugin for the images? The URL of the featured images look a bit different and the appended query is probably being used by a certain script to load a different image instead of the selected thumbnail. (see private field)

    Best regards,
    Ismael

    in reply to: Product Grid pagination issue #1173179

    Hi,

    Thank you for the update.

    Unfortunately, both of the tokens don’t work. Please extend the expiration to at least 2 days or longer — in case we failed to access the site within 24 hours.

    Best regards,
    Ismael

    in reply to: Post-processing of the image failed. #1173169

    Hey wohnliese,

    Thank you for the inquiry.

    The theme doesn’t limit the maximum size allowed in the Media > Library, so this is probably cause by one of the plugins installed in the site. Did you install any image compression plugin, or any extension related to media files?

    Best regards,
    Ismael

    Hey marcobe,

    Thank you for the inquiry.

    The new version of the theme 4.7.1 is now available in Themeforest. It contains a lot of improvements, features and compatibility fixes for the latest version of WordPress.

    Best regards,
    Ismael

    in reply to: Generated images per upload #1172782

    Hi,

    1.) Please read the comments after each thumbnail registration in the functions.php file.

    featuredmages -> for fullsize pages and fullsize slider
    featured_large -> images for fullsize pages and fullsize slider
    extra_largewidth -> images for fullscrren slider
    portfolio -> images for portfolio entries
    entry_with_sidebar -> big images for blog and page entries

    2.) The theme will use the original version of the image if the certain thumbnail used for an element, template or content is not available.

    We can’t really know which thumbnail are being used or not within the site without inspecting it. Unfortunately, this will require significant amount of time and is beyond the scope of support.

    Best regards,
    Ismael

    in reply to: Enfold Preloader #1172780

    Hi,

    Sorry for the delay. You should try to revert the site from a backup or a restore point. Did you import the parent theme options after activating the child theme? The theme options were probably lost because you forgot to do that step. Unfortunately, we won’t be able restore the theme options without a backup.

    // https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme

    Did you copy the whole parent functions.php file into your child theme directory? You don’t need to do that. We asked because there are more than 700 lines of code in the file as reported in the error above. Just create a file called functions.php file inside the child theme directory, then paste the avia_preload_screen function without the function_exists wrapper. Don’t forget the opening PHP tag.

    <?php
    
    // custom modifications here
    

    Best regards,
    Ismael

    in reply to: Multiple Image Sizes on Upload #1172773

    Hey Bert,

    Thank you for the inquiry.

    1.) It depends on the content or template used within the site, or the elements that you added in the advance layout builder. To get an idea on how or where each thumbnail is used, check the comments in this block of code from the functions.php file.

    
    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);
    

    2.) The images are not going to be enlarged if they are smaller than the specified thumbnails. Only smaller thumbnails or versions will be generated.

    3.) If you delete a specific thumbnail, WordPress will no longer generate this thumbnail when you upload an image or regenerate the whole media library.

    4.) If a thumbnail is not available, the theme will use the original version of the image.

    Best regards,
    Ismael

    in reply to: autostart mp4 doesn't work #1172762

    Hi,

    Thank you for the update.

    You have to mute the videos if you want them to automatically play on page load. This is in accordance with the browsers’ policy for media files.

    // https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

    Chrome’s autoplay policies are simple:

    Muted autoplay is always allowed.
    Autoplay with sound is allowed if:
    User has interacted with the domain (click, tap, etc.).
    On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously played video with sound.
    The user has added the site to their home screen on mobile or installed the PWA on desktop.
    Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.

    Best regards,
    Ismael

    in reply to: Enfold layout portfolio #1172760

    Hey karel,

    Thank you for the inquiry.

    That is the default layout of the Portfolio Grid element when you add it in the builder, so you don’t have to change anything aside from picking the appropriate categories and setting the Sortable? settings to the second option. In the demo, you’ll see a Color Section element with some text in it, added above the portfolio section.

    Best regards,
    Ismael

    in reply to: Out of stock products showing up in search #1172687

    Hey nychng,

    Thank you for the update.

    Can you give us an example of the products that are out of stock or those that should not be showing in the search results page? Also, make sure that the WooCommerce settings -> Products -> Inventory -> Hide out of stock items from the catalog

    in reply to: Site became saddenly slow on mobile #1172685

    Hi,

    Thank you for the update.

    The site loads fine our end. It’s not instantaneous but it doesn’t load that long either. Is it on a shared hosting? Have you tried installing a cache plugin or deploy the site in a content delivery network?

    // https://www.cloudflare.com/learning/cdn/what-is-a-cdn/

    Best regards,
    Ismael

    in reply to: Cookie Consent Schema Markup of WebPage/BlogPosting #1172684

    Hi,

    Thank you for the update.

    Try to add this snippet in the functions.php file to unset the itemtype attribute of the body tag in the single post pages.

    
    function avf_markup_helper_attributes_modified($attributes, $args) {
    	if( $args['context'] == 'body' && is_singular('post') ) {
    	    unset($attributes['itemtype']);
                unset($attributes['itemscope']);
    	}
    
    	return $attributes;
    }
    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);

    Best regards,
    Ismael

    in reply to: Portfolio sort options disappeared after update of theme #1172667

    Hi,

    Thank you for the update.

    Can we have access to the site? We would like to check the page and the settings. Please make sure that the Appearance > Editor panel is accessible so that we can edit the files if necessary, and that the theme is updated to the latest version, 4.6.3.

    Best regards,
    Ismael

    in reply to: remove category and date from blog teaser #1172658

    Hi,

    Thank you for the update.

    1.) You should be able to remove the categories with this css code.

    .html_elegant-blog #top .avia-content-slider .blog-categories {
    	display: none !important;
    }

    2.) The read more link will automatically be added to the post as long as you’re using the default editor, and not the advance layout builder.

    Best regards,
    Ismael

    in reply to: Single product page layout issue #1172656

    Hi,

    Thank you for following up.

    The images in the footer should not be included in the lightbox group. Can we access the site temporarily? Please post the login details in the private field and make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: Next page start on top #1172654

    Hi,

    Thank you for the update.

    The script is working but the pagination preloader probably removes the anchor as @Guenni007 mentioned. Unfortunately, we don’t know exactly which script is causing that. Please contact the plugin authors for more info.

    Best regards,
    Ismael

    Hey paolobox,

    Thank you for the inquiry.

    The context menu is currently disabled when we check the site. Please enable it back so that we can check the elements.

    You should be able to re-insert the same pagination at the top of the product grid using jQuery.

    // https://www.w3schools.com/jquery/html_insertbefore.asp

    You can include the script inside the head tag.

    // https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-head-section

    Best regards,
    Ismael

    in reply to: Enfold and WPML Language mix since WPML 4.3.5 #1172626

    Hi,

    Thank you for the info.

    Are you saying that it’s not returning the proper locale? Maybe the following filter will help to ensure that the appropriate locale is returned based on the value of the ICL_LANGUAGE_CODE.

    // https://developer.wordpress.org/reference/hooks/locale/
    // https://wpml.org/documentation/support/wpml-coding-api/#language-constants

    Best regards,
    Ismael

    Hi,

    Glad that it’s working now.

    We commented that line out previously, oddly it didn’t fix the issue or the upload directory didn’t change, so we enabled it back. We also enabled the debug mode and that’s it.

    Best regards,
    Ismael

    Hi,


    @rallegrafix
    : Try to add this css code to prevent the image from running outside the container.

    .avia-image-container.av-hover-grow, .avia-image-container.av-hover-grow .avia-image-container-inner, .avia-image-container.av-hover-grow .avia-image-overlay-wrap a.avia_image {
    	overflow: hidden;
    }

    Best regards,
    Ismael

    in reply to: Confusing sorting options in WooCommerce and Enfold #1172622

    Hi,

    Sorry for the delay. You can hide the other options with this css code.

    .sort-param li ul li:nth-child(n+6):nth-child(-n+11) {
        display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Product Grid pagination issue #1172620

    Hi,

    Sorry for the delay. The login token has already expired, so we were not able to access the site. Please generate another token or post a login account in the private field.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    The Appearance > Editor panel is inaccessible. Please post the FTP details in the private field or edit the wp-config.php file and make sure that the DISALLOW_FILE_EDIT is set to false.

    define( 'DISALLOW_FILE_EDIT', true );
    

    Best regards,
    Ismael

    Hey tommyp15,

    Thank you for the inquiry.

    The images that are being used as backgrounds for the elements are inaccessible because they are located in a different domain. (see private field)

    You can either upload the images directly to the site where they have to be used or make the domain lymphactiv accessible.

    // https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

    Related thread: https://stackoverflow.com/questions/14467673/enable-cors-in-htaccess

    Best regards,
    Ismael

    in reply to: Custom blog shortcode broken #1172616

    Hi,

    Thank you for the update.

    Try to replace the filter with the following code.

    /**
     * Allow to force execution of shortcodes e.g. for plugins who call shortcode via an ajax call.
     * Enfold uses this to execute the shortcode for modal popup preview in backend
     * 
     * @since 4.5.7.2
     * @param boolean
     * @param aviaShortcodeTemplate $obj_sc
     * @param array $atts
     * @param string $content
     * @param string $shortcodename
     * @param boolean $fake
     * @return boolean true if sc should be executd regardless of page structure - same as popup preview
     */
    function my_custom_exec_sc_only( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake )
    {
        return true;
    }
    add_filter( 'avf_alb_exec_sc_only', 'my_custom_exec_sc_only', 10, 6 );

    Or post the WP and FTP login details in the private field so that we can check the issue further.

    Best regards,
    Ismael

Viewing 30 posts - 19,051 through 19,080 (of 66,702 total)