Forum Replies Created

Viewing 30 posts - 11,491 through 11,520 (of 34,910 total)
  • Author
    Posts
  • 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

    in reply to: Product pages not showing and can't access wp-admin #1355661

    Hi,
    Glad Rikard could 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

    Hi,
    Glad Guenni007 could 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.
    Thanks Guenni007 for sharing.

    Best regards,
    Mike

    in reply to: Fatal Error after Url Change #1355657

    Hi,
    Glad to hear that you have this sorted out, 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: Allow the plus symbol in email addresses #1355655

    Hi,
    Glad Guenni007 could 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.
    Thanks Guenni007 for sharing.

    Best regards,
    Mike

    in reply to: child theme distortions on website #1355639

    Hi,
    Thanks Guenni007, good catch, I had originally commented this out to correct above but didn’t realize it has in two locations, I removed it from the second location and now it is corrected.
    Veloryana please ensure that you clear your browser cache before checking again.

    Best regards,
    Mike

    in reply to: Odd Mega Menu Hover #1355605

    Hi,
    Glad Nikko was 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

    Hi,
    Guenni007 thank you for your detailed solution and example.

    Best regards,
    Mike

    in reply to: child theme distortions on website #1355600

    Hi,
    Thanks for the feedback, for #1 I have added this css to add the top white edge:

    @media only screen and (min-width: 1210px) {
      .home_post_layout2 {
        padding-top: 25px;
      }
    }
    

    2022-06-17_001.jpg
    your original css was not correct, perhaps the page elements or layout changed, anyways please clear your browser cache and check.
    For #2 I misunderstood that this was only for the page /all-posts/, so I removed the opacity on hover on this one page by adjusting your SiteOrigin CSS to exclude it:

    .avia_desktop #top:not(.page-id-4375) .av-hover-overlay-active .av-masonry-entry:hover .av-masonry-image-container,
    .avia_desktop #top:not(.page-id-4375) .av-hover-overlay-active.av-caption-style-overlay .av-masonry-entry .av-masonry-image-container {
      opacity: 0.6!important;
    }
    

    note the :not(.page-id-4375) that I added to your previous css.
    then to remove the opacity from that one page before hover I added this css:

    .avia_desktop #top.page-id-4375 .av-hover-overlay-active .av-masonry-image-container {
        opacity: 1;
    }

    please clear your browser cache and check.
    For #3, to make the header transparent all the time on all devices I added this css:

    .header_color .header_bg {
        background-color: transparent;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Masonry gallery magnific popup not working/enabled #1355588

    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: sticky burger menu mobile/Ipad version #1355536

    Hi,
    Do you always want the transparent header on desktop also or just mobile?
    Will this be for all pages?

    Best regards,
    Mike

    in reply to: Masonry gallery magnific popup not working/enabled #1355487

    Hey BFred,
    Thanks for your question, please check that lightbox is enabled at Enfold Theme Options ▸ Lightbox Modal Window
    If this doesn’t correct please include admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: Featured video below description #1355484

    Hi,
    Thank you for your patience and the link to your page, as I understand you would like the sku, tags and categories on their own lines, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.single-product .product_meta > span {
    	  display: block;
    	  line-height: 16px;
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    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: Image with hotspots that open image in lightbox #1355481

    Hi,
    I see this makes sense, using the magnificPopup api and your own markup is a good solution, thanks for sharing.

    Best regards,
    Mike

    in reply to: Image with hotspots that open image in lightbox #1355413

    Hi,
    Thanks for sharing Guenni007, I see this working on your site, but on my site, it was opening the overlay but not the image, but I didn’t get any error messages.
    But thanks to you I was able to use some of your code to adjust mine and get it working to use the hotspot tooltip as the lightbox title.

    function popup_tooltips_with_links() { 
    ?>
    <script type="text/javascript">
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
       $('#top.page-id-1386 .av-image-hotspot_inner').each(function () {
       	var toolTip = $(this).closest('.av-image-hotspot').attr('data-avia-tooltip');
            var cleanTitle =  $(toolTip).text();
       $(this).attr('title', cleanTitle );
    $(this).magnificPopup({
        type: 'image',
        image: {
            titleSrc: 'title' 
        }
    });
    });
    })(jQuery);
    });
    </script>
    <?php }
    add_action('wp_footer', 'popup_tooltips_with_links');

    In the above code you’ll see that I added window.addEventListener('DOMContentLoaded', function() { }); this is because on my test site I’m loading the scripts in the header before jQuery, I included it here should someone in the future be loading jQuery in the footer.
    I also added a page ID so it will only work on my test page.
    I also wanted to remove the tags from the titles so I added another variable var cleanTitle = $(toolTip).text();

    Best regards,
    Mike

    in reply to: Enfold Main Menu -double naming as footer #1355387

    Hi,
    Glad Rikard could 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: breadcrumbs disappeared #1355386

    Hi,
    Glad Rikard could 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

    Hi,
    Thank you Guenni007

    Best regards,
    Mike

Viewing 30 posts - 11,491 through 11,520 (of 34,910 total)