Forum Replies Created

Viewing 30 posts - 30,031 through 30,060 (of 34,546 total)
  • Author
    Posts
  • in reply to: Magnific Popup in combination with an Enfold Contact Form #894707

    Hi,
    I have tried to look at the page but I don’t see the codeblock that contains the #product-kontakt-form that the button is calling, please advise.

    Best regards,
    Mike

    in reply to: Sidebar with page background #894702

    Hi,
    To use the code on other pages, change the “.page-id-614” to those pages. To find the page id, open the developer tools by right clicking on the page and choosing “inspect” then look in the code at the top:
    see this image: https://pictr.com/image/8h3C9
    There are also plugins that will show you the page id’s, such as: Reveal IDs
    You can add many pages to the code with commas like this:

    #top.page-id-614 #main .container:before,#top.page-id-615 #main .container:before,#top.page-id-616 #main .container:before {
    

    Best regards,
    Mike

    in reply to: Sidebar with page background #894700

    Hi,
    Try setting a background color for the color section, by default it is transparent.

    Best regards,
    Mike

    in reply to: search result doesn't work #894698

    Hi,
    The issue is that one of your plugins is braking the page layout, causing the sidebar to take full width and drop below the content. We can change the width of the sidebar so the links are clickable, but the layout is still broken.

    #top #main .sidebar {
    float: right!important;
    width: 27%!important;
    top: -120vh!important;
    }

    Please compare the link in the Private Content area with the screenshots.
    The css is not a good solution because it won’t solve every page at every screen width, the best solution is to find which plugin is causing the issue and either contact the plugin author for a fix or don’t use it.

    Best regards,
    Mike

    in reply to: Font Sidebar #894691

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Mystery Favicon #894679

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Enfold changes preferred domain in links #894675

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Gespeicherte Vorlage aus Avia exportiren #894674

    Hey palaiochora,

    Um die Templetes zu verwenden, die Sie im Layout-Builder auf einer anderen Enfold-Site erstellt haben, müssen Sie Aktivieren Sie Avia Layout Builder Debug und kopieren Sie den Shortcode, um ihn in die neue Site einzufügen.
    Um die Demo-Tempel auf einer anderen Enfold-Seite zu verwenden, können Sie das gleiche oben tun oder einfach die Demo-Import-Funktion der neuen Enfold-Seite verwenden.
    Sie könnten die Demos oder Ihre Templetes nicht auf einer anderen Site verwenden, auf der Enfold nicht installiert ist.
    Ich hoffe ich habe deine Frage richtig verstanden.

    To use the templetes that you have created in the layout builder on another Enfold site, you will need to Enable Avia Layout Builder Debug and copy the shortcode to paste in the new site.
    To use the Demo templetes on another Enfold site, you could do the same above, or simply use the demo import function of the new Enfold site.
    You would not be able to use the Demos or your templetes on another site that doesn’t have Enfold installed.
    I hope I have understood your question correctly.

    Best regards,
    Mike

    in reply to: Mystery Favicon #894669

    Hey evivecare,
    Please see the link in the Private Content area to where the favicon is located on your host. It looks as though it is part of a plugin, please check the plugin settings.

    Best regards,
    Mike

    in reply to: Enfold changes preferred domain in links #894667

    Hey Theqie,
    In the menu the custom url was http:// I changed it to https://
    it now works correctly, but you should check the rest of the menu items.

    Best regards,
    Mike

    in reply to: Font Sidebar #894666

    Hey denisj77,
    Try this code in the General Styling > Quick CSS field:

    #top.page-id-61 .inner_sidebar {   
    font-style: normal!important; 
    }

    It is meant to work only for that page.

    Best regards,
    Mike

    in reply to: Sidebar with page background #894664

    Hi,
    I have changed the code so it will only work on the one page, and so it won’t repeat the image.

    #top.page-id-614 #main .container:before {
        content: ' ';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.2;
        background-image: url(https://residenzeparadiso.com/wp-content/uploads/2017/12/chaplet-2489637_1920.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }

    Best regards,
    Mike

    in reply to: Transparent Table #894661

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Image Overlay #894659

    Hey evivecare,
    I have tested and found that the overlay is not showing for me, perhaps try clearing your browser cache.
    https://pictr.com/image/8hHjB

    Best regards,
    Mike

    in reply to: Contact Form without function #894655

    Hi,
    I added this code to the end of your functions.php file in Appearance > Editor:

    add_filter( 'avf_form_from', 'enfold_customization_contact_form_etc', 10, 3 );
    function enfold_customization_contact_form_etc( $from, $p1, $p2 ) {
    	global $enfold_custom_from_header;
    	$enfold_custom_from_header = $from;
    }
    add_filter( 'avf_form_mail_header', 'enfold_customization_contact_form_etc2', 10, 3 );
    function enfold_customization_contact_form_etc2( $header, $p1, $p2 ) {
    	global $enfold_custom_from_header;
    	$header .= 'Reply-To: ' . $enfold_custom_from_header . '\r\n';
    	return $header;
    }

    which adds the reply-to in your mail header. You can see the test mail in the WP Mail Log plugin on your site, it also shows there is no longer a sending error.
    Please check.
    Please note that if you test, try not to use the same address in the form from address that it is going to, as it may trigger your hosts spam protection.

    Best regards,
    Mike

    in reply to: Link Post format in Magazine title not linking out #894637

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: search result doesn't work #894636

    Hi,
    Thank you for the login, I found that one of your plugins is causing the issue by deactivating all of them, Try disabling your plugins and reactivate each one individually until you find the one causing the error.

    Best regards,
    Mike

    in reply to: Issue with Blog Posts and advanced layout builder #894514

    Hi,
    I’m not sure if I’m looking at the right area, but I think I see it. please see screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Fullwidth Easy Slider Caption Position #894512

    Hi,
    It’s kind of hard to power over “top” from this side to be sure on the exact percentage.
    Try -5% to see where it lands and adjust until it where you like it.

    Best regards,
    Mike

    in reply to: header #894507

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    
    function my_search_form($html)
    {
        return str_replace('Cerca', 'Search', $html);
    }
    add_filter('get_search_form', 'my_search_form');

    Best regards,
    Mike

    in reply to: Briefly unavailable! #894502

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Issue with Blog Posts and advanced layout builder #894488

    Hi,
    Please use a child theme and apply this code to functions.php file of your child theme.

    add_filter('avia_post_nav_categories', 'use_same_category_filter');
    function use_same_category_filter($same_category)
    {
    $same_category = true;
    return $same_category;
    }

    Best regards,
    Mike

    in reply to: Each Element Should Have the Same Options #894485

    Hey Andrea,
    Sorry we don’t have that yet. But it looks like you are using the layout builder for your posts, couldn’t use use the element you wanted on that page?

    Best regards,
    Mike

    in reply to: Line Below the menu bar #894456

    Hey jayfarr1982,
    I didn’t see a strike though the menu, please see screenshot in Private Content area.
    Can you please add a screenshot to point out how you see it?

    Best regards,
    Mike

    in reply to: Sidbar not working – showing under content? #894449

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Issue with Blog Posts and advanced layout builder #894435

    Hi,
    Ok, I changed it back, is there anything else we can help with today, or shall we close this then?

    Best regards,
    Mike

    in reply to: search result doesn't work #894429

    Hey bcdcosmetici99,
    There is an error in your cache plugin causing the css for the sidebar to make it 100% width over the top of everything else. Try disabling your plugin and clearing the cache of the site.

    Best regards,
    Mike

    in reply to: Sidbar not working – showing under content? #894426

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Issue with Blog Posts and advanced layout builder #894424

    Hi,
    All could be issues. Shall I undo the changes?
    When blog posts are made with the layout builder they will not show excerpts in the blog element, to show the excerpts you will need to add a manual excerpt, yet the manual excerpt will not show images.
    It is recommend to use the default editor for blog posts.

    Best regards,
    Mike

    in reply to: Fullwidth Easy Slider Caption Position #894423

    Hey tmputnam,
    Do you have some custom css code like this:

    .slideshow_align_caption {
        top: -200px

    or a setting in the slider that is -200px ?
    instead of a pixel height try a percentage.

    Best regards,
    Mike

Viewing 30 posts - 30,031 through 30,060 (of 34,546 total)