Forum Replies Created

Viewing 30 posts - 10,861 through 10,890 (of 67,443 total)
  • Author
    Posts
  • in reply to: Include logo in slider #1350412

    Hi,

    Thank you for following up.

    Did you also add the css code? Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code, and make sure to purge the cache.

    .responsive #top .caption_container .av-slide-logo-image {
        position: absolute !important;
        top: 100px;
        right: 50px;
        margin: 0 !important;
        left: auto !important;
    }
    

    Best regards,
    Ismael

    in reply to: Scrolling effect #1350411

    Hey werbeagenturaanders,

    Thank you for the inquiry.

    There is no option for this by default but you might be able to create the layout using the layer slider. These are the images used in the site.

    // https://www.atumobile.com/cache-buster-1637396670/bundles/app/img/orderbook_img_mask.png
    // https://www.atumobile.com/cache-buster-1637396670/bundles/app/img/section_orderbook_bg.jpg

    They just placed the orderbook_img_mask image over the actual section_orderbook_bg background image.

    Best regards,
    Ismael

    in reply to: Customize Tag Page #1350409

    Hi,


    @evtrans
    : There is no option for it in the dashboard but you can use this code in the functions.php file to manually adjust the layout of the tag and archives pages.

    `add_filter(‘avf_blog_style’,’avia_change_tag_blog_layout’, 10, 2);
    function avia_change_tag_blog_layout($layout, $context){
    if($context == ‘archive’) $layout = ‘single-small’;
    if($context == ‘tag’) $layout = ‘single-small’;
    return $layout;
    }

    Available layouts are single-small, single-big, blog-grid and multi-big. Please feel free to open another thread if you have more questions about the theme.

    Best regards,
    Ismael

    in reply to: Shortcodes woocommerce (solved) #1350408

    Hey koomo,

    Thank you for the inquiry.

    The shortcode is working correctly on our installation. Are you sure that the product ID is correct? Please post the login details in the private field so that we can check this further.

    Best regards,
    Ismael

    in reply to: entypo-fontello.woff2 #1350407

    Hey mfuji,

    Thank you for the inquiry.

    Adding this filter in the functions.php file should help.

    function avf_custom_font_display( $font_display, $font_name )
    {
    	// Check for a font and change the default theme setting
    	if( 'entypo-fontello' == $font_name )
    	{
    		return 'block';
    	}
    
    	return $font_display;
    }
    
    add_filter( 'avf_font_display', 'avf_custom_font_display', 10, 2 );
    

    This will set the font-display property of the entypo-fontello font to block.

    Best regards,
    Ismael

    in reply to: Google Fonts #1350405

    Hey!

    Great! Glad to know that you have found the cause of the issue. Please feel free to open a different thread if you have more questions regarding the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: background image not responsive on ipad #1350404

    Hi,

    Thank you for the update.

    Try to add use this css code to set the background attachment to scroll on tablet view.

    @media only screen and (max-width: 1366px) {
    
      /* Add your Mobile Styles here */
      .avia-section.av-5pwi0l-ee46eb8910c19acd4d6c5e28187a3f13 {
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: scroll;
      }
    }
    

    Please note that this modification will disable the fixed background effect on mobile devices, but the image will be completely visible.

    Best regards,
    Ismael

    in reply to: Still space between columns, should be "0" #1350403

    Hey Tilman,

    Thank you for the inquiry.

    Have you tried applying the image as background to the flex column element instead of placing it in a text block?

    You can also apply a negative top margin to the rows to pull them upwards.

    #top .flex_column_table.av-equal-height-column-flextable.av-kal2af-9852955e6ed6f8236017db0517695e0b, #top .flex_column_table.av-equal-height-column-flextable.av-aq85pj-cc0d57d70973fb97fd3d575c63048b9e, #top .flex_column_table.av-equal-height-column-flextable.av-6kzfhz-8105bb8566dbb446162dde51238fefb1, #top .flex_column_table.av-equal-height-column-flextable.av-6f1ivr-05e6ff33094764f8f2d74f0d8921c9ef {
        margin-top: -15px;
    }
    

    Best regards,
    Ismael

    in reply to: Sidebar Problem #1350402

    Hey newmediologo,

    Thank you for the inquiry.

    Are you sure that you didn’t change anything else in the sidebar.php file? Please remove the modifications or revert the sidebar.php file back to default, then add this code in the functions.php file.

    add_filter("avf_custom_sidebar", function($custom_sidebar) {
        if ( is_taxonomy('portfolio_entries') ) { 
            $custom_sidebar = "Sidebar Portfolio"; 
        }
        return $custom_sidebar;
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: Fixed background on mobile doesn't work #1350401

    Hey mkr8260,

    Thank you for the inquiry.

    Are you checking this on an iOS device? Please note that iOS devices such as iPhone have issues with fixed backgrounds. You may need to enable the parallax effect instead by setting the Background Attachment settings to “Parallax”.

    // https://caniuse.com/background-attachment > under Known Issues
    // https://stackoverflow.com/questions/21476380/background-size-on-ios

    Best regards,
    Ismael

    Hi,

    Thank you for your patience.

    Can we deactivate the plugins temporarily after activating the latest version of the theme? We may also need to disable the customizations temporarily. Please create a file and database backup so that we can restore the site back just in case, and provide the FTP details in the private field so that we can edit the files when necessary.

    Best regards,
    Ismael

    in reply to: Enfold and Woocommerce Booking #1350399

    Hi,

    Thank you for the update.

    Do you have a clone of the site where the Woocommerce Booking plugin is enabled? The other plugin is still enabled when we checked the site again today.

    Best regards,
    Ismael

    in reply to: layerslider timeout #1350397

    Hi,

    Thank you for the inquiry.

    Where do you see this error? The site loads fine when we checked and we didn’t see any errors in the browser console.

    Best regards,
    Ismael

    in reply to: Magazine element customization #1350395

    Hey evtrans,

    Thank you for the inquiry.

    You can use this css code to create a bullet point before the magazine title.

    .av-magazine-entry:before {
        float: left;
        display: inline-block;
        content: '';
        -webkit-border-radius: 0.375rem;
        border-radius: 0.375rem;
        height: 0.75rem;
        width: 0.75rem;
        margin-right: 0.5rem;
        background-color: #bdbdbd;
    }
    

    Best regards,
    Ismael

    in reply to: Google Fonts #1350394

    Hey Christian,

    Thank you for the inquiry.

    Have you tried selecting a websafe font in the Enfold > General Styling > Fonts panel? Look for the Heading Font and Body Text dropdown and select one of the websafe or a non-google fonts.

    Best regards,
    Ismael

    in reply to: Include logo in slider #1350177

    Hi,

    Thank you for the update.

    Try to add this script in the functions.php file to append the logo image to the parent caption container.

    // custom Enfold scripts
    function ava_custom_script()
    {
        ?>
        <script>
           (function($) {
                $(document).ready(function() {
                    $(".av-slide-logo-image").each(function() {
                        var logo = $(this);
                        var container = logo.parents(".caption_container");
    
                        logo.appendTo(container);
                    });
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script', 10);
    

    Best regards,
    Ismael

    in reply to: How do I set "page order" #1350175

    Hi,

    Glad to know that this solution is working. Please do not hesitate to open another thread if you have more questions regarding the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    The modification described here is for the content slider and the default gallery elements. For the masonry gallery, you will have to modify the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php file. Look for this code around line 680.

    	/**
    					 * Allows to run shortcodes
    					 *
    					 * @since 4.8.3
    					 * @param string $content
    					 * @param array $entry
    					 * @param array $this->atts
    					 * @return string
    					 */
    					$content = apply_filters( 'avf_masonry_entry_content', $content, $entry, $this->config );
    

    Below add this code.

    
    $copyright_text = get_post_meta( $thumb_ID, '_avia_attachment_copyright', true );
    $content .= "
    <div class='av-masonry-image-info'>";
    $content .= "<span class='av-masonry-image-width'>Width: " . $attachment[1] . "</span>";
    $content .= "<span class='av-masonry-image-height'>Height: " . $attachment[2] . "</span>";
    $content .= $copyright_text;
    $content .= "</div>
    ";
    

    This should render the copyright, image size and content inside the masonry content container.

    Best regards,
    Ismael

    in reply to: Include logo in slider #1350161

    Hey Antonio,

    Thank you for the inquiry.

    You can include the image as part of the slider caption.

    <img class="av-slide-logo-image" src="IMAGE URL">
    

    Then use this css code to place it on the top right corner of the slider.

    .av-slide-logo-image {
        position: absolute;
        top: 50px;
        right: 50px;
    }

    Best regards,
    Ismael

    in reply to: Video without preload #1350159

    Hi,

    Can you explain how i add a fullwidth-video which should play only on useraction in accordance to the GDPR? )

    We have checked the slider settings again and it looks like you can stop locally hosted video from autoplaying and you can add a preview or fallback image but the video will still load automatically or will not be lazy loaded, unlike when using youtube or vimeo videos.

    To stop the video from autoplaying, edit the video slide, go to the Styling > Video Settings panel and tick the Disable Autoplay option. You can add a preview image in the Content > Fallback Images panel.

    Best regards,
    Ismael

    in reply to: text of the ticker left-aligned #1350158

    Hi,

    Thank you for the screenshot.

    You can try this css code to remove the padding on both sides of the ticker container.

    .ditty-ticker__contents {
        padding: 0 !important;
    }
    

    Best regards,
    Ismael

    in reply to: Text Block Font Size is not working #1350157

    Hey Marina,

    Thank you for the inquiry.

    The global font style for the h1 element in the Advanced Styling panel is overriding the custom style for the text block. You can use the Special Heading element instead, but make sure to select a different Heading Style to get access to the Font Sizing settings.

    This is the css code that overrides the custom text block font size settings.

    #top #wrap_all .all_colors h1 {
        font-size: 26px;
        font-family: 'ubuntu', Helvetica, Arial, sans-serif;
        font-weight: normal;
        text-transform: none;
    }
    

    Best regards,
    Ismael

    in reply to: Style animated number blocks #1350156

    Hey navindesigns,

    Thank you for the inquiry.

    You can try this css code to add a white background behind the other circle with the blue border.

    .page-id-235 #av_section_2 .avia-animated-number .avia-animated-number-circle::before {
        display: block;
        border: none;
        width: 100%;
        border-radius: 50%;
        transform: translateX(-4%);
        background: white;
        z-index: 0;
        content: "";
        position: absolute;
        height: 100%;
    }
    

    Best regards,
    Ismael

    in reply to: Style animated number blocks #1350155

    Hey navindesigns,

    Thank you for the inquiry.

    You can try this css code to add a white background behind the other circle with the blue border.

    .page-id-235 #av_section_2 .avia-animated-number .avia-animated-number-circle::before {
        display: block;
        border: none;
        width: 100%;
        border-radius: 50%;
        transform: translateX(-4%);
        background: white;
        z-index: 0;
        content: "";
        position: absolute;
        height: 100%;
    }
    

    Best regards,
    Ismael

    in reply to: How can I change the "return to top" styling? #1350153

    Hi,

    No problem. Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: How do I set "page order" #1350151

    Hi,

    We have found another solution in a different thread which might help. Please remove the previous filter from the functions.php file and replace it with this one.

    /**
     * Customize Adjacent Post Link Order
     */
    function wpse73190_gist_adjacent_post_where($sql) {
      if ( !is_main_query() || !is_singular() )
        return $sql;
    
      $the_post = get_post( get_the_ID() );
      $patterns = array();
      $patterns[] = '/post_date/';
      $patterns[] = '/\'[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\'/';
      $replacements = array();
      $replacements[] = 'menu_order';
      $replacements[] = $the_post->menu_order;
      return preg_replace( $patterns, $replacements, $sql );
    }
    add_filter( 'get_next_post_where', 'wpse73190_gist_adjacent_post_where' );
    add_filter( 'get_previous_post_where', 'wpse73190_gist_adjacent_post_where' );
    
    function wpse73190_gist_adjacent_post_sort($sql) {
      if ( !is_main_query() || !is_singular() )
        return $sql;
    
      $pattern = '/post_date/';
      $replacement = 'menu_order';
      return preg_replace( $pattern, $replacement, $sql );
    }
    add_filter( 'get_next_post_sort', 'wpse73190_gist_adjacent_post_sort' );
    add_filter( 'get_previous_post_sort', 'wpse73190_gist_adjacent_post_sort' );
    

    This is based on: https://wordpress.stackexchange.com/questions/73190/can-the-next-prev-post-links-be-ordered-by-menu-order-or-by-a-meta-key

    Best regards,
    Ismael

    in reply to: Email Issues #1350150

    Hi,

    Thank you for the info.

    Did you add any code snippet or filters in the functions.php file related to the contact form fields? Please post the login details in the private field so that we can check the contact form settings.

    Best regards,
    Ismael

    in reply to: Enfold and Woocommerce Booking #1350149

    Hey koomo,

    Thank you for the inquiry.

    The quantity buttons in the “people selector” form are different from the button in the product page demo. Please note that the plugin has its own style for its own elements which might be quite different compare to the theme, so expect to add a few css adjustments and change a few templates when building a site using those plugins.

    Looks like the plugin is using an svg image for the quantity icons in the “people selector” form, but we can still try to adjust it with css.

    .yith-wcbk-people-selector__field__plus-wrap, .yith-wcbk-people-selector__field__minus-wrap {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    color: #008489;
    font-size: 16px;
    padding: 0;
    vertical-align: middle;
    line-height: 41px;
    border: none;
    width: 43px;
    height: 43px;
    cursor: pointer;
    margin: 0;
    display: inline;
    border: 0;
    border-radius: 0;
    -webkit-appearance: none;
    background-color: #F8F8F8;
    border: 1px solid #E1E1E1;
    color: #666;
    background-image: url(../images/layout/bg-button.png);
    background-repeat: repeat-x;
    outline: none;
    }
    
    .yith-wcbk-people-selector__field__plus-wrap svg, .yith-wcbk-people-selector__field__minus-wrap svg {
    top: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    }
    

    Best regards,
    Ismael

    in reply to: Sticky mobile header on scroll #1350148

    Hi,

    To remove the space for the social media icons, please try to add this css code inside the css media query.

    .avia-menu.av_menu_icon_beside {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

    Best regards,
    Ismael

    in reply to: Masonry taxonomie sorting mobile (solved) #1350147

    Hey koomo,

    Thank you for the inquiry.

    Looks like you have set the page to display a different masonry element on mobile view. Do they have the same settings, or did you select the same categories for both masonry elements?

    Best regards,
    Ismael

Viewing 30 posts - 10,861 through 10,890 (of 67,443 total)