Forum Replies Created

Viewing 30 posts - 17,941 through 17,970 (of 67,597 total)
  • Author
    Posts
  • in reply to: Video controls don't show up on full width slider #1231628

    Hi,

    Sorry for the delay. Do you increase the volume of the video after unmuting it? Please note that the volume is set to 0 by default, so you have to increase it manually after toggling the mute or audio control.

    We tried to enable the sound and increase the volume of the first video in the slide and managed to do so.

    Best regards,
    Ismael

    in reply to: Edit toggle button of modal window (cookies) #1231624

    Hi,

    Thank you for the update.

    We may need to access the site in order to check the issue properly. Please post the login details in the private field so that we can access the dashboard and edit the css when necessary.

    Best regards,
    Ismael

    in reply to: Missing Dependencies after updating #1231622

    Hi,

    Thank you for the inquiry.

    You may have to contact the previous developer who created the custom timeline script to correct the issue. Unfortunately,we don’t provide support for third party scripts or for features that are not available in the theme out of the box.

    You should consider using the default timeline script from the theme.

    Best regards,
    Ismael

    in reply to: contact form not sending emails #1231241

    Hi,

    Sorry for the confusion. What actually happens when you update the page? Are there any lost content after the update? It’s possible that one of the html tags in the page is left open or unclosed. Please check the html tags in the page and make sure that they are closed properly.

    Best regards,
    Ismael

    Hey Eleina_Shinn,

    Thank you for the inquiry.

    Looks like every word in the paragraph is wrap in its own div tag. Was that intentional?

    
    <div class="word " style="display: inline-block; position: relative; transform: translate3d(0px, 0px, 0px); opacity: 1; transform-origin: 0% 100% 0px;">From</div>
    

    You can add add a space or margin below the div tag to emulate the line-height property.

    .word {
    	margin: 0 0 6px 0;
    }
    

    Best regards,
    Ismael

    in reply to: Help with Text Pop in and out on hover #1231235

    Hey smsutton,

    Thank you for the inquiry.

    The Image element has an option where you can display the caption on hover. It’s not exactly the same as the examples in the other site, but it should work fine. You can set the caption to display on hover by adjusting the element’s Advanced > Animation > Caption Appearance settings.

    Best regards,
    Ismael

    in reply to: Woocommerce billing email issue #1231225

    Hi,

    Thank you for the inquiry.

    We get this error when we try to submit the form in the checkout page.

    Ungültige Rechnungs E-Mail-Adresse

    We tried to replicate the issue on our own installation but have not been able to do so.

    Did you install a custom checkout field editor plugin or extension for Woocommerce?

    Best regards,
    Ismael

    in reply to: Video player volume control not working #1231211

    Hi,

    Thank you for the inquiry.

    This is an issue with the default html5 audio controls in WordPress. You have to use the keyboard arrows to increase or decrease the volume as it says in the hidden description.

    Use the up / down arrows to increase or decrease the volume.

    You can make the short instruction display on hover by adding the title attribute to the media controls as described in the following thread.

    // https://kriesi.at/support/topic/enfold-fullwidth-easy-slider-mute-video-player-option/#post-1179100

    Best regards,
    Ismael

    Hi,

    The video control is there but it’s not visible within the slider because the video is stretched as we explained in the following thread.

    // https://kriesi.at/support/topic/video-controls-dont-show-up-on-full-width-slider/#post-1230269

    Did you set the video slide’s Styling > Video Display settings to the second option (stretch)? The controls are NOT visible when this option is enabled because as the option says the theme has to stretch the video in order to cover the whole slider container and to keep any black bars from displaying. This also moves the controllers outside the slider container. Unfortunately, it’s not possible to adjust the style of the controls.

    If you really need the controls to display, you have to set the Styling > Video Display to the first option.

    Adding an audio toggle is possible, but it will require some amount of modification which is beyond the scope of support.

    We provided the same kind of modification previously, but it’s for the color section element and only when using mp4 format. The same script might work for the slider elements but you have to adjust it a bit.

    // https://kriesi.at/support/topic/adding-button-to-mute-unmute-audio-on-fullscreen-background-video-2/#post-931863

    Best regards,
    Ismael

    in reply to: Enfold Easy Slider with Small Preview Images #1231184

    Hi,

    The shortcodes files are located in the config-templatebuilder > aviashortcodes folder. Unfortunately, the modification is still using the old version of the shortcode files. You might have to contact the person who created the modification and ask for the actual code changes.

    Best regards,
    Ismael

    in reply to: Video brightness in Layerslider #1231137

    Hey jonbuss,

    Thank you for the inquiry.

    We haven’t really encountered that issue before. Maybe there’s an overlay above the video layer? Is the brightness the same when you use the theme’s slider elements?

    Please let us know once the site is live so that we can check it properly.

    Best regards,
    Ismael

    Hi,

    Great! Glad to know it’s back to how it’s used to be. Please don’t hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    The space on mobile screens is quite limited and placing a table inside a lightbox container will decrease it even more. IMO, placing the table on a separate page is a better solution and maybe a better experience for users because they don’t have to scroll as much just to see the table content.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Search – number of displayed results #1231130

    Hi,

    We get an error whenever we try to access the file server.

    Error: Received unexpected end-of-file from SFTP server
    Error: Could not connect to server

    Please contact your hosting provider and ask them if they could configure the SFTP account properly.

    The following link contains the default searchform.php file.

    // https://pastebin.com/LudYKGHw

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    As we mentioned earlier the order of the price and quantity in the cart container changes when the plugin is enabled. They can easily check that. Do they have an idea why it’s happening? Is there anything in the plugin that modifies the product or cart template?

    Best regards,
    Ismael

    in reply to: Title on bbpress forum threads #1231126

    Hi,

    Thank you for the update.

    1.) You can try the ava_after_main_title but it will render the title outside the main container or away from the forum content. Better solution is to directly modify the includes > loop-page.php file as suggested previously.

    2.) You can wrap it inside an html tag, a div or a span tag with a class or ID attribute, so that you can style it properly.

    Example:

    if(bbp_is_single_topic()) {
         echo "<div class='bbp-topic-title'>".bbp_get_topic_title()."</div>";
    }
    

    You can then use the selector “.bbp-topic-title” to style the text.

    3.) We have already checked that file and there’s nothing there that removes the forum or topic title. The reason they don’t display is because of the modified template (loop-page.php) as we have said earlier.

    Best regards,
    Ismael

    in reply to: can't translate the page content with WPML #1231125

    Hi,

    Thank you for the update.

    Looks like they removed the “Use the translation editor” checkbox from the Settings > Multilingual Content Setup tab. The remaining options don’t seem to be working properly with the advance layout builder (ALB). Have you tried cloning the site instead? You can then manually edit the content of the translated page directly in the Advance Layout Builder instead of using the String Translation panel.

    Best regards,
    Ismael

    in reply to: H1 in layerslider #1231123

    Hi,

    Did you try the css code that we suggested above? You can use it to move the whole slider. You can also apply a unique class or ID attribute to the H1 layer directly from the layer slider panel and use it to adjust its position.

    Best regards,
    Ismael

    in reply to: Video controls don't show up on full width slider #1231119

    Hi,

    Sorry for the delay. We tried to resize the video manually by editing the css directly in the browser inspector and we were able to control the audio.

    Can we access the dashboard? We would like to be able to toggle the slider settings so that so we can check the video controls properly.

    Best regards,
    Ismael

    in reply to: Order posts within a category by alphabet #1230894

    Hi,

    Thank you for the update.

    The is_category function will only work or will only return true if the current page is a category archive page. Maybe you need to use the is_page function instead.

    is_page:

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

    Best regards,
    Ismael

    Hi,

    The permalink of the home page is not editable because Polylang has to set the permalinks automatically to properly redirect each language to their respective front pages. You might have to set the Home page for each language in the Settings > Reading panel. (see private field)

    And if you don’t want to see the post or page title in the URL of the front page, enable the “The front page url contains the language code instead of the page name or page id” option in the Languages > Settings panel

    Best regards,
    Ismael

    in reply to: ZEO page customs field ? #1230892

    Hi,

    Aside from removing the unwanted header custom field, we didn’t really do anything to the site, so we are not really sure where the custom field came from. Do you see any error in the site because of that custom field?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You have to create a new path for the shortcodes in the child theme directory by using the “avia_load_shortcodes” filter. Please check the documentation for more info:

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    After adding the “shortcodes” folder or path, create a duplicate of the enfold\config-templatebuilder\avia-shortcodes\tab_section folder inside the new shortcodes path, then edit the tab_section.php file. Inside the file, look for the extra_assets function and adjust the script URL so that it points to the new path in the child theme directory.

    		function extra_assets()
    		{
    			//load css
    			wp_enqueue_style( 'avia-module-tabsection', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/tab_section/tab_section.css', array( 'avia-layout' ), false );
    			//load js
    			wp_enqueue_script( 'avia-module-tabsection', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/tab_section/tab_section.js', array( 'avia-shortcodes' ), false, true );
    		}
    
    

    Related threads:

    // https://kriesi.at/support/topic/how-to-make-the-submenu-sticky-on-mobile/#post-1225113
    // https://kriesi.at/support/topic/issues-in-adding-custom-code-to-postslider-php-in-child-theme/#post-1230323
    // https://kriesi.at/support/topic/content-slider-column-amount/#post-1224986

    Best regards,
    Ismael

    in reply to: Perfect Masonry Portfolio Item Order #1230885

    Hi,

    Do you see any layout issues because of these padding? The layout of the page looks fine on our end — the masonry items are resizing accordingly.

    the padding and margin should be the same for each portfolio item

    If you want the items to have the same size, set the Size Settings to Perfect Grid, and as we have mentioned earlier, the theme automatically applies padding to each masonry item to control their aspect ratio. The padding value is calculated based on the size and aspect ratio of the featured image.

    When I select the option “perfect manual masonry”

    Please check the description of the size settings for more info.

    Perfect Manual Masonry: Manually control the height and width of entries by adding either a “landscape” or “portrait” tag when creating the entry. Elements with no such tag use a fixed default size, elements with both tags will display extra large

    Best regards,
    Ismael

    in reply to: Time line in colorsection is not responsive #1230882

    Hey Hamalaga,

    Thank you for the inquiry.

    The timeline element in the “fuer-studierende” is not working properly because of a script error.

    Uncaught TypeError: can't access property "prev_url", containerData is undefined
        request https://site.com/wp-content/plugins/the-events-calendar/src/resources/js/views/manager.js?ver=5.1.4:422
        onPopState https://site.com/wp-content/plugins/the-events-calendar/src/resources/js/views/manager.js?ver=5.1.4:396
        jQuery 2
    
    

    It’s from The Events Calendar plugin.

    To adjust the color of the timeline content, try to use this css code.

    .av-milestone-content {
    	color: #ffffff !important;
    }

    Best regards,
    Ismael

    in reply to: ZEO page customs field ? #1230858

    Hi,

    Thank you for the info.

    The custom field is not added by the theme, so it’s probably from a plugin or a custom script. You can remove it if you don’t find it necessary, but again a plugin or a custom script might look for it, or regenerate it again.

    Best regards,
    Ismael

    Hi!

    but normally I set up on the “slug” what I like to be seen as permalink

    Is this before or after you created a page or post? You can only edit or assign custom permalink after creating the page or post.

    and I normally left the home page with no slug

    You could edit the post and change the permalink manually. Make sure that the URL is unique, so it doesn’t conflict with other URLs. It might take a while, maybe weeks or month, before these changes reflect in Google console.

    You can also ask Google to re-crawl or re-index the site if necessary.

    // https://support.google.com/webmasters/answer/6065812?hl=en

    Crawling can take anywhere from a few days to a few weeks. Be patient and monitor progress using either the Index Status report or the URL Inspection tool.
    All methods described here have about the same response time.
    There is a quota for submitting individual URLs.
    Requesting a recrawl multiple times for the same URL or sitemap won’t get it crawled any faster.

    Regards,
    Ismael

    in reply to: Notification Box #1230854

    Hi,

    Thank you for the update.

    The theme automatically strips the html tags inside the content, or automatically add paragraph tags when necessary. If you want to disable this behavior, you have to modify the themes\enfold\config-templatebuilder\avia-shortcodes\notification\notification.php file around line 415:

    $output .= ShortcodeHelper::avia_apply_autop( ShortcodeHelper::avia_remove_autop( $content ) ) . '</div>
    ';
    

    Remove the avia_apply_autop and avia_remove_autop functions.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: aviaAsset_avia-head-scripts in Table wp_options #1230849

    Hi,

    You’re welcome. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day ahead.

    Best regards,
    Ismael

    in reply to: Edit toggle button of modal window (cookies) #1230848

    Hi,

    My bad. I forgot to change selector for the FR language. Please update the code again.

    We changed this line:

    html[lang="fr-FR"] .en-cookie {
    

    .. to:

    html[lang="fr-FR"] .fr-cookie {
    

    If it doesn’t work still, try to add the important rule to the display property.

    html[lang="en-US"] .en-cookie {
      display: inline !important;
    }
    
    html[lang="fr-FR"] .fr-cookie {
      display: inline !important;
    }

    Best regards,
    Ismael

Viewing 30 posts - 17,941 through 17,970 (of 67,597 total)