Forum Replies Created

Viewing 30 posts - 24,781 through 24,810 (of 66,166 total)
  • Author
    Posts
  • in reply to: Enlarge the field for image with hotspot #1031509

    Hi,

    You can make the text container bigger but it may go off the screen. The text are just too long. They don’t fit the screen even after adding this css code.

    body .av-tt-xlarge-width {
        width: 450px;
    }

    I think it’s better if the hotspot redirects user to another page or section. You can put a summary, add a text like “learn more” or “read more” and then add a link to another page or another section of the site.

    Best regards,
    Ismael

    Hi,

    The breaking point is still set to the first option when I checked. Did you test it? Is it OK if we set the cell’s breaking point when the screen width is equal or less than 1366px? That is the maximum screen width of an iPad Pro.

    @media only screen and (max-width: 1366px) {
    .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
    }
    }

    We can also disable the background’s fixed or parallax effect because that is not fully supported on iOS devices.

    @media only screen and (max-width: 1366px) {
    #top .flex_cell {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    }

    Best regards,
    Ismael

    in reply to: GRID ROW Target individual Column. #1031502

    Hi,

    That is possible with custom css but it’s not available as an option out of the box. You can still use own your css modification above and then try to adjust the color of the background elements like main body, container and html so that it’s the same color as the grid row background.

    Best regards,
    Ismael

    in reply to: Instagram Widget – Did not return 200/specify username #1031501

    Hey wescrete,

    Thank you for using Enfold.

    We are not really sure why this is happening but you can try the following steps to make it work.

    1.) Add this code in the functions.php file:

    add_filter('avf_instagram_activate_cron', 'avf_instagram_disable_cron', 10); 
    function avf_instagram_disable_cron() {
    	return false;
    }
    
    add_action('wp_head', function() {
    	delete_option('avia_instagram_widgets_cache');
    });

    2.) Delete all instagram widget. Refresh the page.

    3.) Go to the wp-content > uploads directory and delete the “avia_instagram_cache” folder. If you can’t see the folder, proceed to step 4.

    4.) After the folder deletion, remove the code from the functions.php file.

    5.) Refresh the dashboard page a few times.

    6.) Re-add the instagram widget.

    You have to follow the instruction step by step. Let us know if it helps. If it’s still not working after doing all of the above, you can use the Instagram Feed plugin temporarily.

    // https://wordpress.org/plugins/instagram-feed/

    Best regards,
    Ismael

    in reply to: Problem with the default Blog category #1031500

    Hi,

    I’m sorry for the late response. This filter should help exclude the pages post type from the archive pages.

    function ava_exclude_pages( $query ) {
        if ( is_admin() || ! $query->is_main_query() ) return;
    
        if ( $query->is_archive() ) {
            if ( array_key_exists( 'category', $query->tax_query->queried_terms ) ) {
                $query->set('post_type','post'); 
            }
        }
    }
    add_action( 'pre_get_posts', 'ava_exclude_pages' );

    Best regards,
    Ismael

    in reply to: problem with Google Maps #1031491

    Hi,

    I would like to apologize for the delay. I’m getting this error in the console.

    CMMRM_Tooltip is not defined
        at index.php?hm_custom_js_draft=1&ver=1541728952:38 index.php?hm_custom_js_draft=1&ver=1541728952:38 Uncaught ReferenceError: 
    

    What is CMMRM? Please deactivate it temporarily then purge the cache. You may need to upgrade to version 4.5 manually or via FTP, because the auto update is not going to function properly on version 4.4.1.

    // https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#update-via-ftp
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    P.S: Nice site. :)

    Best regards,
    Ismael

    in reply to: Vimeo video doesn;t work #1031490

    Hi,

    Thanks for the update. Do you have a test page? I can’t see the issue on the “ronnie” page.

    Best regards,
    Ismael

    in reply to: Hide all portfolio items from internal search results #1031489

    Hi,

    Thank you for the update.

    The following snippet should help. Just add it in the functions.php file:

    // exclude images from search results
    add_action( 'init', 'exclude_portfolio_from_search_results' );
    function exclude_portfolio_from_search_results() {
    	global $wp_post_types;
    	$wp_post_types['portfolio']->exclude_from_search = true;
    }

    Best regards,
    Ismael

    in reply to: Featured Image #1031488

    Hi,

    You are using a third party plugin (Thrive Architect) to create the content of the post. Is that what you’ve have used ever since the site was created?

    Best regards,
    Ismael

    Hi,

    Thanks for the info.

    This css code should resize the tab layout container on IE.

    .avia-msie .av-layout-tab  {
        max-width: 100vw !important;
    }

    Best regards,
    Ismael

    in reply to: Instagram Widget Not working in Footer #1031483

    Hi,

    Thanks for the update. The login credentials are not working though. Please check the it carefully. For the meantime, you can install third party plugins like Instagram Feed in place of the the default widget.

    // https://wordpress.org/plugins/instagram-feed/

    Best regards,
    Ismael

    in reply to: LayerSlider – How can First Slide appear only once? #1031481

    Hi,

    You can actually stop the first slide from re-appearing using the events callback but it will also hide the drone because it’s inside the slide.

    Best regards,
    Ismael

    in reply to: Dotted divider line and burger menu #1031480

    Hi,

    You can now set an Alternate Menu for Mobile. You should see that option in the Enfold > Main Menu > General panel if the site is running on Enfold v4.5.

    Best regards,
    Ismael

    in reply to: Enfold Form Tracking #1031115

    Hi,

    Which type of google analytics are you using?

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

    This line in your code is actually invalid or is not use.

    $gaq = “_gaq.push([‘_trackPageview’, ‘UA-111111111-1’]);\””;
    

    It just sets the $gaq variable but it’s not use anywhere. Please open a new thread with the site url and the login credentials.

    Best regards,
    Ismael

    Hi,

    I’m sorry but I’m a bit confuse. Which color sections? Can you give us a link to the page with the color section?
    You can also add Section IDs to the color section and then copy the css code above to change the width of their container.

    #your-custom-section-id .container {
        max-width: 1030px;
    }

    Replace the “your-custom-section-id” selector with the Section ID of your color section.

    Best regards,
    Ismael

    in reply to: Video Icon in LayerSlider #1031108

    Hi,

    You can copy that shortcode on the layer field. Just create a layer, set it to html or text and then put the shortcode there. It may not render properly on the layer slider editor but it should work fine on the front end. If the shortcode is not working, create the same layer and then use this html.

    <span class="av_font_icon avia_animate_when_visible  av-icon-style-border  avia-icon-pos-center  avia_start_animation avia_start_delayed_animation" style="color:#f68b32; border-color:#f68b32;"><a href="https://www.youtube.com/watch?v=kceeao9YpUc" class="av-icon-char mfp-iframe lightbox-added" style="font-size:30px;line-height:30px;width:30px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a><span class="av_icon_caption av-special-font">Setting up the endiio retrofit box</span></span>
    

    Just change the video url in the “href” attribute.

    Best regards,
    Ismael

    in reply to: Sidebar below content desktop version #1031105

    Hi,

    Thanks for the update.

    Use this css code to redisplay the featured image and the categories.

    @media only screen and (max-width: 767px) {
    .responsive .template-blog .blog-meta, .responsive .post_author_timeline {
        display: block;
    }
    
    .category .post-meta-infos, .tag .post-meta-infos {
        display: block !important;
    }
    }

    Best regards,
    Ismael

    in reply to: Search function with plugin download monitor #1031097

    Hey Andy,

    Thank you for using Enfold.

    You can use the “av_custom_url” to change the search items’ url.

    add_filter( "av_custom_url", function( $link, $post ) {
       // do something here
       return $link;
    }, 10, 2 );
    

    Best regards,
    Ismael

    in reply to: CPT Page Title Help #1031093

    Hi,

    Thank you for using Enfold.

    A quick search led me to this thread:

    // https://wordpress.stackexchange.com/questions/279445/cannot-get-grandparent-object

    So you need to get the current post id, check if a parent page is set, get the id of that parent page, check if the current post parent’s post_parent value is set and then get the grand parent page. Just copy the conditional logic from that thread and you’re good to go.

    Best regards,
    Ismael

    in reply to: Autoplay: start videos when they appear in viewport #1031092

    Hi,

    The theme is using the waypoint script to trigger animations when the elements come into view. Maybe, you can utilize that script to auto play the video.

    // http://imakewebthings.com/waypoints/

    Example: https://kriesi.at/support/topic/onepager-change-h2-title-color-on-focus-when-scrolling/#post-995873

    Best regards,
    Ismael

    in reply to: Contact Form Not Using Custom Email Subject #1031091

    Hi,

    The “subject” form parameter before the email is sent is set properly when I checked it. Are you sure that you checked the email sent by the contact form and not the autoresponse email? The “Thank you for your Message!” text is the subject for the autoresponse email. I created a test page. (see private field)

    Best regards,
    Ismael

    in reply to: Related posts not showing on single blog… not using AWB. #1031085

    Hi,

    Do you want to get rid of that category in the blog page? Please provide the login details in the private field so that we can check the settings. Are you using the advance layout builder for your blog? You may need to use the “avia_post_slide_query” filter to adjust the blog query.

    // https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters

    Best regards,
    Ismael

    in reply to: Contact Form not working – Unable to receive email #1031078

    Hey Yaser,

    Thank you for using Enfold.

    Have you check the spam folder? You may need to setup a SMTP or change the default from address so that the mail server will properly accept the emails, or will not mark the emails as spam. These steps should help you fix the issue.

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

    Best regards,
    Ismael

    in reply to: image link not working #1031077

    Hi,

    Yes, it’s probably cause by the adblock. Is it working when you disable the browser’s adblock option?

    // https://www.howtogeek.com/342986/how-to-disable-chromes-new-ad-blocker-on-certain-sites-or-all-sites/

    I don’t think we can get around that if that’s the case.

    Best regards,
    Ismael

    in reply to: Split Promo box into 3 collumns #1031075

    Hey ezvisa,

    Thank you for using Enfold.

    I’m not really sure if I understand what you need. Can you provide a screenshot? Please use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: filtering options #1031074

    Hey Lara,

    Thank you for using Enfold.

    That is possible but it will probably require another extension or plugin. Unfortunately, adding that kind of feature is beyond the scope of support. Please search for a plugin or hire a freelance developer. You can contact our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: PopUp #1031073

    Hi,

    Looks like you managed to remove the arrows. Anything else we can help you with?

    Best regards,
    Ismael

    in reply to: How to change blog post like this theme #1031072

    Hi,

    Which images? I checked the image of one of the posts and it’s the same size as you mentioned. (see private field)

    Best regards,
    Ismael

    in reply to: Change background color for table price heading row #1031071

    Hi,

    I think the login token has expired. Sorry about that. Please generate another token and make its expiry longer.
    Try this css code:

    .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra {
        background-color: red;
        color: blue;
        border-color: orange;
    }

    Best regards,
    Ismael

    Hi,

    1.) You can use this css code to change the background color of the post navigation.

    #top .avia-post-nav {
        background: #b3050f;
    }
    
    #top .avia-post-nav:hover {
        background: #b3050f;
    }

    Change the color values to rgba if you want to retain the transparency effect.

    2.) You can exclude certain pages or posts from being shown on the sitemap. Just follow this guide:

    // https://kb.yoast.com/kb/sitemap-shows-excluded-posts-pages/

    Best regards,
    Ismael

Viewing 30 posts - 24,781 through 24,810 (of 66,166 total)