Forum Replies Created

Viewing 30 posts - 23,071 through 23,100 (of 67,510 total)
  • Author
    Posts
  • Hi,

    Thank you for your patience.

    Do you have a test page where we can see the hierarchy of the pages? The parent page should be displayed in the breadcrumb by default. Did you assign a grand parent page or a parent of a parent page?

    Best regards,
    Ismael

    in reply to: Using 2 Fullscreen Slider #1106567

    Hey msigner,

    Thank you for the update.

    This css code should force the slider to inherit the height of the view port.

    @media only screen and (max-width: 767px) {
        .avia-fullscreen-slider .avia-slideshow {
            max-height: calc(100vh - 80px);
        }
    }

    Please remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Upcoming Events #1106565

    Hey petschka,

    Thank you for using Enfold.

    The events or calendar page should display the current and upcoming events by default. Where can we see your events page?

    You should be able to change the options in Events > Settings panel.

    // https://support.theeventscalendar.com/021757-Settings-Overview-The-Events-Calendar-and-Events-Calendar-PRO

    Best regards,
    Ismael

    in reply to: Change in page since installing 4.5.7 #1106564

    Hey stoudenmirel,

    Thank you for using Enfold.

    Did you register your custom post type using the “avf_alb_supported_post_types” filter? That should activate or enable the ALB for your custom post types.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You should be able to set the Canvas Width in the Slider Settings > Layout panel of the layer slider. That’s the maximum width of the slider content.

    Best regards,
    Ismael

    in reply to: Event Tracking Social Media Links #1106561

    Hi,

    Is this for a google analytics tracking? How did you implement it for the mailto links?

    How do you want to track it? Are you using google analytics?

    Have you created custom event goals?

    // https://support.google.com/analytics/answer/1032415

    You may have to modify the includes > helper-social-media.php file directly or use Javascript.

    Best regards,
    Ismael

    in reply to: Extra Elements #1106558

    Hi,

    Thanks for the update.

    We had to modify the value of the twitter icon in the functions.php file > line 234 directly and replace it with the vero icon because the filter doesn’t work.

    'twitter' => array( 'font' =>'vero', 'icon' => 'ue800'),
    

    Best regards,
    Ismael

    in reply to: Form does not have the right layout #1106556

    Hi,

    Thank you for the update.

    Where did you add the contact form shortcode? We can’t find it anywhere in the site.

    Did you switch to CF7?

    Best regards,
    Ismael

    in reply to: Slight delay in slider image loading #1106553

    Hi,

    Thank you for the update.

    I can’t really reproduce the issue on my end, but I can see why the page would take too long to load. There are just too many images in the your front page. You should consider minimizing the number of images because they account to almost 80% of the resources needed to load the page. That is more than 7MB out of 10MB or 194 out of 328 requests.

    Best regards,
    Ismael

    in reply to: Layerslider not working since update to 4.5.6 #1106545

    Hi,

    Thank you for the update.

    Do you have a test page where we can see the issue? Please create one so that we can inspect the layer slider.

    Best regards,
    Ismael

    in reply to: How to add a custom field to a portfolio with ACF? " #1106543

    Hi,

    Sorry about that. I’ve forwarded the thread to Yigit.

    Which element are you using? Is it a Blog Posts element set to grid layout or a Portfolio Grid? The modification above is for the Blog Posts element.

    Best regards,
    Ismael

    in reply to: Testimonials gone and Video Widget #1106541

    Hi,

    That is the default video shortcode from WordPress. It’s not from the theme.

    // https://en.support.wordpress.com/widgets/video-widget/

    You’ll know that a widget is generated by the theme when the widget name is prepended with the theme slug.

    Example: Enfold Instagram, Enfold Advertising Area, Enfold Combo Widget etc.

    Best regards,
    Ismael

    in reply to: Nested nav in custom post type sidebar #1106538

    Hi,

    Do you want to display the nested navigation for the items in a custom post type? That function is created for pages because they are hierarchical by default, which allows parent or child pages to be set. Please see notes about the “hierarchical” parameter and why it is only enabled for pages.

    // https://codex.wordpress.org/Function_Reference/register_post_type#Parameters

    Unfortunately, that navigation is not going to work with custom post types using the current “avia_sidebar_menu” implementation.

    Best regards,
    Ismael

    in reply to: Default Sidebar for Category or User #1106536

    Hi,

    Thank you for the update.

    You can use this css code to change the style of the full width posts.

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper {
        text-align: left;
        max-width: 800px;
        margin: 0;
    }

    Best regards,
    Ismael

    in reply to: Accordion same link but different behaviour #1106529

    Hi,

    I think it will still work, but the smooth scrolling animation or effect for the anchors will be removed.

    Best regards,
    Ismael

    in reply to: Troubles with BLOG #1106528

    Hi,

    Sorry about that. I forgot to re-enable the filter after editing it. You may need to disable the sidebar for now because the addition of the full width sub menu breaks the default layout of the page.

    Best regards,
    Ismael

    Hi,

    Alright. We’ll close this thread now. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: auction plugin compatibility with Enfold #1106522

    Hi,

    Thanks for the update.

    Where can we see the issue again? The select or menu element is no longer visible above the product image as shown in the previous screenshot. (see private field)

    Best regards,
    Ismael

    in reply to: Horizontal gallery – control elements #1105729

    Hey Chili2908,

    Thank you for using Enfold.

    You can use this css code to move the navigation arrows outside the gallery container.

    #top .avia-slideshow-arrows a.next-slide {
        right: -100px;
    }
    
    #top .avia-slideshow-arrows a.prev-slide {
        left: -100px;
    }
    
    .av-horizontal-gallery {
        overflow: visible;
    }
    
    .av-horizontal-gallery .av-horizontal-gallery-inner {
        overflow: hidden;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    Looks like it is selecting a smaller thumbnail because of the srcset attribute. You can add this code in the functions.php file to disable that attribute.

    add_filter( 'wp_calculate_image_srcset', 'avf_disable_srcset' );
    function avf_disable_srcset() {
        return false;
    }

    Best regards,
    Ismael

    in reply to: symbol box – own Icons #1105613

    Hey seerifee,

    Thank you for using Enfold.

    You can upload your own icon font using the Iconfont Manager. It’s located in the Enfold > Import/Export panel.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    in reply to: Event Tracking Social Media Links #1105612

    Hey ronaldalexander,

    Thank you for using Enfold.

    Is this for a google analytics tracking? How did you implement it for the mailto links? You may need to add an onclick attribute to the social icon using javascript/jQuery.

    Best regards,
    Ismael

    in reply to: Thumbnail on search result not shown #1105610

    Hi,

    Thank you for the update.

    We can’t edit the loop-search.php file in the Appearance > Editor panel. Please post the FTP or file server account in the private field.

    Best regards,
    Ismael

    in reply to: Mobile Display CSS code #1105609

    Hi,

    You can use this css code to adjust the style of the plugin table on mobile view.

    @media only screen and (max-width: 767px) {
    ._sumo_pp_payment_plans td, ._sumo_pp_payment_plans tr, ._sumo_pp_payment_plan th {
        width: 100%;
        display: block;
    }
    }

    Please note that we don’t provide support for third party plugins as stated on our support policy. You may need to contact the plugin author for additional help.

    We would like to apologize for the late response.

    Best regards,
    Ismael

    in reply to: Form does not have the right layout #1105608

    Hey ksnoo04,

    Thank you for using Enfold.

    You need to add the “cf-label-icons” as the value of the custom_class parameter.

    
    [av_contact email=' (Email address hidden if logged out) ' title='How can we help you?' on_send='' sent='Your message has been sent! We will get back to you shortly.' link='manually,http://' subject='Support Request' autorespond='' captcha='' form_align='' color='' custom_class='' admin_preview_bg='' av_uid='av-hroj83']
    

    .. replace it with:

    
    [av_contact email=' (Email address hidden if logged out) ' title='How can we help you?' on_send='' sent='Your message has been sent! We will get back to you shortly.' link='manually,http://' subject='Support Request' autorespond='' captcha='' form_align='' color='' custom_class='cf-label-icons' admin_preview_bg='' av_uid='av-hroj83']
    

    Best regards,
    Ismael

    in reply to: Performance / CSS & JS Merging/Compression #1105607

    Hi,

    The compression is actually not working in your installation, but we’re not sure why. Have you tried using a third party compression plugin like Autoptimize?

    // https://wordpress.org/plugins/autoptimize/

    Also what does Kriesi mean by “compressed” anyway?

    The compression will combine all the scripts or stylesheets and minify them, removing the spaces, lines and comments.

    Best regards,
    Ismael

    in reply to: Nested nav in custom post type sidebar #1105604

    Hi,

    Thank you for the update. And sorry for the delay.

    Those pages require a password. What is it? Please provide it in the private field.

    Best regards,
    Ismael

    in reply to: Caption Box around text #1105603

    Hi,

    Thanks for the update.

    Did you remove the text or “example-data/” page? It’s no longer accessible. Please re-create the test page so that we can check the elements.

    Best regards,
    Ismael

    in reply to: Display problems on sharing links on pages #1105601

    Hi,

    I have not tried. How do I set the value?

    Edit the iframe tag and remove the height attribute. In the post editor, you should see something like this.

    <iframe src="URL" height="522" width="900"></iframe>
    

    Just remove the height attribute.

    <iframe src="URL" width="900"></iframe>
    

    Unfortunately, I don’t understand your next request/inquiry. Please explain it further and open a new thread if possible. Thanks!

    Best regards,
    Ismael

    in reply to: Increase Top Bar Height and Font Size #1105600

    Hi,

    Thank you for the update.

    1-2) The css code works properly on our end. Did you toggle the Performance > File Compression settings after adding the css code? And don’t forget to remove the browser cache.

    3. Did you try to add the widget? Make sure that the secondary menu is activated. If you don’t have a secondary menu, include this filter in the functions.php file.

    add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);
    

    4-5.) Use this html code as suggested in the article.

    <a href="tel:1-562-867-5309">1-562-867-5309</a>
    

    Best regards,
    Ismael

Viewing 30 posts - 23,071 through 23,100 (of 67,510 total)