Forum Replies Created
-
AuthorPosts
-
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeApril 15, 2019 at 12:35 am in reply to: change the word "Mostra dettagli" in the product sheet #1090780Hi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
Please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHi,
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,
MikeHey 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,
MikeApril 14, 2019 at 9:49 pm in reply to: How can I create a color section bottom border arrow shape? #1090755Hi,
Here is an experimental solution:

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.
#enjoyBest regards,
MikeHey 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 cssheight: 100%\9; height: auto\9;
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,
MikeApril 14, 2019 at 8:14 pm in reply to: 404 error loading themes/enfold/images/background-images/ios-linen-dark.png #1090704Hey 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,
MikeHey 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,
MikeApril 14, 2019 at 7:20 pm in reply to: change the word "Mostra dettagli" in the product sheet #1090694Hi,
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,
MikeHi,
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

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:

The email icon under your menu is added via the social icons options, to add a phone icon simply create a new one:

Please see our documentation: How to add Custom Social Icons to Enfold options.Best regards,
MikeApril 14, 2019 at 6:09 pm in reply to: H1 not visible if title/breadcrumbs container is removed #1090676Hi,
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,
MikeHi,
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,
MikeApril 14, 2019 at 2:17 pm in reply to: How to add search bar to existing column in Layout Builder #1090620Hey guttogjente,
I tested color section > 2/3 column > search and it works for me.

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:

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,
MikeHey 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,
MikeApril 14, 2019 at 1:51 pm in reply to: change the word "Mostra dettagli" in the product sheet #1090612Hi,
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,
MikeHi,
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,
MikeApril 14, 2019 at 2:22 am in reply to: H1 not visible if title/breadcrumbs container is removed #1090485Hi,
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.phpfunction 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;Best regards,
MikeHey 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,
MikeHi,
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 -
AuthorPosts



