Forum Replies Created
-
AuthorPosts
-
Hey Heathcliffe,
You might want to suppress warnings for your website and enable logging. Here is a great article on how to do it.
Warnings are not errors and the application still works fine.
Let us know if you have any more questions.
Best regards,
Victoria- This reply was modified 7 years, 8 months ago by Victoria.
Hi bluelotus,
Please let us know if you have any more questions regarding this issue or we can close it.
Best regards,
VictoriaHey MadRhino,
You might be seeing a cached version, if you have cache enabled, which may seem like changes are not applied.
Best regards,
VictoriaHi cheaptrip,
You have minification of HTML and XML enabled in Total Cache plugin. It strips all the format and whitespace to make your files smaller and allow faster page load.
You can just disable HTML minification and you will see formatted HTML in view source.Let me know if this was helpful.
Best regards,
VictoriaMarch 14, 2017 at 11:12 am in reply to: How to enlighten a photo background in the homepage slideshow #760579Hi,
If you find that some of the pictures you uploaded have different colors than the original, you have probably included a Color profile in the image without noticing it.
All images uploaded to Shopify get stripped of their color profile for two reasons:
- Browsers vary on their support for color profiles, so they end up looking differently when being viewed for example on Firefox vs. Internet Explorer. We want to make sure your site looks the same across all major browsers.
- Color profiles can take up huge amounts of disk space, so this can result in very heavy loading times without gaining anything from it.
Solution
Make sure to save the image without a color profile. This process varies depending on the different image editing programs. For example, in Adobe Photoshop, to save an image without a color profile is achieved by selecting Save for Web… from the File menu.
Let me know if this was helpful.
Best regards,
VictoriaMarch 14, 2017 at 10:59 am in reply to: Change Colour on Hover of Title & Excerpt of Ajax Search #760574Hi MattDalli,
In you enfold_child.css add this rules:
.header_color a:hover span.ajax_search_title, .header_color a:hover span.ajax_search_excerpt { color: #fff !important; }
Let me know if this was helpful.
Best regards,
VictoriaMarch 14, 2017 at 10:23 am in reply to: Fullscreen Slider – Background Images are WAY ZOOMED IN on Tablet and Mobile #760557Hi Parker,
Sorry for the late reply. This is the intended behavior, this slider does not have options to have responsive images. You can either try a different slider or choose different images that will have something in the middle, that you want to show to your customer.
Let us know if you have any more questions.
Best regards,
VictoriaHi Kelly,
The css rule provided by Basilis should work. Depends on where you put it though or wether the cache has been flushed.
I put this line in your enfold child css file on Chrome console and it worked fine, no need even for the !improtant;
Please try again and Let us know if it worked for you.
Best regards,
VictoriaHi Giuseppe,
The problem here is with the table, it’s fixed width pushes other elements to the side. For the mobile view tables are tricky. If you want your users to see the table you have to add custom functionality, so that the table is scrollable sideways and does not break out of its container.
Or you can hide this tab on mobile and other tabs look normal. This option is available in editing tab menu in Advanced Layout Editor.
Let us know if you have any more questions.
Best regards,
VictoriaHi,
I have not seen any tabs on your main page, do you have another page? Do you still need help with this issue?
Best regards,
VictoriaHi,
There is a Javascript error, which stops the script from calculating the correct width for the container.
The error in jetpack-carousel.js script.
There are two extra spans that script finds, they are not in the gallery, but they come up under this selector $( ‘a img[data-attachment-id]’ ). That’s why the script breaks.Best regards,
VictoriaHi Mike,
What they have on their main page is a fullscreen slider, menu, logo and social links.
On the top of the demo page Enfold 2017 you see the menu and social links on top of the fullscreen slider, so this is one way you could try to make a page like that. You could also look more into parallax websites, there you can have videos as background.
Then there is another fullscreen slider in Enfold here
This is just one hint to suggestions :)
Best regards,
VictoriaMarch 13, 2017 at 6:40 pm in reply to: NextGen Gallery Pro – Disable Filmstrip on Mobile Devices #760182Hi,
There are two way to do it. One is quick and dirty css way:
@media (max-width: 768px) { .ngg-galleria-parent .nextgen_pro_horizontal_filmstrip { height: 0; display: none; } .fa .ngg-trigger .nextgen_pro_lightbox .fa-share-square { display: none; } }
The other way is write a conditional in your template for this page:
<?php if ( !wp_is_mobile() ) { /* Display your gallery */ } ?>
Let me know if this was helpful.
Best regards,
VictoriaHi,
Could you please update login credentials again, they did not work.
Best regards,
VictoriaMarch 13, 2017 at 5:10 pm in reply to: Image with Zoom In effect when hover and getting cut off #760100Hi,
It is the intended behavior, the container stays the same size, just the image inside zooms a little bit, seeming to be bigger(closer) and yes, gets cut on the edges (visually). If you make images scale on hover, it will look like a lot of jumping elements on the page. Many people find it annoying.
You can put gallery elements closer, it might look nicer:
.av-large-gap.av-flex-size .av-masonry-entry .av-inner-masonry { position: relative; margin-right: 3px; margin-bottom: 3px; }
Let me know if this was helpful.
Best regards,
VictoriaHi Mike61,
You can add background color to this css rule:
.html_header_top.html_bottom_nav_header #top .main_menu ul:first-child>li:hover { z-index: 1000; position: relative; background-color: #f0f9ff; }
Let me know if this was helpful.
Best regards,
VictoriaHi eviang,
If you really want to solve the issue, you will need to investigate it more. I would suggest looking into your mailer, if it’s writing logs you might find some answers there. Or turn on logging for outbound emails or even write some lines of code to log the emails, maybe some of them are not validated by mailer. You need to test the form more extensively.
Best regards,
VictoriaHey sensiblekaren,
You can add this on the child theme’s functions.php and specify the icon code you need (or even another icon font):
add_filter('avf_default_icons', 'avf_change_default_icons', 10, 2); function avf_change_default_icons($icons) { $icons['audio'] = array( 'font' =>'entypo-fontello', 'icon' => '{YOUR ICON CODE}'); return $icons; }
Let me know if this was helpful.
Best regards,
VictoriaHi,
Do you still need any help with the issue?
Best regards,
VictoriaHi royaltask,
get_stylesheet_directory_uri() will give you the css folder in child theme and if it is not your intended folder, you should use get_template_directory_uri() instead.
function wp_change_avia-tooltip() { wp_dequeue_script( ‘avia-tooltip’ ); wp_enqueue_script( ‘avia-tooltip-child’, get_template_directory_uri().’/js/avia-tooltip.js’, array(‘jquery’), 2, true ); } add_action( ‘wp_print_scripts’, ‘wp_change_avia-tooltip’, 100 );
Let me know if this helps.
Best regards,
Victoria- This reply was modified 7 years, 8 months ago by Victoria.
Hi asinger777,
I was able to reproduce the scenario you’re describing. What I did was set the network speed in Chrome DevTools console in Network tab to Good 2g and disabled cache. So the load speed got slow and the browser was trying to show the image as it could, with progressive loading. The image is 187KB which is bigger than anything else you have on the website. It is highly recommended to optimize the image for slower network speeds if you don’t want to have this kind of effect.
You can play with this even more, you can select different network speeds and record a frame by frame video of your page loading. There is a button for recording videos and making screenshots with timestamps on the Network tab in Chrome DevTools console.
Best regards,
Victoria -
AuthorPosts