Forum Replies Created

Viewing 30 posts - 14,071 through 14,100 (of 67,340 total)
  • Author
    Posts
  • in reply to: Unique title and description on pagination pages! #1309213

    Hi,

    Thank you for the new login token.

    We removed the custom SEO title field value and edited the avf_add_page_number_to_title function a bit. The page number is now included in the blog page title. This is the modified function.

    /*Добавляет к Title и Description на страницах пагинации номера страниц "Страница - 2,3,4..."*/
    if ( ! function_exists( 'avf_add_page_number_to_title' ) )
    {
        function avf_add_page_number_to_title( $title )
        {
            global $page;
            $paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
            ! empty ( $page ) && 1 < $page && $paged = $page;
    		isset($_GET['avia-element-paging']) && $paged = $_GET['avia-element-paging'];
            $paged > 1 && $title .= sprintf( __( 'Page %s' ), $paged );
    
            return $title;
        }
    
        add_filter( 'wpseo_metadesc', 'avf_add_page_number_to_title', 100, 1 );
        add_filter( 'wpseo_title', 'avf_add_page_number_to_title', 100, 1 );
    	add_filter( 'avf_title_tag', 'avf_add_page_number_to_title', 100, 1 );
    }
    

    Best regards,
    Ismael

    in reply to: Image slider to work on auto #1309211

    Hey Dave,

    Thank you for the inquiry.

    You can use the script that we provided in the following thread to add an autorotation for the horizontal gallery.

    // https://kriesi.at/support/topic/can-the-horizontal-gallery-autoslide-the-images/#post-986834

    Best regards,
    Ismael

    in reply to: Tab Section problem, doesnt show full content #1309210

    Hi,

    We added the custom script that we recommended above and disabled the other custom script that is supposed to adjust the height of the tab section title. The function or script name is ava_custom_script_fix.

    Best regards,
    Ismael

    Hey decode,

    Thank you for the inquiry.

    Would you mind providing a direct link to a product that is supposed to display the quantity buttons? We tried to check some of the products but we are not quite sure if they are supposed to have the quantity button or just the request a quote button.

    Best regards,
    Ismael

    in reply to: Problems with Contact Form #1309207

    Hey Chrisi2020,

    Thank you for the inquiry.

    Have you tried adjusting the from address to a domain email address? This should notify the email server to allow any emails coming from the contact form. Please check the following documentation for more info.

    // https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Ismael

    in reply to: importing font #1309085

    Hi,

    Great! Glad to know that this is fixed. Please do not hesitate to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Mobile menu Background #1309084

    Hi,

    Thank you for the update.

    Try to use this css code to change the background color of the mobile menu container.

    .html_av-overlay-side #top .av-burger-overlay-scroll {
    	background: #ffff;
    }
    

    You can adjust the font or style of the mobile menu items in the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    in reply to: Map Plugin to Display Client Project Portfolio #1309083

    Hey So Evolve,

    Thank you for the inquiry.

    Which plugin are you currently using? You can find a few map plugins in the repository with different range of options and features.

    // https://wordpress.org/plugins/tags/google-map/

    Best regards,
    Ismael

    in reply to: Masonry alignment #1309081

    Hey Sebastian,

    Thank you for the inquiry.

    What is the current masonry size settings? Please post the site details in the private field including the link to the page with the masonry element so that we could check it properly.

    Best regards,
    Ismael

    in reply to: Change inner content width #1309079

    Hi,

    Would you mind posting the site details? We may need to login to the dashboard and check the css code. Please post the info in the private field.

    Best regards,
    Ismael

    in reply to: Avatar Disappered bbpress #1309065

    Hey amyteslin,

    Thank you for the inquiry.

    Looks like the avatar container is empty.

    <span class="bbp-author-avatar"></span>
    

    Did you disable the default avatar option, or did you modify any of the forum templates?

    The following documentation and plugin might help.

    // https://codex.bbpress.org/getting-started/faq/user-avatars/
    // https://wordpress.org/plugins/basic-user-avatars/

    Best regards,
    Ismael

    in reply to: Turn off video lightbox ONLY #1309064

    Hey Antonio,

    Thank you for the inquiry.

    You may need to modify the template file directly and add the noLightbox class name or attribute to the links containing the video URL. This should disable the lightbox for those links.

    Best regards,
    Ismael

    in reply to: Content Slider – Slider controls missing #1309062

    Hi,

    No problem. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    It is possible that the form is using a different date picker script or library. You have to contact the plugin or script authors regarding this issue as it is beyond the scope of support.

    Thank you for your understanding.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We could decrease the duration of the scrolling animation but changing the color of the section to something else might require a custom script, which we will not be able to provide here. To adjust the duration, edit the js > avia.js file and look for this code around line 809:

    duration = data.duration || 1200,
    easing = data.easing || 'easeInOutQuint';
    

    Set the duration accordingly.

    Best regards,
    Ismael

    in reply to: Responsive issue (bug?) with accordion element #1309058

    Hey goldengate415,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue? We cannot find the border and the contact form looks perfectly fine as shown in the screenshot below.

    Screenshot: https://postimg.cc/8sGM3SWM

    Best regards,
    Ismael

    in reply to: Different navigation for a page. #1309057

    Hey peterolle,

    Thank you for the inquiry.

    1.) You can use a plugin to control the visibility of the menu or the items within it.

    // https://wordpress.org/plugins/menu-items-visibility-control/
    // https://wordpress.org/plugins/zen-menu-logic/

    2.) You can find the “center logo, split menu” and more header layout options in the documentation.

    // https://kriesi.at/documentation/enfold/header/#header-widget-position

    Split menu: https://kriesi.at/documentation/enfold/menu/#toggle-id-145

    Best regards,
    Ismael

    in reply to: Portfolio Grid order #1309055

    Hey merryng,

    Thank you for the inquiry.

    The portfolio post type does not support the page order option by default, but you can enable it manually. You can add this filter in the functions.php file to enable the page attributes for the portfolio items.

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    

    Make sure to set the “Order by” settings to “Page Order”.

    Best regards,
    Ismael

    in reply to: Portfolio grid hover like masonry grid hover #1309040

    Hi,

    Looks like adjusting the transition is not helping but applying a maximum height does. Did you disable the portfolio grid animation? We added this css code.

    .grid-sort-container .grid-entry {
        max-height: 279px;
    }
    

    Best regards,
    Ismael

    in reply to: Shop Banner on mobile #1309038

    Hey aliciapotts,

    Thank you for the inquiry.

    You can use this css code to adjust the height of the banner on mobile view.

    @media only screen and (max-width: 767px) {
    #av_product_description {
        max-height: 172px;
    }
    
    #av_product_description .av-parallax {
        height: 100% !important;
        top: 0 !important;
        transform: translate3d(0, 0, 0) !important;
    }
    }

    Best regards,
    Ismael

    in reply to: Color Section with columns #1309037

    Hey davs74,

    Thank you for the inquiry.

    You can start by creating 2 rows with three 1/3 columns each. Edit the first column in the row, enable the Equal Height Columns option and remove the Space between columns. You should also enable the Custom top and bottom margin and keep the top margin to 0. You can then add a few css code to set a minimum height for the columns.

    Best regards,
    Ismael

    in reply to: Content Slider – Slider controls missing #1309034

    Hey jwidmann,

    Thank you for the inquiry.

    The slider arrows or navigation are not displaying because of this css code.

    .avia-smallarrow-slider-heading {
        display: none!important;
    }
    

    Did you install a plugin for custom css code?

    Best regards,
    Ismael

    in reply to: Startup Business Demo & WPML not working #1309028

    Hey cristinapizzato,

    Thank you for the inquiry.

    How did you translate the pages? Did you follow the instructions in the following documentation?

    // https://wpml.org/documentation/theme-compatibility/enfold/

    Best regards,
    Ismael

    in reply to: Mobile device display order #1309024

    Hi,

    The code in the Quick CSS field is saved or added in the stylesheet located in the wp-content > uploads > dynamic_avia folder. The theme loads this file along with other stylesheets.

    Since we cannot access the site, please set the builder to debug mode, copy the actual shortcode from the debug mode field just below the advance layout builder and post it here using pastebin or using the same code sharing tool (controlc) that we used above.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: Unique title and description on pagination pages! #1309023

    Hi,

    The login token is no longer working. Please generate another so that we can access the site again. Removing the value of the title field should fix the issue because when the field is empty, the function avf_add_page_number_to_title will not be overridden.

    Best regards,
    Ismael

    in reply to: Tab Section problem, doesnt show full content #1309022

    Hi,

    you will realize that there is a huge blank space on top of this other tab

    Try to set the Content height to the second option. The space is created because it forces the same height for all tabs. This option only works well if you know that the content will actually have the same height or if you don’t mind a little space on other tabs with shorter content.

    Best regards,
    Ismael

    in reply to: BBPress can't create new topics #1309020

    Hi,

    Yes, it is fine to switch the compression settings off temporarily. You could switch it back when you are done with the site configuration.

    Best regards,
    Ismael

    in reply to: Autorotate Horizontal gallery #1308781

    Hey FamalcoGroup,

    Thank you for the inquiry.

    Have you tried using the Easy Slider or the Partner/Logo Element? These sliders have an auto rotation option by default unlike the horizontal gallery element.

    Best regards,
    Ismael

    in reply to: Change inner content width #1308779

    Hey Sebastian,

    Thank you for the inquiry.

    We may need to check the site or inspect the elements in order to understand the issue. Please post the site URL in the private field, and toggle or temporarily disable the Enfold > Performance > File Compression settings. Have you tried checking the site on incognito mode?

    Best regards,
    Ismael

    Hey joelnewcomer,

    Thank you for the inquiry.

    Have you tried to manually add the svg image using a text or code block? This way you will be able to define the width and height attribute of the svg image directly.

    Best regards,
    Ismael

Viewing 30 posts - 14,071 through 14,100 (of 67,340 total)