Forum Replies Created

Viewing 30 posts - 21,121 through 21,150 (of 34,221 total)
  • Author
    Posts
  • in reply to: My LOGO has vanished #1090764

    Hi,
    Please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Copyright on mobile Devices smaller. #1090762

    Hi,
    I believe that what you are asking for is text in the copyright area that is only seen on mobile?
    In that case you will need to use a “span” tag with a class that will only show on mobile, because of your css:
    so start with adding your text in the copyright field between these tags:

    <span class="mobile-only">Your copyright mobile text</span>

    Then please use this css in your Quick CSS:

    @media only screen and (min-width: 767px) { 
    span.mobile-only {
    display: none !important;
    }
    }

    Please let us know how this works for you.

    Best regards,
    Mike

    in reply to: Tab Section Disable Swipe Mobile #1090757

    Hey kasimms77,
    If you mean disable the swipe on the Google Map, then you won’t be able to do that because the map is in a iframe and you can’t change or control the elements inside of a iframe. This is due to CORs
    But if you mean disable swipe on your page then see these solutions:
    Disabling swipe on a specific div
    jquery mobile swipe event disable for input range
    But honestly the more I look into this the less I feel it is possible across all devices, such as Mac & PC.
    *edit* I just thought of looking in the Google Maps API documentation, try looking it up, there maybe something you can use there.

    Please let us know if you are able to solve this, it would be helpful to your peers :)

    Best regards,
    Mike

    Hi,
    Here is an experimental solution:
    2019-04-14-153347
    This arrow border is created with css and jQuery in a code block element, when adding this code to a code block you have to keep in mind the colors of the two sections. The color of the top of the arrow is transparent, but the lower part that creates the arrow needs to match your lower section which needs to be a different color, otherwise you will not see the arrow.
    In the screenshot above I had the color a little off so you can see which part is the code block and which part is the lower section.
    In the code below change the color “#f0f0f0” to match your lower section.

    <script>
    (function($){
      $(document).ready(function(){
    $( ".separator" )
      .closest( ".container_wrap" )
      .css( "border-top-width", "0px" );
    $( ".separator" )
      .closest( ".container" )
      .css( "max-height", "0px" );
    $( ".separator" )
      .closest( ".template-page.content.av-content-full.alpha.units" )
      .css( "padding", "0px" );
     });
    })(jQuery);
    </script>
    <style>
    .separator {
        width: 3000px;
        clear: both;
        overflow: hidden;
        left: 50%;
        margin-left: -1500px;
        position: absolute;
        z-index: -1;
        bottom: 0
    }
    .separator:after,.separator:before {
        content: '';
        width: 0;
        height: 0;
        display: block;
        border-style: solid
    }
    .separator:before {
        float: left;
        border-width: 60px 0 0 1500px;
        border-color: transparent transparent transparent #f0f0f0
    }
    .separator:after {
        float: right;
        border-width: 0 0 60px 1500px;
        border-color: transparent transparent #f0f0f0 transparent
    }
    </style>
    <div class="separator"></div>

    All of this code must be in the code block, which you will position between full width elements on your page.
    #enjoy

    Best regards,
    Mike

    in reply to: *problem alreday solved* #1090709

    Hey klausmeier123,
    Glad to hear, have a great day!

    Best regards,
    Mike

    in reply to: My LOGO has vanished #1090706

    Hey Justin,
    I took a look at your logo and found that it is being rendered as 0px by 0px because your minified cache has added “\9” into the css

        height: 100%\9;
        height: auto\9;

    2019-04-14-142533
    the cache file is: /wp-content/cache/min/1/4e7ad76b29724737c436ace3affb08fb.css
    which looks like wp-rocket ?
    Try disable your caching plugins and clear your browser cache.

    Best regards,
    Mike

    Hey goldengate415,
    It looks like your domain is being added twice at the beginning of the url, once you change the url so your domain is only once the image is found.
    Please try to disable caching, is your staging site also doing this?
    Best regards,
    Mike

    in reply to: magazine date show only year #1090699

    Hey nunop,
    Yes, please go to WordPress > Settings > General > Date Format and choose a custom date of “Y”
    2019-04-14-133202
    and then save.

    Best regards,
    Mike

    in reply to: Enfold Event Calendar display issue #1090697

    Hey ste_thumbs,
    Sorry I tried to take a look at your pages so I could assist with css and your issues.
    But when I go to your site I get a blank page, are you blocking USA ip addresses?
    Please advise how I can examine your site.

    Best regards,
    Mike

    in reply to: change the word "Mostra dettagli" in the product sheet #1090694

    Hi,
    It is at the bottom of the performance options page:
    2019-04-14-131822

    Best regards,
    Mike

    in reply to: scrolling not jumping #1090691

    Hi,
    I took a look at the “MOEBEL” and adjusted the css to center it. Please clear your browser cache and check.

    The correct css to hide the green arrow on the image is:

    #manufaktur_weiche a:hover .image-overlay,#manufaktur_weiche a:hover .image-overlay {
        background: transparent !important; 
    opacity: 0 !important;
    }

    Please try.

    Best regards,
    Mike

    in reply to: Documentation request: footer socket/copyright area #1090682

    Hi,
    Great, so you want to replace the links in the copyright area in the socket?
    So then just add your html links to the copyright field in the footer options
    2019-04-14-121701
    Please see our documentation
    Your services menu item looks like the “mega menu” box was checked, for it of one of the child items, please uncheck it:
    2019-04-14-122457
    The email icon under your menu is added via the social icons options, to add a phone icon simply create a new one:
    2019-04-14-122832
    Please see our documentation: How to add Custom Social Icons to Enfold options.

    Best regards,
    Mike

    Hi,
    Thanks for sharing your solution, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Can't find login info #1090622

    Hi,
    Sorry those didn’t work either, I will forward this and we will help as soon as we can.
    Thank you for your patience.

    *Please reply back so this ticket stays open.

    Best regards,
    Mike

    Hey guttogjente,
    I tested color section > 2/3 column > search and it works for me.
    2019-04-14-080522
    I also looked at your site, but I don’t see any errors.
    I assume you are draging the search until the column changes color:
    2019-04-14-081038
    If you share an admin login I could take a look, or I have a way to add a search with a shortcode.

    Best regards,
    Mike

    in reply to: Can't find login info #1090614

    Hey Florian,
    I searched our users but that email is not there. I don’t have the ability to search by purchase codes. I could forward your request, but as it’s Sunday, it will probably take a day to hear back.
    Or do you have any more email addresses or do you have a link to one of your posts you made with the account?

    Best regards,
    Mike

    in reply to: change the word "Mostra dettagli" in the product sheet #1090612

    Hi,
    Thanks for the login, in your theme settings you had checked the box “Load jQuery in the footer” but this makes most of your jQuery scripts not work. I corrected for you. Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How can i have the same design ? #1090609

    Hi,
    Please see our portfolio documentation and: Open external links when a portfolio image is clicked
    you can link it to any other image or page.

    Best regards,
    Mike

    Hi,
    I have a couple of ways to show the H1 title in the content area if you wish to hide the title bar and breadcrumbs.
    The first is a shortcode that you can place on every page where you want to show the title, such as in a code block element.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    //title shortcode = [page_title]
    function page_title_sc( ){
    	return '<h1>'. get_the_title() . '</h1>';
    }
    add_shortcode( 'page_title', 'page_title_sc' );

    Then wherever you add the code: [page_title] it will show.
    This one is a little harder but will automatically show the title in the content area on pages created with the Advanced Layout Builder.
    To add a page title automatically above the page content, but below the title bar, first, add this shortcode to your functions.php

    function page_title_sc( ){
    	return '<h1 class="container">'. get_the_title() . '</h1>';
    }
    add_shortcode( 'page_title', 'page_title_sc' );

    Then edit: \enfold\template-builder.php on lines 100-102, look for:

    	$content = apply_filters('the_content', $content);
    	$content = apply_filters('avf_template_builder_content', $content);
    	echo $content;

    and change to:

    	$content = apply_filters('the_content', $content);
    	$content = apply_filters('avf_template_builder_content', $content);
    	echo do_shortcode("[page_title]");
    	echo $content;

    This is the results:
    2019-04-13-011605

    Best regards,
    Mike

    in reply to: Hide the price in Product-grid #1090484

    Hey vollstark,
    Yes we can do that, Please see the screenshot in Private Content area of the area I believe you want to hide.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .inner_product_header_cell > .price,.inner_product_header_cell > .woocommerce-de_price_taxrate,.inner_product_header_cell > .woocommerce_de_versandkosten {
    display: none !important;
    }

    Best regards,
    Mike

    in reply to: How can i have the same design ? #1090482

    Hi,
    Sorry you will need to use the portfolio element to create this, but in the portfolio element you can change the linking for that it goes somewhere else if you wish, or we can help with removing the links. But yes, you will still have the portfolio items hidden somewhere in the backend.

    Best regards,
    Mike

    Hey Chris,
    This sounds like a conflict with the new WordPress block editor in v5+
    We had to make a lot of code changes to work with the latest WordPress and their new editor, I would expect your version to have errors.
    Also Theme Forest has changed how they update the theme about the same time so you will need to update manually vis FTP and then set up a new Theme Forest “Token” to allow auto updates in the future.
    Please let us know if you want a hand manually updating.

    Best regards,
    Mike

    in reply to: Copyright on mobile Devices smaller. #1090479

    Hey schweg33,
    Yes this can easily be done with css rules in your Quick CSS field.
    For example, on my demo site the copyright text is 11px, so to change it for mobile I would use this css:

    @media only screen and (max-width: 767px) { 
    span.copyright {
    font-size: 8px !important; 
    }
    }

    To change the padding, or it’s actually the margin, my container width is 85% percent of the screen, so to change or remove it all I will use this css:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #socket > .container {
        width: 100% !important; 
        max-width: 100% !important; 
    }
    }

    If this doesn’t help, then please link to your page and try to explain a little more what you would like.

    Best regards,
    Mike

    Hey olifant551,
    You can have a staging site as long as it’s on the same domain, using a sub-domain is fine with one license.

    Best regards,
    Mike

    in reply to: Avia Layour Builder not working #1090475

    Hey subpad,
    I took a look at your site and see that your server settings seem fine and your theme is also up to date.
    I opened your homepage in the editor and it seemed like I could edit it, with no spinning wheel.
    Although I did see this error: Error during WebSocket handshake: Unexpected response code: 403
    I believe this is a JetPack error.
    So are you having this issue on all pages, or just some?
    Have you tried disabling your plugins? Please do try this.

    Best regards,
    Mike

    in reply to: Documentation request: footer socket/copyright area #1090474

    Hey fillance1,
    Here is our documentation
    To remove the backlink add the below shortcode in the copyright field.

    [nolink]

    Best regards,
    Mike

    in reply to: scrolling not jumping #1090473

    Hi,
    Very good, have a great night :)

    Best regards,
    Mike

    in reply to: Enfold upgrade #1090471

    Hi,
    That is great news! Who would have thought such an old version could be patched?
    But, please forward the info to the client to purchase a license and update the theme, it could save a lot of headaches later because most WordPress installs auto update now and with their new direction and the block editor, this will most likely break the sites using the older versions.
    I know you said the client is not very WP savvy, which is ok because we often help members with updating via FTP.
    I will leave this ticket open so if you ever reply again about the user being ready to update I will see it :)

    Anyways, well done and have a great day.

    Best regards,
    Mike

    in reply to: enfold fullwidth easy slider-title, caption, button #1090469

    Hey Lori,
    Sorry for the late reply, I took a look at your site and to change your titles to mixed case, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
        text-transform: none !important; 
    }

    This is for the title “Structural Engineering”, your h3 headings below it seem to have been typed in as all caps, please manually change.

    To set the slider container width for the title and caption to be the same and specify the width and set to mixed case:

    h2.avia-caption-title,.avia-caption-content p {
    width: 300px !important;
    }
    div .slideshow_caption h2 {
        text-transform: none !important; 
    }

    Please feel free to adjust the width to suit.

    To add a arrow to your button save it with no text or label, for this example I used the “light” button styling so it would just be a button border.
    Then use this css:

    .avia-slideshow-button::before {
      content: "\e889"; 
      font-family: entypo-fontello;
       font-size: 40px;
      color: #fff;
    }

    and this is the result:
    2019-04-13-180532

    Best regards,
    Mike

    in reply to: Blog problems (urgent) #1090467

    Hey Line,
    Sorry for the late reply, this is because the category pages have a different layout, but I added this code to the end of your functions.php file in Appearance > Editor:

    //change category page layout to blog single big style
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-big';
    return $layout;
    }

    to change your category page to the “single-big” layout that shows the image.
    Unfortunately, you can not have the masonry on the category page.

    Best regards,
    Mike

Viewing 30 posts - 21,121 through 21,150 (of 34,221 total)