Forum Replies Created

Viewing 30 posts - 21,961 through 21,990 (of 35,070 total)
  • Author
    Posts
  • in reply to: My LOGO has vanished #1090800

    Hi,
    Thanks for the login, once I logged in and then cleared my browser cache your logo appeared, so I assumed that you just solved this?

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1090797

    Hi,
    Ok, so I looked up the same product you had in your screenshot and I got the same as you.
    So to change the text “This is only an estimate. Prices will be updated during checkout.”
    to: “Your total including shipping. No additional fees”
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $( "p.woocommerce-shipping-destination" )
      .text( "Your total including shipping. No additional fees" );
     });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Enfold Event Calendar display issue #1090793

    Hi,
    Thanks that helped a lot :)
    Ok so ticket cosy & number of tickets is one element (screenshot 1) the “buy now” can be adjusted down (2) but to each on their own line.

    #top .tribe-events-event-cost form {
        margin-bottom: 0px !important; 
    }
    input[type=text].tribe-ticket-quantity {
    display: inline !important;
    width: 40% !important; 
    margin-bottom: 0px !important;
    }

    Best regards,
    Mike

    in reply to: Change background-image for mobile #1090790

    Hi,
    I’m sure I can change any text, but I didn’t see it. Please look at my screenshot and add your own so I can help.
    It probably right in my face :)

    Best regards,
    Mike

    in reply to: Tab Section Disable Swipe Mobile #1090787

    Hi,
    Thank you for your feedback, that is a big difference in what I thought.
    Ok, so I checked out the link in mobile and didn’t find any issues, I also tried clicking on the map, thinking that was part of the issue. Perhaps I’m still not clear.
    I should say that I have no issues clicking on the title icons to see the next element in mobile, mobile is working as I would expect. Please note that I have an Android, so if this turns out to be another iPhone issue I going to pull my hair out :)
    Ok, so can you please make a video of the issue on your mobile?
    This would help so much, for Android, I found the app: Screen Recorder – No Ads which works great. But for iOS, you will have to search for one yourself.
    I hope we can get this/me sorted out :)

    Best regards,
    Mike

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

    Hi,
    Sorry, perhaps we have a difference in language here, I can help you create different text based on screen size, and many other things.
    It is very easy, but I’m not sure how to help you.
    Please show me with screenshots what you want to see in mobile, and on desktop, Then please include an admin login to your site so I can do it.
    This may be very easy once I understand :)

    Best regards,
    Mike

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

    Hi,
    Glad we were able to help, 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: Change background-image for mobile #1090779

    Hi,
    If it’s good for you we can keep this thread open, but can you do me a favor, Please include your URL and admin login in the Private Content area with each post.
    You see your posts are pagination for me so sometimes I have to search back 3 pages to find your site info, that’s why I keep posting it myself. I don’t save anyone’s login to my browser and I don’t try to remember this stuff because I typically help about 50 different sites a day.
    Thanks :)
    Anyways, I took a look at your cart, but I don’t see any address as a shipping estimate, Please see the screenshot in Private Content area.
    I suspect this is based on cookies the site has placed on your browser, but as you know I have worked a lot on your site, including test purchases and my ad/cookie blocker is “off” for your domain. So I assume you have made many test purchases.
    Please try logging out and using “incognito” mode, or depending on your browser it might be called “private” mode,
    to see if you still see this info.

    Best regards,
    Mike

    in reply to: scrolling not jumping #1090768

    Hi,
    Yes, I use the ID’s of the element’s
    I look at your crosses again, but every part of both crosses is clickable and changes the mouse to a “hand”, meaning link.
    So to help, I’ll need to know your device width in pixels, the OS of the device, and the browser of the device.

    Best regards,
    Mike

    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

Viewing 30 posts - 21,961 through 21,990 (of 35,070 total)