Forum Replies Created

Viewing 30 posts - 18,811 through 18,840 (of 67,463 total)
  • Author
    Posts
  • in reply to: Fullwidth Easy Slider #1198996

    Hi,

    That is actually the framework version, which is different from the actual theme version. The latest framework version is 4.6, which means that the one you’re working with is pretty old.

    Using software or online tools that can compare files and directories should help.

    // https://www.diffchecker.com/
    // https://www.devart.com/codecompare/

    Best regards,
    Ismael

    in reply to: maintenance page in footer #1198995

    Hi,

    Sorry for the delay. Can you post the password again? Someone already opened the secret password above, so it’s no longer valid.

    Have you tried deselecting the maintenance page before turning it off completely?

    Best regards,
    Ismael

    in reply to: Mailchimp signup not properly working #1198994

    Hey BigBossMedia,

    Sorry for the delay. Did you install any kind of security plugin? It’s possible that the plugin is preventing the theme from executing its default validation script.

    We also noticed that the site contains an older version of the theme, v4.6.1. Please upgrade it to the latest version, v4.7.4.

    Best regards,
    Ismael

    in reply to: Preview button not showing recent changes while editing #1198993

    Hi,

    Sorry for the delay. Please save the content of the home page as template and apply it on a new page. Let us know if the preview is still not working on this new page. If the preview is working, you can delete the old home page and use the other one instead.

    Best regards,
    Ismael

    in reply to: Background image too high on mobile screen #1198992

    Hi,

    Sorry for the late response. We’d like to try and help with the issue but the screenshots above are not available anymore. Can you post the screenshots again? You can use imgur or dropbox instead.

    Best regards,
    Ismael

    in reply to: Author Page #1198991

    Hi,

    Thank you for the update.

    Can we access the file server? We would like to test the modification on our end. Please post the WP and FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Lightbox Gallery Captions Not Showing #1198990

    Hi,

    Our reply above still stands. You can either put the description or the caption in the title attribute of the images so that the lightbox will be able to pick it up, or follow the instruction that we provided in the previous thread so that the caption of the masonry item is used instead of its title attribute.

    Why do you continue to provide a field for captions if they don’t display?

    Please note that the caption field in the Media uploader is a default core feature, which is always available whenever you upload images. We didn’t add it manually.

    Best regards,
    Ismael

    Hi,

    We edited the functions.php file and adjusted the code a bit. The default flags are now showing inside the header, but it has to be adjusted with css. This is the updated code.

    add_action('after_setup_theme','avia_remove_main_menu_flags', 999);
    function avia_remove_main_menu_flags(){
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
    	    remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 9998, 2 );
    		remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 9998, 2 );
    }
    // Render the default language switcher (activate header meta)
    add_action('ava_main_header', 'ava_icl_language_selector');
    function ava_icl_language_selector(){
    	do_action('icl_language_selector');
    }

    Add this css code to adjust the position of the language switcher.

    #lang_sel {
    	float: right;
    	position: relative;
    	top: 18px;
    }
    
    .main_menu {
    	right: 220px;
    }

    Best regards,
    Ismael

    Hi,

    If you are viewing the 30 Jahre Zenit page, the only active menu items will be the corresponding 30 Jahre Zenit child menu item and the Programme menu item, which is the parent menu item. The active menu item/s should change based on the page that you’re currently viewing.

    Which menu items are you referring to? Do you want to change the color on hover?

    Best regards,
    Ismael

    in reply to: Probleme mit Cookie-Zustimmungsbutton #1198983

    Hi,

    We are still getting the same error from the Google Analytics script. Please post the login details in the private field so that we can check the theme options.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Did you place the snippet in the child theme’s functions.php file? If you don’t have a child theme, try to add it around line 18 of the default functions.php file or below this line.

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

    Best regards,
    Ismael

    in reply to: Post Masonry #1198979

    Hi,

    Thank you for the update.

    Can we get access to the dashboard and the file server? We would like to check the page settings and how the portfolio items are set up. Are you using the advance layout builder for the portfolio items?

    Best regards,
    Ismael

    in reply to: Enfold Video Lightbox #1198976

    Hi,

    Have you tried using an Image element instead of directly using the Video element? You can set it so that when the image is clicked, the video will open inside a lightbox. This way, the image is the link, so users don’t have to rely on a tiny video control.

    If you have further questions, please create a new thread. Thank you.

    Best regards,
    Ismael

    in reply to: Using anchors in menu with hidden color sections #1198973

    Hi,

    How do you toggle the visibility of the menu sets for desktop and mobile view? It’s still not working on tablet view or medium sized screens because the color sections for mobile view are hidden. You should set the element visibility of the color sections so that those that are supposed to display on mobile view are visible on medium sized screens including the tablet view, and only hide them on large screens (desktop).

    Element Visibility
    o Hide on large screens (wider than 990px - eg: Desktop)
    x Hide on medium sized screens (between 768px and 989px - eg: Tablet Landscape)
    x Hide on small screens (between 480px and 767px - eg: Tablet Portrait)
    x Hide on very small screens (smaller than 479px - eg: Smartphone Portrait)
    
    x is enabled.
    

    Best regards,
    Ismael

    in reply to: Date and read more link on portfolio item #1198971

    Hi,

    that is supposed to put the read more link under the excerpt but it doesn’t move it.

    That modification is actually the same as the first one. If you want to move the link below the excerpt, you will have to modify the enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php and place the read more link right below these lines starting from 965:

     $output .= "<div class='entry-content-wrapper'>";
     $output .= "<div class='grid-entry-excerpt entry-content' $markup>".$excerpt."</div>";
     $output .= '</div>';
    

    Best regards,
    Ismael

    Hi,

    We edited the functions.php file and adjusted the code a bit. We also added this code in the Quick CSS field to change the color of the active child menu item.

    #top #wrap_all #header .av-burger-overlay #av-burger-menu-ul .sub-menu a.current-child-menu-item .avia-menu-text { 
       color: blue;
    }

    You can of course change the color as you wish. Here’s how it looks now.

    Screenshot: https://imgur.com/a/LzLv7O3

    Best regards,
    Ismael

    in reply to: Translating 'Reloading the page' text #1198227

    Hi,

    Ah yes, you’re right. Looks like it has its own label specified in the includes > helper-social-media.php file.

    'label'			=> __( 'Share on WhatsApp', 'avia_framework' ) 
    

    Try to add this in the .po file.

    #: includes/helper-social-media.php:292
    msgid "Share on WhatsApp"
    msgstr "Dalintis per WhatsApp"
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Are you sure that it’s not an old report? Did you add the above snippet in the functions.php file? The snippet should prevent the execution of the woo-loader.php file and prevent the error.

    Best regards,
    Ismael

    in reply to: WPML translation pages selected in theme options #1198222

    Hi,

    That is one of the limitations of the Page Content element. You will have to manually translate the page used in the Page Content element, edit the pages using the element and re-select the translated page. We know this is a bit cumbersome, but at this time it’s the only way to display a translated version of the Page Content.

    Best regards,
    Ismael

    in reply to: Problem of log saturation on a host #1198221

    Hi,

    Thanks Julien. This is indeed a very odd situation.

    The suggestions above should prevent the issue temporarily. Please let us know if we can be of further help.

    Take care.

    Best regards,
    Ismael

    in reply to: Problems with Yoast #1198220

    Hi,

    Thank you for the clarification.

    The analysis can’t find the key phrase because the paragraph or the text block that contains phrase is not the first element in the page. The key phrase is detected when we add a text block above the layer slider and put the key phrase “Avis comunale di Verona” in it.

    Screenshot: https://imgur.com/a/LEqRAqK

    You might have to include the key phrase in the first slide of the layer slider. The analysis will not be able to detect the paragraph inside slider, but it should work fine in the front end.

    Best regards,
    Ismael

    in reply to: Image Animations & Tab Sections Not Working Properly #1198211

    Hi,

    We checked the site on Chrome. We can no longer access the dashboard or the test page that we created because the account above is not valid anymore. Did you delete the account?

    Again, you have to use the Layout Elements > Tab Section element and NOT the Content Element > Tabs element. In the screenshot, you’re using the Tabs element.

    Here’s a screenshot of a page containing a tab section in our local installation on Chrome.

    Screenshot: https://imgur.com/a/VRDrWyQ

    Best regards,
    Ismael

    Hi,

    Yes, both snippet should go in the functions.php file — one will disable the theme’s language switcher and the other will add the default switcher from the plugin inside the top bar of the header. You will have to configure the switcher style in the WPML > Languages panel.

    Best regards,
    Ismael

    in reply to: issues with woocommerce cart with update enfold 473 #1198204

    Hi,

    Is this your initial attempt to create a multilingual site with WooCommerce? We asked because when we tried to install WooCommerce Multilingual plugin, most of the products in the staging site were deleted.

    Can you restore the site from a backup?

    We should also set the WP installation to debug mode by adding this code in the wp-config.php file.

    // Turn debugging on
    define('WP_DEBUG', true);
    
    // Tell WordPress to log everything to /wp-content/debug.log
    define('WP_DEBUG_LOG', true);
    
    // Turn off the display of error messages on your site
    define('WP_DEBUG_DISPLAY', false);
    
    // For good measure, you can also add the follow code, which will hide errors from being displayed on-screen
    @ini_set('display_errors', 0);
    

    We will also require access to the file server so that we can debug the issue further. Please post the FTP details in the private field.

    Best regards,
    Ismael

    Hi,

    You can get the updated snippet above.

    // https://kriesi.at/support/topic/burger-mobile-submenu-links-how-can-i-add-a-further-colour-for-the/#post-1194291

    If you can provide a login account for the file server, we’ll try to test the script.

    Best regards,
    Ismael

    in reply to: Author Page #1197946

    Hi,

    Do you see any errors after adding the code? It should cause an error at least if the code is invalid and prevent the page from loading. Can we access the file server?

    Best regards,
    Ismael

    in reply to: Force Enfold to use original image #1197944

    Hi,

    The size of the masonry thumbnails vary because the theme is scaling the images instead of cropping them, leaving their aspect ratio intact. If you want to crop the images to the exact dimension regardless of their aspect ratio, you have enable cropping or set the crop parameter of the add_image_size function to true. You can do that manually by editing the predefined thumbnail parameters in functions.php file or by defining your own “masonry” thumbnail using the add_image_size function.

    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    

    // https://developer.wordpress.org/reference/functions/add_image_size/

    Or you can use this plugin to enable cropping for the “masonry” thumbnails.

    // https://wordpress.org/plugins/simple-image-sizes/

    You have to regenerate the thumbnails after updating the parameters.

    Best regards,
    Ismael

    in reply to: Post Masonry #1197941

    Hi,

    Thank you for the update.

    You can use this filter in the functions.php file to limit the character count in the excerpt.

    add_filter('avf_masonry_loop_entry_content', function($content) {
          return substr($content,0,30);
    }, 10, 1);
    

    This should limit the excerpt to 30 characters.

    Best regards,
    Ismael

    in reply to: About WooCommerce Product page question #1197937

    Hi,

    Sorry for the delay. We tried to create an FTP account in your cPanel, but we can’t connect to the file server using the account details.

    Status: Resolving address of http://ftp.icehockeywear.com
    Status: Connection attempt failed with “EAI_NONAME – Neither nodename nor servname provided, or not known”.

    Please ask your hosting provider to create a valid FTP account and post the details here.

    You will also have to register to the forum first in order to continue.

    // https://kriesi.at/support/register/

    Best regards,
    Ismael

    in reply to: Fullscreen Slider + multiple images + sort order #1197931

    Hi,

    Thank you for the patience and kind words. We’ll keep the thread open for updates.

    Best regards,
    Ismael

Viewing 30 posts - 18,811 through 18,840 (of 67,463 total)