Forum Replies Created

Viewing 30 posts - 11,371 through 11,400 (of 66,194 total)
  • Author
    Posts
  • in reply to: Adding gradient overlay on Fullwidth Slider #1331106

    Hi,

    No problem! Glad we could help. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Portfolio tag #1331105

    Hi,

    Thank you for the update.

    You can add the tags the same way as you would when adding tags to posts. Please check the following documentation for more info.

    // https://wordpress.com/support/posts/tags/

    Best regards,
    Ismael

    in reply to: Full width submenu horizontal scroll #1331104

    Hi,

    We already included the css media query above. You can directly add it in the Quick CSS field or in the child theme’s style.css file.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Adjust the column width of Mega Menu #1331103

    Hi,

    Thank you for the info.

    We cannot reproduce the issue on 1280px or larger screens. Please check the screenshot below.

    Screenshot: https://imgur.com/5ySVOBQ

    If you want to adjust the width of the container a bit and not make it fullwidth, please look for this code inside the css media query.

    #menu-item-581 .avia_mega_div {
    		width: calc(100vw) !important;
    		right: -115px !important;
    		left: auto !important;
    	}
    
    

    Adjust the width and right position value or replace the code with this one.

    #menu-item-581 .avia_mega_div {
        width: calc(100vw – 100px) !important;
        right: -70px !important;
        left: auto !important;
    }

    Best regards,
    Ismael

    in reply to: Modify the background color and text for products #1331102

    Hey Bruno,

    Thank you for the inquiry.

    Looks like you have selected or set the same color for the Primary color and the Highlight color in the Enfold > General Styling > Main Content panel. Please check the color values in there or add this css code to manually adjust the background color of the input tags.

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        border-color: transparent;
        background-color: #ffffff;
        color: #2c335d;
    }

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Search results Layout broken #1331101

    Hi,

    Thank you for the inquiry.

    Did you add any html tags or custom shortcodes to the post where the issue starts? You have make sure that the html tags are closed properly and that the custom shortcodes render valid html.

    Please post the login details in the private field so that we can check the content of the posts. You can use the following plugin to create a login token.

    // https://el.wordpress.org/plugins/temporary-login-without-password

    Best regards,
    Ismael

    in reply to: Website using server resource limits and crashing #1331100

    Hey objectifweb,

    Thank you for the inquiry.

    Where can we check the issue? Would you mind posting the content of the error logs?

    You might want to disable the Performance > File Compression settings temporarily to prevent the theme from creating entries in the database, which contain the content of every scripts and stylesheets in the site.

    You could also disable the new post css file feature, which also creates entries in the database. Just add this code in the functions.php file.

    /**
     * Filter to skip css file generation.
     * You can add logic to skip for certain pages/posts only.
     * 
     * @since 4.8.6.1
     * @param boolean $create
     * @return boolean					true | false or anything else to skip generation of css file
     */
    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
    

    Best regards,
    Ismael

    Hey bagha,

    Thank you for the inquiry.

    That option is not available out of the box but you may be able to create something using the Portfolio AJAX feature. You can check the demo in the following link.

    // https://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    Best regards,
    Ismael

    in reply to: Masonry isn't randomizing the entries #1331097

    Hey PowerBusWay,

    Thank you for the inquiry.

    The random order option is working correctly on our installation. Did you add any modifications in the functions.php file? You might have set the default masonry query using a filter.

    Best regards,
    Ismael

    in reply to: Change the color of menu button on hover #1331096

    Hey ceakins1908,

    Thank you for the inquiry.

    You can use this css code to adjust the color of the menu text on hover.

    #top #header.header_color.av_header_transparency .av-main-nav > li > a:hover .avia-menu-text {
        color: #ffcc5e;
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    in reply to: Bog date not shown #1331095

    Hey Stefan,

    Thank you for the inquiry.

    Did you add excerpts to the posts? The post meta info including the date will only display when the post has an excerpt. You can check that in the enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php line 917.

    if( ( $show_meta && ! empty( $excerpt ) ) || in_array( $show_meta_data, array( 'always', 'on_empty_content' ) ) )
    				{
    					// show post meta here if excerpt is not empty
    				}
    

    Best regards,
    Ismael

    Hey agentur2c,

    Thank you for the inquiry.

    What do you mean by “side navigation”? Are you referring to the navigation in the sidebar container? If so, then you can use an image widget in the Appearance > Widgets panel to display a logo in the sidebar. Add the widget in the Sidebar Pages or in the Displayed Everywhere widget area.

    Best regards,
    Ismael

    in reply to: Form in two columns #1330974

    Hi,

    Awesome! Glad we could be of help. Please do not hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Many records in postmeta table #1330973

    Hey onizet,

    Thank you for the inquiry.

    The new custom fields are for the posts css file creation for custom element styles, which is supposed to improve the site speed. But if you are having trouble with the database and you believe that these custom fields are causing it, then you can disable it using this filter in the functions.php.

    /**
     * Filter to skip css file generation.
     * You can add logic to skip for certain pages/posts only.
     * 
     * @since 4.8.6.1
     * @param boolean $create
     * @return boolean					true | false or anything else to skip generation of css file
     */
    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
    

    Unfortunately, you cannot disable the other custom fields that we discussed in the previous thread because those fields contain the builder elements or shortcodes.

    Best regards,
    Ismael

    in reply to: different start pages for mobile and PC #1330971

    Hi,

    Thank you for the info.

    You might be able to use the wp_is_mobile function to detect if the current device used is mobile and the wp_redirect function to redirect the users to a different page if the first condition is true.

    // https://developer.wordpress.org/reference/functions/wp_is_mobile/
    // https://developer.wordpress.org/reference/functions/wp_redirect/

    Best regards,
    Ismael

    in reply to: category alignment #1330968

    Hi,

    Glad to know that this is working. It is only temporary, just to make sure that the modified stylesheets are loaded instead of the older one. You can turn it on back again once the changes are applied.

    Best regards,
    Ismael

    Hi,

    Alright. Let us know once the staging site is ready. :)

    Best regards,
    Ismael

    in reply to: Portfolio tag #1330954

    Hey Yaphoon,

    Thank you for the inquiry.

    Yes, it is possible to add tags to the portfolio items. What do you mean by “products”? Are you planning to use the portfolio post type for your products?

    Best regards,
    Ismael

    in reply to: Leaflet map CSS styling #1330951

    Hi,

    Alright. Glad it is finally working. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: excerpt line breaks not showing in magazine element #1330950

    Hi,

    Right, but it works without even adding the br tags in the blog element

    The blog element actually displays the post content, not the excerpt. And it looks like WordPress do not automatically add paragraph tags or create new lines for the excerpt, so if you want the magazine to work the same as the blog element, you have to remove the post excerpt and modify the magazine.php file, around line 1297 look for this code.

    $excerpt = ! empty( $entry->post_excerpt ) ? $entry->post_excerpt : avia_backend_truncate( $entry->post_content, apply_filters( 'avf_magazine_excerpt_length', 60 ), apply_filters( 'avf_magazine_excerpt_delimiter', ' ' ), '…', true, '' );
    

    Replace it with:

    $excerpt = avia_backend_truncate( $entry->post_content, apply_filters( 'avf_magazine_excerpt_length', 60 ), apply_filters( 'avf_magazine_excerpt_delimiter', ' ' ), '…', false, '' );
    

    Just make sure that you are not using any shortcodes in any of your posts because what we did with the modification is disable the function that strips the shortcodes and html tags.

    Best regards,
    Ismael

    in reply to: Problem with Plugin "WP Simple Booking Calender" #1330946

    Hi,

    Thank you for the info.

    Is the privacy message bar working correctly now? The privacy message bar is displaying in the page even when the calendar plugin is enabled.

    Best regards,
    Ismael

    in reply to: Translate strings with section id #1330944

    Hi,

    Thank you for the update.

    The “Market Platform” column is empty as you can see in the screenshot below, so we are not really sure what to check.

    Screenshot: https://imgur.com/yucaMJL

    We may need to access the dashboard and check the menu settings in order to properly understand the issue.

    Best regards,
    Ismael

    in reply to: Disable autoplay and enable sound Vimeo #1330943

    Hey WDP,

    Thank you for the inquiry.

    Are you referring to the background video in the color section? Please note that background videos are muted by default and set to autoplay on page load. We did not find any Video elements in the home page.

    Best regards,
    Ismael

    in reply to: Adding gradient overlay on Fullwidth Slider #1330942

    Hey breezemedia,

    Thank you for opening a new thread.

    We automatically close threads, specially olds ones, if someone else aside from the OP re-opened it. So we recommend opening your own thread instead of replying to an existing one.

    To fix the issue with the overlay, please remove the previous css code, then use the following css instead.

    .avia-slideshow li .avia-slide-wrap > div:before {
        content: '';
        display: block;
        width: 100%;
        height: 600px;
        background: -moz-linear-gradient(left,rgba(236,110,0,0.75) 0%,rgba(234,172,124,0.57) 24%,rgba(255,255,255,0.25) 66%,rgba(255,255,255,0) 100%);
        background: -webkit-linear-gradient(left,rgba(236,110,0,0.75) 0%,rgba(234,172,124,0.57) 24%,rgba(255,255,255,0.25) 66%,rgba(255,255,255,0) 100%);
        background: linear-gradient(to right,rgba(236,110,0,0.75) 0%,rgba(234,172,124,0.57) 24%,rgba(255,255,255,0.25) 66%,rgba(255,255,255,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfec6e00',endColorstr='#00ffffff',GradientType=1 );
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
    }
    
    .avia-slideshow li .avia-slide-wrap > div .caption_container {
        z-index: 2000;
    }

    This is how the slider should look like after applying the css.

    Screenshot: https://imgur.com/VQd2JMN

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css or before checking the page.

    Best regards,
    Ismael

    in reply to: Add Widget Area to the right side of header #1330808

    Hey navindesigns,

    Thank you for the inquiry.

    You can use this css code to adjust the position of the widget.

    #top #header #header_main .widget {
        position: absolute;
        right: 100px;
        top: 10px;
    }
    

    If you are going to add another widget, you can use the widget ID to target or adjust the style of any specific widget.

    Best regards,
    Ismael

    in reply to: Problem with Plugin "WP Simple Booking Calender" #1330805

    Hey noellmn,

    Thank you for the inquiry.

    Looks like you are using a different privacy message bar now. How did you enable it? We cannot find the name of the plugin or extension, so it must have been added manually using a script.

    Best regards,
    Ismael

    in reply to: Add subcategories to images #1330803

    Hey Fitematrulle,

    Thank you for the inquiry.

    We are not really sure what you are trying to do here. Would you mind providing a screenshot?

    If you need a way to direct your users to sub categories or child pages, you can apply a custom link to the parent images or services and redirect your users to another page containing the images with links to the subcategory pages.

    Best regards,
    Ismael

    in reply to: Pictures blur/pixelisated using your Layerslader WP #1330791

    Hey jb84,

    Thank you for the inquiry.

    This is the actual image (see private field) used in the slider. Is the original image much sharper than this thumbnail or image? Please provide the original image so that we can upload and check it on our installation.

    Best regards,
    Ismael

    in reply to: Translate strings with section id #1330788

    Hey Andreas,

    Thank you for the inquiry.

    The marketing platform column does not contain any items in the EN version. Did you remove the items? How did you translate the menu? Please note that you can also create a dedicated menu for each language instead of translating the original menu.

    // https://wpml.org/documentation/getting-started-guide/translating-menus/

    Best regards,
    Ismael

    in reply to: Not the same view on the IPad-pro #1330785

    Hey Angèle,

    Thank you for the inquiry.

    There is a known issue with fixed elements on iOS devices. You may need to set the background attachment back to scroll on tablet view. Try to add this code in the Quick CSS field.

    @media only screen and (max-width: 989px) {
        .flex_cell.avia-full-contain {
            background-size: cover !important;
            background-attachment: scroll !important;
            background-position: 10% 50% !important;
        }
    }

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings before checking.

    This is how the page should look after adding the css.

    Screenshot: https://imgur.com/EbP9Kjr

    Best regards,
    Ismael

Viewing 30 posts - 11,371 through 11,400 (of 66,194 total)