Forum Replies Created

Viewing 30 posts - 26,821 through 26,850 (of 67,534 total)
  • Author
    Posts
  • in reply to: input element, type of "checkbox", has no text in label #1017930

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Breadcrumbs according to session #1017928

    Hi,

    Great! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    Hi,

    Yes, I was referring to the gtag manager because you’re using the gtag manager snippet instead of the google analytics library. If you want to implement the google analytics library, please refer to the following docs.

    // https://developers.google.com/analytics/devguides/collection/analyticsjs/
    // https://developers.google.com/analytics/devguides/collection/analyticsjs/events

    You should use the “ga” function instead of “gtag” tracker.

    Best regards,
    Ismael

    in reply to: Problem with Accordion feature #1017722

    Hey hex80,

    Thank you for using Enfold.

    The inline styling of the tab content or closed items are missing. The css “display” property should be set to “none” for closed items. Did you modify any of the theme files? Please deactivate the plugins temporarily and then check the page again.

    Best regards,
    Ismael

    in reply to: Timeline feature doesn't work on iPad #1017714

    Hi,

    Try to set the opacity and scale of the timeline icons directly.

    .responsive #top .avia-timeline-vertical .milestone_icon {
        transform: scale(1);
        opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Blaues und weißes Menü funktioniert nicht #1017710

    Hey Andreas,

    Thank you for using Enfold.

    You can edit the top bar or header meta in the Advanced Styling panel. Edit the “Small bar above Main Menu” element. You can also modify the main menu element there.

    Best regards,
    Ismael

    Hey FZKFranziska,

    Thank you for using Enfold.

    Make sure that the images in the grid have exactly the same sizes. Some of the images are slightly different from the others — a few of them are 2120x1415px while the others are 2119x1415px.

    Best regards,
    Ismael

    Hi,

    but a few things like the contact form are not displayed if i use this element.

    This should help you fix the code block issue.

    // https://kriesi.at/support/topic/code-block-not-working-with-page-content/#post-1017146

    Best regards,
    Ismael

    in reply to: input element, type of "checkbox", has no text in label #1017697

    Hey dellato,

    Thank you for using Enfold.

    Edit the includes > helper-privacy.php file and then look for this code around line 87:

    $output .= '<label>';
    

    Replace it with:

    $output .= '<label for="'.$cookie.'">';
    

    Best regards,
    Ismael

    in reply to: Display Posts By The Author, Instead of Tags #1017673

    Hi,

    You need to modify the includes > related-posts.php file for that. Use the same get_posts query as the filter above on line 75.

    
            $my_query = get_posts(
                                array(
                                    'tag__in' => $tag_ids,
                                    'post_type' => get_post_type($this_id),
                                    'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
                                    'orderby'=>'rand',
                                    'post__not_in' => array($this_id))
                                );

    You will also need to replace $tags (line 58) to get the author info or id instead.

    
    $tags = get_post_field( 'post_author', $this_id );
    

    And change the subsequent logic base on the author info.

    Best regards,
    Ismael

    in reply to: Opening iframe modal with button click #1017672

    Hi,

    I modified the lightbox script in the functions.php file. The popup or lightbox is working properly now. Unfortunately, I can’t assure you that the form inside the lightbox is going to work as expected.

    function ava_iframe_lightbox_inline() { ?>
        <script type="text/javascript">
            jQuery(document).ready(function() {
                jQuery('.button_row_lightbox a').magnificPopup({
                    items: [
                        {
                            src: 'https://app.acuityscheduling.com/schedule.php?owner=16684187',
                            type: 'iframe' // this overrides default type
                        },
                    ],
                    midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href.
                });
            });
        </script>
    <?php }
    add_action('wp_head', 'ava_iframe_lightbox_inline');

    Best regards,
    Ismael

    in reply to: Internal link anchors top offset is wrong #1017663

    Hi,

    Is it working properly when you disable the columns’ animation?

    Best regards,
    Ismael

    in reply to: Breadcrumbs according to session #1017661

    Hi,

    Add the “tax_query” parameter to the query.

    function avia_add_all_breadcrumb_parent()
    {
        $args = array('posts_per_page' => -1, 'post_status' => 'any',  'post_type' => array('portfolio'), 
            'tax_query' => array(
                array(
                    'taxonomy' => 'portfolio_entries',
                    'field' => 'term_taxonomy_id',
                    'terms' => array(26, 25, 24)
                )
    	)); 
        $articles = new WP_Query( $args );
    
    	foreach($articles->posts as $article)
    	{
    		update_post_meta($article->ID, 'breadcrumb_parent', 1980);
        }
    
        wp_reset_postdata();
    }
    add_action('wp_head','avia_add_all_breadcrumb_parent');

    Replace the portfolio category ids in the “terms” parameter inside the “tax_query” with the id of the categories in your installation.

    Best regards,
    Ismael

    in reply to: Display about button by Mobile? #1017655

    Hi,

    Thanks for the update. The icon is placed inside the sidebar. This sidebar is hidden on mobile devices by default. Use this css code to redisplay the sidebar on smaller screens.

    @media only screen and (max-width: 767px) {
    .responsive #top #main .sidebar {
        display: block;
    }
    
    .responsive #top #main .sidebar .inner_sidebar .widget {
        display: none;
    }
    
    .responsive #top #main .sidebar .inner_sidebar .widget_custom_html {
        display: block;
    }
    }

    Best regards,
    Ismael

    in reply to: add a "order by" attribute on portfolio grid #1017654

    Hi,

    The “order” and “orderby” settings are already available in the Portfolio Grid panel. Just scroll at the very bottom of the element’s panel. Do you need to sort your portfolio items based on the custom field? Try to use the “avia_post_grid_query” filter to adjust the “orderby” parameter. It should be set to “meta_value”.

    // https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Best regards,
    Ismael

    Hi,

    Thanks for the update. By default, you cannot open a tab sub section with a custom link. You need to create a custom script for that.

    // https://kriesi.at/support/topic/hotspots-with-anchor-links-to-tabs-section/#post-896815

    Replace this line:

    scrollToTab( '#top .iconbox_top a', 'click' );
    

    with this:

    scrollToTab( '.avia-image-overlay-wrap a', 'click' );
    

    Best regards,
    Ismael

    in reply to: og image doesn't show on front page #1017646

    Hi!

    Where do you see the error? Did you put it in the functions.php file?

    Best regards,
    Ismael

    in reply to: Videos don't play on iPad #1017407

    Hi!

    I’ve forwarded the issue to the team.
    Yes, I do have an old iPad but you can’t inspect the website there. You’ll need a mac computer or laptop in order to do that.

    // https://www.hongkiat.com/blog/ios-debugging/

    Best regards,
    Ismael

    in reply to: Portfolio Ajax Issue #1017403

    Hi,

    Thanks for the update. Did you add those text or content in the “Additional Portfolio Settings” > “Add Preview Text” editor? Please note that the AJAX preview can only display the content from the “Additional Portfolio Settings” editor. It will not display the content of the default editor.

    Best regards,
    Ismael

    in reply to: Zeilenumbruch #1017399

    Hi,

    Thanks for the update.

    Please post the login url in the private field.

    What is the login url? I tried “wp-admin” and “wp-login” but both of these urls are not working.

    Best regards,
    Ismael

    in reply to: Child Theme issue after update #1017398

    Hi,

    I actually disabled a few lines of codes in the functions.php to remove some errors but I think the issue lies on the unwanted template files in the child theme. Please do the restore and then check if the template files are still in the child theme folder.

    Best regards,
    Ismael

    in reply to: Align center – masnory gallary #1017397

    Hi,

    Thanks for the update.

    Replace the previous modification with the following css code to center align the logo on mobile view.

    @media only screen and (max-width: 767px) {
    .responsive #top .logo > img {
        position: relative;
        left: 50%;
        transform: translate(-50%, 0);
    }
    
    .responsive #top .logo {
        width: 80%;
    }
    }

    I’m not really sure what’s going on with the socket. Did you check it on an actual mobile device?

    Best regards,
    Ismael

    in reply to: Category and Subcategory in Portfolio masonary #1017394

    Hi Roger,

    I’m sorry if we can’t help you this time. I’m sure you’ll find a good developer on Codeable.
    Please feel free to open a new thread if you need anything else.

    Best regards,
    Ismael

    in reply to: doesn't work video element #1017393

    Hi,

    Thanks for the update. I’m not really sure why the video element is not working, so I provided a workaround in the same page. (see private field)

    In a codeblock, you can add this markup.

    
    <div class="avia-video avia-video-16-9 av-lazyload-immediate  av-lazyload-video-embed" itemprop="video" itemtype="https://schema.org/VideoObject">
    <div class="avia-iframe-wrap"><iframe width="1500" height="844"
    src="https://www.youtube.com/embed/G0k3kHtyoqc">
    </iframe></div>
    </div>
    

    Just change the value of the src attribute and make sure that the video url format is “embed” instead of the default “v” query parameter.

    https://www.youtube.com/embed/G0k3kHtyoqc
    

    Best regards,
    Ismael

    Hi,

    Glad to hear that you’re enjoying the theme!

    You can actually insert the same elements on a default editor by using the shortcode wand or the shortcode generator, so you don’t really need to use the advance layout builder for your posts. If you really need to, you can always add an excerpt manually in order for these posts to display something on the blog overview page.

    The forum doesn’t have a screenshot functionality by default but you can always use third party tools like imgur or dropbox.

    You can review our theme and show your support here: https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: og image doesn't show on front page #1017387

    Hi,

    You can try this code on the functions.php file to set the og:image manually.

    add_action('wp_head', 'ava_add_og_image');
    function ava_add_og_image() {
        if(has_post_thumbnail()) {
            $featured_img_url = get_the_post_thumbnail_url(get_the_ID(),'full'); 
            echo '<meta property="og:image" content="'.esc_url($featured_img_url).'" />';
        }
    }

    I’m not sure why the image meta is not there on the home page.

    Best regards,
    Ismael

    Hi,

    Check for the formID value inside the $class parameter.

    
    if($class->formID == 1) {
        // this is the first contact form
    } 
    
    if($class->formID == 2) {
        // this is the second contact form
    } 
    

    If that is not working, try this:

    
    if($class->form_params['avia_formID'] == 1) {
        // this is the first contact form
    } 
    
    if($class->form_params['avia_formID'] == 2) {
        // this is the second contact form
    } 
    

    Best regards,
    Ismael

    Hi,

    I can’t reproduce the issue on the staging site. Please try to remove the browser cache or do a hard refresh prior to checking the page. (see private field)

    Best regards,
    Ismael

    in reply to: Playerlist not displaying since last Enfold Update #1017372

    Hi,

    Did you test it on a default theme? The same shortcode is not working on a default editor. (see private field)
    Please contact the plugin author for additional help.

    Best regards,
    Ismael

    in reply to: Image overlay bg color #1017369

    Hi,

    The images look a little faded because the opacity of the button description is set to 0.7 by default. You should set it to 1.

    #top .avia-button-fullwidth .av-button-description {
        opacity: 1;
    }

    Best regards,
    Ismael

Viewing 30 posts - 26,821 through 26,850 (of 67,534 total)