Forum Replies Created

Viewing 30 posts - 13,111 through 13,140 (of 66,052 total)
  • Author
    Posts
  • in reply to: problem with change the font weight in layer slider #1305183

    Hi,

    The site is still asking for this authentication when we tried to use the link above.

    Screenshot: https://imgur.com/2lGZfsQ

    It may be the htpassword.

    // https://help.dreamhost.com/hc/en-us/articles/216363187-Password-protecting-your-site-with-an-htaccess-file

    Best regards,
    Ismael

    in reply to: iOS layerslider or menu + images not working #1305179

    Hi,

    Thank you for following up.

    The burger menu is above the logo, covering it. You can move it to the right with this css code.

    @media only screen and (max-width: 767px) {
        #header {
            height: 88px!important;
            min-height: 88px !important;
            width: 100% !important;
        }
    }
    

    If the css media query above already exists, you can just omit it and move the above css rule inside the existing media query. And to adjust the padding and adjust the color of the burger menu items, add this css code.

    
    .html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
        color: gray;
    }
    
    ul#av-burger-menu-ul {
        padding: 20px 0 !important;
    }
    
    

    The color of the “x” button also needs a bit of adjusting.

    span.av-hamburger.av-hamburger--spin.av-js-hamburger.av-inserted-main-menu.is-active span.av-hamburger-inner, span.av-hamburger.av-hamburger--spin.av-js-hamburger.av-inserted-main-menu.is-active span.av-hamburger-inner:before, span.av-hamburger.av-hamburger--spin.av-js-hamburger.av-inserted-main-menu.is-active span.av-hamburger-inner:after {
        background-color: gray !important;
    }
    

    You should move these css rules inside the css media query above.

    Best regards,
    Ismael

    in reply to: Fix Coupon Code Not Accepted #1305177

    Hi,

    Thank you for the clarification.

    We tried to check the issue again, applied the coupon code but we cannot use Stripe’s test card anymore because it is already in live mode. Do you have a staging site where we can still use the test cards?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Yes, my bad. I just realized how pointless the solution above is. Please edit the enfold/includes/helper-privacy.php file and look for this code around line 131.

    add_action( 'wp_head', array( $this, 'handler_wp_head_script' ), 1 );
    

    Comment it out or remove it completely, then add this code below.

    add_action( 'wp_footer', array( $this, 'handler_wp_head_script' ), 1 );
    

    Best regards,
    Ismael

    in reply to: Media Library Assistant change image size #1305172

    Hi,

    Glad to know that it is working.

    Unfortunately my image quality is very poor,

    Since you are using a plugin to create the gallery, you may need to toggle an option or adjust a parameter in order to display a different thumbnail size. Please refer to the plugin documentation for more info.

    To apply the changes to a specific gallery, try to add a custom css class name or ID to the gallery element and adjust the css selector .gallery with it.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: custom post archive #1305171

    Hi,

    You should be able to use the get_the_taxonomies function to get all taxonomies associated with a post.

    // https://developer.wordpress.org/reference/functions/get_the_taxonomies/

    Try to replace the code with this one instead.

    $taxonomies  = get_object_taxonomies( get_post_type( $the_id ) );
                    $cats = '';
                    $excluded_taxonomies = array_merge( get_taxonomies( array( 'public' => false ) ), array('post_tag','post_format') );
    				$excluded_taxonomies = apply_filters( 'avf_exclude_taxonomies', $excluded_taxonomies, get_post_type( $the_id ), $the_id );
    
                    if( ! empty( $taxonomies ) )
                    {
                        foreach( $taxonomies as $taxonomy )
                        {
                            if( ! in_array( $taxonomy, $excluded_taxonomies ) )
                            {
                                $terms .= get_the_term_list( $the_id, $taxonomy, '', ', ', '' ) . ' ';
                            }
                        }
    
                        $output .= $terms;
                    }
    

    Best regards,
    Ismael

    in reply to: Importing blogs using WP looses double spaces #1304845

    Hi,

    Thank you for following up. Glad to know that the script worked. We did not get a chance to try it.

    That is actually the complete command, but you have to make sure that the php script file is in the same folder as the xml file that you are trying to fix. And of course you have to replace original-export-file.xml with the actual name of your xml file and the new-export-file.xml with the desired name of the file after the fix.

    Do you see any errors when you run the command? By default PHP is installed on MacOS, so that should not be an issue, and you should be able to use the php command anywhere.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Would you mind providing the link to the actual page where you need to display a different footer and the link of the other footer page? And post the login details in the private field so that we could test it properly. Please make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: Number in Price table can not be seen on Apple device #1304841

    Hey shtzhang,

    Thank you for the inquiry.

    Did you add this css code?

    .main_color a, .main_color .widget_first, .main_color strong, .main_color b, .main_color b a, .main_color strong a, .main_color #js_sort_items a:hover, .main_color #js_sort_items a.active_sort, .main_color .av-sort-by-term a.active_sort, .main_color .special_amp, .main_color .taglist a.activeFilter, .main_color #commentform .required, #top .main_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .main_color .blog-categories a, .html_elegant-blog #top .main_color .blog-categories a:hover {
        color: #6786a1;
    }
    

    You may need to override it with the following css rule to change the color of the price on mobile view.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .main_color .avia-pricing-row strong {
         color: #ffffff;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Feature image title #1304838

    Hi,

    Thank you for the info.

    Are you using a plugin to create the page above, or did you create a custom template? The theme is not using the picture tag or element anywhere in its templates. However, in the page above the picture tag is used to display the featured image.

    <picture class="wp-image-4017 avia-img-lazy-loading-not-4017 img-responsive responsive--full wp-post-image" title="Feature image">
    // sources here
    </picture>
    

    Best regards,
    Ismael

    in reply to: WPforms email notification issue #1304837

    Hey mediaapps,

    Thank you for the inquiry.

    Are you saying that the messages are not being sent, and you do not receive them? Installing an SMTP plugin should be fine and it should not affect the default contact form.

    Best regards,
    Ismael

    in reply to: Social icon in mobile menu #1304809

    Hi,


    @hacart
    : Please create a new thread and post the login detail in the private field so that we could check the issue properly. We will close this thread for now.

    Best regards,
    Ismael

    in reply to: problem with change the font weight in layer slider #1304808

    Hi,

    We tried to login to the site but it is asking for another authentication, maybe the htaccess password. Please post the other authentication info in the private field so that we could check the layer slider.

    Best regards,
    Ismael

    in reply to: 100% Column breakpoint #1304807

    Hey netzhautflimmern,

    Thank you for the inquiry.

    You can use this css code to adjust the breakpoint of the grid row cells.

     /* Grid Row Cells Breakpoint */
    @media only screen and (max-width: 1500px) {
    
    	.responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
    		margin: 0;
    		margin-bottom: 20px;
    		width: 100%;
    		display: block;
    	  }
    
    	.responsive #top #wrap_all .av-break-at-tablet-flextable, .responsive .av-layout-grid-container.av-break-at-tablet {
    		display: block;	
    	  }
    
    	.responsive #top #wrap_all .av-flex-cells .no_margin{
    		height:auto !important;
    		overflow: hidden;
    	  }
    
    }

    Best regards,
    Ismael

    in reply to: Smooth Blog Slider #1304805

    Hey solid-image,

    Thank you for the inquiry.

    You can try the Layer Slider. You can also set the slider’s Advanced > Slider Animation > Slider Transition to the third option so that it fades instead of slides.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    How did you set the opacity of the columns? Please post the css code here so that we know which elements have been modified.

    Best regards,
    Ismael

    in reply to: ADSENSE DON'T WORK #1304801

    Hey kikosanchezestudio,

    Thank you for the inquiry.

    There are no errors in the browser console when we checked the site, so we are not really sure why the ads are not working. It might be due to a missing option or permission. You might need to add the site as http referrer to allow the code to be embedded to your site, but we cannot be sure.

    Is is working when you embed the ad code in a default theme?

    Best regards,
    Ismael

    in reply to: Adding a Scrollbar to a widgetized column #1304800

    Hi,

    What you are trying do is possible but it would mean limiting the height of the inner container of the first cell. Unfortunately, you cannot manually set the height of the first cell because the Grid Layout element is a table element and with table elements, the height of cells are automatically inherited from the parent container or the adjacent cells.

    To understand it better, you can try this css code.

    .flex_cell.no_margin.av_one_fifth.avia-builder-el-4.el_before_av_cell_three_fifth.avia-builder-el-first.scrollbar .flex_cell_inner {
        height: 500px;
        overflow: scroll;
    }

    This should limit the height of the flex_cell_inner container and add a scrollbar to it, but there would be a huge white space or gap below it. You might want to replace the css selector above with a custom css class or ID. More info about custom css class is in the following documentation.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Doing this with Javascript is also possible but, unfortunately, that kind of modification is beyond the scope of support.

    Best regards,
    Ismael

    in reply to: Mobile device display order #1304798

    Hi,

    You have to set flex via css in the Quick CSS field or in the style.css file. If you can provide the page URL, we could inspect it and try to provide the css code to adjust the order of the columns on mobile view.

    Best regards,
    Ismael

    in reply to: Can't embed Mailchimp Archive on webpage #1304792

    Hi,

    Thank you for the update.

    We tried to dynamically load the script and append it to an element in the document, but this creates more issues than we expected and the campaigns do not show correctly. There might be a missing option somewhere in the mailchimp dashboard that prevents the script from working when not logged in.

    Have you tried asking the mailchimp support regarding the issue? Is this working when a default theme (tt1 theme) is activated?

    Best regards,
    Ismael

    in reply to: Sticky booking-button desktop & mobile #1304783

    Hey HPT-admin,

    Thank you for the inquiry.

    When you use the WP Sticky Anything plugin, did you specify the class attribute “prijs”? This is the parent container of the booking button in the page above.

    Best regards,
    Ismael

    in reply to: Block the Code Block Element #1304782

    Hey spooniverse,

    Thank you for the inquiry.

    This is not possible out of the box, unfortunately. You can only lock or unlock the Advance Layout Builder as a whole, but not any of the builder elements or shortcodes in it.

    Best regards,
    Ismael

    in reply to: Problems with polish text #1304781

    Hi,

    Thank you for your patience.

    This css seems to help correct the font thickness.

    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
        font-family: DINWebPro, sans-serif;
        font-smoothing: none;
        -webkit-font-smoothing: none;
    }

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

    Screenshot after applying css rule above. https://imgur.com/iytZje7

    Best regards,
    Ismael

    in reply to: Make all Mega Menu Images the Same Size #1304780

    Hey Eleina_Shinn,

    Thank you for the inquiry.

    Adding this css code should limit the width and height of the images inside the mega menu and align them correctly. We also added a 20px margin below the images to move the text downwards a bit.

    #menu-item-71 .avia_mega5 .menu-item img {
        max-width: 240px;
        margin-bottom: 20px;
    }
    

    Let us know if that helps.

    Best regards,
    Ismael

    in reply to: After creating token site not able to log in #1304779

    Hey ictdweb,

    Thank you for the inquiry.

    The error above means that the current Envato token is invalid. It is possible that the token has been removed from the account that was used to purchase the theme, or it does not have the correct permissions. You should be able to fix the issue by generating another token with the correct permissions. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/theme-registration/#what-is-an-envato-personal-token

    Best regards,
    Ismael

    in reply to: Gallery with category filter #1304778

    Hi,

    Thank you for following up.

    The Masonry Gallery element does not have filters, unfortunately, but the Portfolio Grid element does. You can also set the grid items to open a lightbox instead of the actual portfolio item page.

    Best regards,
    Ismael

    in reply to: New filter : avf_masonry_loop_entry_content #1304774

    Hi,

    Looks like you are using the Advance Layout Builder to build the content of the posts. The theme automatically strips all shortcodes when this is the case to make sure that the Masonry displays correctly. If you would like to change this, try to edit the enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php file, look for this code around line 771.

    $this->loop[ $key ]['content'] 	= avia_backend_truncate( $entry->post_content, apply_filters( 'avf_masonry_excerpt_length', 60 ), apply_filters( 'avf_masonry_excerpt_delimiter', ' ' ), '…', true, '' );
    				}
    

    .. and replace it with:

    
    $this->loop[ $key ]['content'] 	= $entry->post_content;
    

    Let us know if it changes anything.

    Best regards,
    Ismael

    in reply to: Issue with Grid Layout #1304766

    Hey psipi,

    Thank you for the inquiry.

    We check the site but we do not see the issue that you described above. Would you mind providing a screenshot of the issue? This is how the site looks on our end.

    Screenshot: https://imgur.com/S4OtQYl

    Best regards,
    Ismael

    Hey webguys2021,

    Thank you for the inquiry.

    The site above is not using Enfold or any of our themes. Are you sure that it is the correct link?

    Best regards,
    Ismael

    in reply to: iFrame in full height #1304581

    Hi,

    Do you have access to the site contained inside the iframe? We might be able to send data, such as the height of the content container, from the iframe site (site inside the iframe) to the main site (the one using Enfold) using a script and apply that same height value to the iframe in the main site. This is possible but will require modifications on both site.

    In the iframe site, you can add this script in any .js or javascript file.

    window.addEventListener('DOMContentLoaded', (event) => {
        const main = document.querySelector(".beeldverhaal");
    	window.postMessage(main.offsetHeight, 'https://oudlisse.nl/');
    });
    

    And in the site using the Enfold theme, add this code in the functions.php file.

    
    // a custom script
    // apply iframe height
    function ava_custom_script_mod_iframe_height() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '
    		window.addEventListener("message", event => {
    			console.log(event.origin.startsWith);
    			if (event.origin.startsWith("https://data.oudlisse.nl/")) { 
    				const iframe = document.querySelector("iframe");
    				iframe.style.height = event.data;  
    			} 
    		}); 
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod_iframe_height', 9999);
    

    Best regards,
    Ismael

Viewing 30 posts - 13,111 through 13,140 (of 66,052 total)