Forum Replies Created

Viewing 30 posts - 11,551 through 11,580 (of 34,988 total)
  • Author
    Posts
  • in reply to: Centering /centring columns not working #1355740

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Copyright without Kriesi #1355739

    Hi,
    It looks like you accidentally converted the pages to the WordPress Block Editor instead of the Enfold Advanced Layout Builder, I corrected it for you please check.

    Best regards,
    Mike

    in reply to: Remove unwanted line #1355736

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Downward arrow in full withd lide show #1355734

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Centering /centring columns not working #1355729

    Hi,
    So you have this sorted out?

    Best regards,
    Mike

    in reply to: Equal products height in Woocommerce Shop Page #1355728

    Hi,
    Thank you for the link to your site, try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_limit_words_script() { ?>
      <script>
    (function($){
    $('#top.post-type-archive-product .template-shop .products.columns-3 .product .inner_product').contents().filter(function() {
      return this.nodeType == 3
    }).each(function(){
      var length=30
      this.textContent = this.textContent.split(" ",length).join(" ");
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_limit_words_script');

    feel free to adjust the word length to suit, currently it is 30.

    Best regards,
    Mike

    in reply to: Button colors different on different pages #1355722

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Centering /centring columns not working #1355721

    Hi,
    Thank you for the link to your site, I see that you are using Equal Height columns, when you do the inner columns are wrapped in a flex_column_table and a av-flex-placeholder is added between the columns.
    If you use Individual Height columns your width issue would be corrected, but I assume that you wish to continue using Equal Height columns, so try changing the color section ID to eh-center-align-columns for Equal Height columns, and ih-center-align-columns for Individual Height columns.
    Then use this css:

    #ih-center-align-columns .entry-content-wrapper,
    #eh-center-align-columns .entry-content-wrapper .flex_column_table {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: center;
    }
    #eh-center-align-columns .av-flex-placeholder {
        display: none;
    }

    After applying the css, please clear your browser cache and check.
    expected results:
    2022-06-18_008.jpg

    Best regards,
    Mike

    in reply to: Remove unwanted line #1355720

    Hey HulaSlim,
    Thank you for your patience, I added this css for you:

    #main .container_wrap {
        border-top-style: none;
        border-top-width: 0;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Filters for Mason Gallery Grid #1355718

    Hi,
    Thanks for sharing your solution.

    Best regards,
    Mike

    in reply to: Fixing Text Being Cropped #1355717

    Hi,
    Thanks for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount {
    	position: absolute;
        top: 30px;
        left: 0;
    }
    #top #wrap_all .av-catalogue-price.av-cart-update-price > ins:before {
    	display: none;
    }
    .av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount .woocommerce-Price-currencySymbol:before {
    	content: "\2219";
        text-decoration: none;
        display: inline-block;
        padding: 0 4px 0 3px;
        font-size: 20px;
        line-height: 12px;
    }

    After applying the css, please clear your browser cache and check.

    If you don’t want the star before the sale price the use this instead:

    .av-catalogue-price.av-cart-update-price > ins > .woocommerce-Price-amount {
    	position: absolute;
        top: 30px;
        left: 0;
    }
    #top #wrap_all .av-catalogue-price.av-cart-update-price > ins:before {
    	display: none;
    }

    Best regards,
    Mike

    Hey Christie,
    Thanks for the link to your site, I tried to create a copy of it on a multisite network but couldn’t reproduce your error, please see the link below.
    Check to see if you have disabled Self Hosted Videos or any elements.

    Best regards,
    Mike

    in reply to: picture filter on masonry grid #1355714

    Hi,
    The Dev Team has replied that at the moment this is not integrated in Enfold, but has been added as a feature issue to our dev repo.
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Filters for Mason Gallery Grid #1355713

    Hi,
    The Dev Team has replied that at the moment not integrated in Enfold, but has been added as a feature issue to our dev repo.
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Enfold 5.0 Animation Mobile #1355710

    Hi,
    Thank you for your patience, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia_transform .av-animated-generic {
        opacity: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Problems with Buttons on iPhone / Responsive #1355707

    Hi,
    Thank you for your patience and for the screenshots, I don’t have an iPhone but by examing with Chrome DevTools at 320px screen width, which is the typically small iPhone width I found that the x-large buttons have a min-width of 320px and the page has a max-width of 85%
    2022-06-18_007.jpg
    But once you look at the larger screen phones like 425px this issue doesn’t show.
    I recommend this css to correct for the smaller phones:

    @media only screen and (max-width: 430px) { 
    .avia-button.avia-size-x-large {
        min-width: 100% !important;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Lightbox with photo swipe? #1355704

    Hi,
    Sorry, we don’t have a timeframe for added features, the Dev Team is working on a lot of features right now, so we will need to wait and see, thank you for your patience and understanding.

    Best regards,
    Mike

    in reply to: Downward arrow in full withd lide show #1355703

    Hi,
    Thank you for your patience, yes the code goes in your child theme functions.php, you placed it in the correct place.
    Your page /monuments-historiques/ doesn’t seem to exist anymore so I checked /moutier-grandval/ and found that the script was looking for a specific element ID, I adjusted it to look for the general ID full_slider_1 and it is now working on that page and should work on all of your pages, if you find one that it is not working on please link to it so we can examine.

    For future users the working script is now:

    function add_scrolldown_link() {
    	?>
    	<script>
    		var slider = document.getElementById("full_slider_1");
    		console.log(slider);
    		if (slider) {
    			var anchor = document.createElement("a");
    			anchor.href="#next-section";
    			anchor.classList.add('scroll-down-link');
    			anchor.classList.add('av-control-default');
    			anchor.setAttribute("aria-hidden", "true");
    			anchor.setAttribute("data-av_icon", "");
    			anchor.setAttribute("data-av_iconfont", "entypo-fontello");
    			console.log(anchor);
    			slider.appendChild(anchor);
    		}
    	</script>
    	<?php
    }
    add_action('wp_footer', 'add_scrolldown_link');
    

    Best regards,
    Mike

    in reply to: Copyright without Kriesi #1355701

    Hi,
    Thanks for your patience on your page /moutier-grandval/ you have the footer setings at Use selected page to display as footer (no socket)
    2022-06-18_004.jpg
    this option on any page will override the theme options
    2022-06-18_005.jpg
    so to use the default theme options you need to change the page setting to Default layout – set Enfold Child > Footer
    2022-06-18_006.jpg
    I did this for you on this one page, please check.

    Best regards,
    Mike

    Hey mediaformers,
    Thanks for your patience and the link to your site, but I’m not seeing this in Safari v15.4 on Mac Monterey v12.3.1
    What version are you using?

    Best regards,
    Mike

    in reply to: Add lightbox manually #1355698

    Hi,
    Glad to hear that Guenni007 has helped you, shall we close this then?

    Best regards,
    Mike

    in reply to: Web shop and multi site #1355696

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey Murmeltier,
    Thank you for your patience and the link to your site, I see the search results content is 13px and the meta info is 11px.
    But the font-family on your site is set to ‘glacial-indifference’ in your use any font plugin, do you want to use open sans for only your search results?
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.search-results #main p,
    #top.search-results #main .post-meta-infos * {
    	font-size: 14px;
    	font-family: 'open sans'!important;
    }

    To add a sidebar on the search results page, enable the Sidebar Settings > Sidebar on Pages option and use the “Displayed Everywhere” widget area in the Appearance > Widgets panel.
    There is not an option to add a graphic in the search results page header, but if you link to the image and a mockup we may be able to assist with some custom code.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    For the 300 pages that you imported, do you only want to match the font size, or is it a drastic layout change?
    Please link to one of the imported pages and one of the new pages that you want it to look like so we can examine.

    Best regards,
    Mike

    in reply to: Slideshow caption in mobile view and others #1355694

    Hi,
    Thanks for your patience and the link to your site and screenshots, for your slideshow caption “4-Zimmer Wohnung Nbg. – St. Johannis” I recommend add ing css:

    @media only screen and (max-width: 430px) { 
    #top.home #main h2.avia-caption-title a {
    	 font-size: 18px;
    }
    }

    feel free to adjust, perhaps 16px or 14px
    After applying the css, please clear your browser cache and check.
    For your other items try this css:

    @media only screen and (max-width: 767px) { 
    #top.home #main #av_section_6 {
    	 margin-top: 0;
    }
    #top.home #main #av_section_6.avia-section-large .content {
    padding-top: 0;
    padding-bottom: 0;
    }
    #top.home #main #av_section_5.avia-section-large {
    margin-bottom: 0;
    }
    #top.home #main #av_section_5.avia-section-large .content {
    padding-bottom: 0;
    }
    #top.home #main #av_section_2.avia-section-huge .content {
        padding-top: 0;
        padding-bottom: 0;
    }
    #top.home #main .avia-builder-el-38 {
        padding: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Web shop and multi site #1355692

    Hi,
    Thank you for your patience, but third-party plugins such as your Easy PayPal Buy Now Button will not show in the Advanced Layout Builder, and this plugin only works in the WordPress Classic Editor, not the WordPress Block Editor
    As I recall your site is not actually a “multisite” it is 5 different sub-domain WordPress installs, each act independent of the others, so you would add your products to each webshop.

    Best regards,
    Mike

    in reply to: Lightbox with photo swipe? #1355691

    Hi,
    Thank you for your patience, the Dev Team replies that this was added only to slideshows, not for lightbox.

    Best regards,
    Mike

    in reply to: Font awesome menu icons AND second menu header bar #1355690

    Hi,
    Thank you for your patience, the Font Awesome icon fa-comments-question is a Pro Icon so to use it you will need a license, the free version you are using in your functions.php maxcdn.bootstrapcdn.com/font-awesome will not show it.
    2022-06-18_001.jpg
    I updated your Font Awesome function to this to use v6:

    add_action( 'wp_enqueue_scripts', 'enqueue_font_awesome' );
    	function enqueue_font_awesome() {
    		wp_enqueue_style( 'font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css' );
    }

    This is a link to the free icons you can use, such as <i class="fa-solid fa-comment"></i> which I tested on your page and it is working:
    2022-06-18_002.jpg
    Please check.
    For your custom menu, do you want this to be just the menu (code block) or the whole “actionbar”?
    2022-06-18_003.jpg
    If you want the same placement and layout as your page now has, I would recommend adding a header widget area and see our documentation on Header widget position ▸ Flexbox Usage to apply Widget at the bottom, this is below your logo and menu.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, there is not an option to set the preloader on a page-by-page basis, but you could enable the preloader for the site and add this css to hide it on all single posts and all single portfolio items:

    #top.single-portfolio .avia_loading_icon .av-siteloader,
    #top.single-post .avia_loading_icon .av-siteloader {
    	display: none !important;
        visibility: hidden !important;
    }
    
    #top.single-portfolio .avia_loading_icon,
    #top.single-post .avia_loading_icon {
        background: rgba(0,0,0,0) !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Button colors different on different pages #1355664

    Hey virtualbis,
    Thanks for the question, the button you link seems to be out contact form button, the other two seem to be from plugins.
    To make them all the same, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top .main_color .button,
    #top #wp-submit0,
    #top .frm_button_submit.frm_final_submit {
        background-color: #faa41a;
        color: #ffffff;
        border-color: #d88208;
        padding: 16px 20px;
        border-radius: 2px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        font-weight: normal;
        font-size: 0.92em;
        min-width: 142px;
        outline: none;
        -webkit-box-shadow: 0 0px 0px #eeeeee;
        box-shadow: 0 0px 0px #eeeeee;
    }
    #top .main_color .button:hover,
    #top #wp-submit0:hover,
    #top .frm_button_submit.frm_final_submit:hover {
        background-color: #afceee;
        color: #ffffff;
        border-color: #8daccc;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How do I change a colour? #1355663

    Hey ac1977,
    For the cart, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top .main_color tr:nth-child(odd), 
    #top .main_color .pricing-table>li:nth-child(odd), 
    #top .main_color .pricing-extra,
    #top .main_color .quantity input.plus, 
    #top .main_color .quantity input.minus {
        background: #141414;
    }

    2022-06-17_230058.jpg
    For the contact form try this css:

     #top .main_color input[type='text'],
     #top .main_color textarea {
     	background: #141414;
     	color: #fff;
     }

    2022-06-17_004.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 11,551 through 11,580 (of 34,988 total)