Forum Replies Created
-
AuthorPosts
-
Hi,
Maybe it is also due to the display settings?
Yes, it is possible. On Windows, there is a test called “Cleartype” where you can calibrate the text display in your machine, It’s possible that the current text configuration of your second notebook is different from the rest.
// https://docs.microsoft.com/en-us/typography/cleartype/
The font looks fine on Chrome Windows 10 — screen resolution is 1920x1080px. Please check the screenshot below.
Screenshot: https://imgur.com/a/ZD74S65
Best regards,
IsmaelHi,
Thank you for the update.
We modified the postslider.php file in the SVM site, but those changes should not cause any errors unless it’s still using an older version of the theme.
We added this snippet in the functions.php file to enable the categories of the posts in the home page.
add_filter('avf_postslider_show_catergories', 'avf_postslider_show_catergories_mod', 10, 1); function avf_postslider_show_catergories_mod($category) { $category = 'show_business'; return $category; }
Best regards,
IsmaelOctober 21, 2019 at 1:35 pm in reply to: WP caught error in admin-ajax after upgrading to 4.6.2? #1149861Hi,
Where do you usually see the error? We enabled the debug mode in the staging 3 site and we didn’t see any error, but we found a different a warning, which is related to the sg-cache plugin.
Warning: exec() has been disabled for security reasons in /home/illingco/staging/3/wp-content/plugins/sg-cachepress/core/Minifier/Minifier.php on line 210 Warning: exec() has been disabled for security reasons in /home/illingco/staging/3/wp-content/plugins/sg-cachepress/core/Minifier/Minifier.php on line 210
Best regards,
IsmaelOctober 21, 2019 at 12:59 pm in reply to: Child Theme Does not Acknowledge CDN Rewrite Since Latest Upgrade #1149849Hi,
Thank you for the update.
Where do you see these errors (https://prnt.sc/pghd58)? We enabled the debug mode and the theme’s file compression settings, but we didn’t see any errors in the site. We also confirmed that WP Rocket’s CDN option is enabled, and that the resources (css, js, images) are loaded from CDN.
Screenshot: https://imgur.com/a/Tv5FULw
Best regards,
IsmaelHi,
Thank you for following up.
The reCAPTCHA option can only do so much to protect the site from spammers, so in addition to it, you should install security plugins to filter malicious softwares and unwanted addresses, and stop them from ever getting through. This should help protect the site not only from spammers, but also from any harmful activities directed to it. You can pick one from this list.
// https://wordpress.org/plugins/wordfence/
// https://wordpress.org/plugins/wp-cerber/
// https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/Best regards,
IsmaelHi,
Thank you for your patience.
We are actually using https because that’s what you posted above. Unfortunately, we’re still getting the same error.
The page isn’t redirecting properly
An error occurred during a connection to http://www.web-artwork.at. {$errorMessage}
Error code:
This problem can sometimes be caused by disabling or refusing to accept cookies.I’ll forward the thread to the rest of the team so that they can check it. Meanwhile, you should contact your hosting provider regarding the issue.
Best regards,
IsmaelHi,
Thank you for the update.
It scrolls to the top because that is where the lightbox container is. It will then scroll back to the last item that you opened after closing the lightbox container. Unfortunately, we can’t alter that behavior without major modification in the lightbox script. What we can do is provide you with a css that adjusts the opacity of the lightbox container background so that you don’t see the images or content behind.
.mfp-zoom-in.mfp-ready.mfp-bg, .mfp-zoom-in.mfp-ready .mfp-preloader { opacity: 1; }
Best regards,
IsmaeleHi,
Thank you for the follow up. Try to remove the first selector in the previous css.
.av-burger-overlay-active { -webkit-overflow-scrolling: touch; overflow: hidden; }
This is what should happen after adding the code.
Screeshot: https://imgur.com/a/bjW7DYV
As you can see in the screenshot, only one scroll bar remains.
Best regards,
IsmaelHi,
@MrPoBoi: In your case, the next step is to use a different contact form. The spam protection can only go so far, and it’s not a surefire way to prevent all adverse activities specially if one is so inclined to get through. You can try CF7 or Ninja Forms for starters.Best regards,
IsmaelHi,
Now that I think about it, the above will also resolve itself if I can just use the CSS from this thread on just the homepage only.
You can prepend “.home” to the css selectors to limit the style to the home page. Example:
.home #selector .another-selector { // style here }
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Sorry for the delay. Did you create more than one project in the Google console? Are you sure that billing info is attached to the project where the API key is generated? We can still see the same error in the console.
You are using this API without a key. See https://developers.google.com/maps/documentation/javascript/error-messages?utm_source=maps_js&utm_medium=degraded&utm_campaign=billing#api-key-and-billing-errors
Thank you for the update.
Best regards,
IsmaelOctober 21, 2019 at 6:31 am in reply to: Verlinkte Spalten einen Linktext bzw. Title Tag geben #1149718Hi,
Glad we could be of help. Please don’t hesitate to open a new thread if you need anything else. We’ll close the thread now. Once again, have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, you can load the script from the child theme, but we don’t really recommend it because you will still have to update the file if there are changes made or added to it in one of the theme upgrades. If you want to proceed, add this code in the functions.php file to disable the default script and register the modified one.
add_action( 'wp_enqueue_scripts', 'ava_child_theme_avia_js', 10 ); function ava_child_theme_avia_js() { wp_deregister_script( 'avia-default' ); wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), $vn, true ); }
Create a “js” folder in the child theme directory and move the avia.js file inside.
Best regards,
IsmaelHi,
Thank you for the clarification.
Looks like the code you gave me is just a piece of code that I need
Yes, the code above should adjust the width of the header widget and create some margins above it. Did you try it?
UPDATE: We added the css code at the very bottom of the Quick CSS field. Please check the screenshot below for the result.
Screenshot: https://imgur.com/a/9gqOWWL
Best regards,
IsmaelOctober 21, 2019 at 5:33 am in reply to: 40 pages crashed – compatibility issues with CPT-Plugin/ALB #1149712Hi,
Thank you for the update.
But why is there still no layout box ???
You have to include this filter in functions.php file to re-enable the layout meta box for you custom post types.
function avf_metabox_layout_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'angebot'; $supported_post_types[] = 'bild-des-tages'; return $supported_post_types; } add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);
We just copied the shortcode from here:
We are not really sure why the shortcodes broke after the update. Sorry about that. The only way to fix them is to edit each post manually and remove the opening tab shortcode in the second “Preise” tab content and get rid of the duplicate tab.
Best regards,
IsmaelOctober 21, 2019 at 5:16 am in reply to: Portfolio Raster – Einzelansicht auf neuer Seite öffnen und Navigation #1149709Hi,
Thank you for the follow-up.
Are you referring to the single portfolio pages (see private field)? They are displaying the featured image as expected. What are you expecting to see in those pages?
Best regards,
IsmaelHi,
We are not really sure how those dots got there. Are you sure that you didn’t define the excerpt of that post manually? It will only be added when a post contains an excerpt.
Thank you for the update.
Best regards,
IsmaelHi,
Thank you for the update.
The spam protection is disabled in the contact form. Did you disable it? It should work fine as long as the cookie content option in the theme is disabled.
Best regards,
IsmaelHi,
Thank you for the update.
I think I need a solution where visitors can also immediately opt in also for videos and other 3rd party cookies.
You can definitely use the modal popup window for that. Set it to display as a page popup or include it in the consent bar so that users can access it when necessary. You can include the necessary privacy shortcodes in a single tab if you want to streamline the consent process and make it easier for your users to toggle their preferred cookies or services.
Best regards,
IsmaelHi,
@JannyPolak: It makes sense that the spam protection doesn’t work initially on load because the consent bar is still missing. Users have to accept the cookies first and refresh the page in order to use the contact form properly but they’re not able to do that because of the issues pointed above. We edited the avia-snippet-cookieconsent.js file in the “modeo” site as suggested in the previous thread and purged the cache. Let us know if it changes anything.Best regards,
IsmaelHey!
Thank you for the update.
You can follow @Guenni007’s suggestion above. The snippet that he suggested should render a text rotator above the header.
// https://kriesi.at/support/topic/create-a-slide-texts-in-top-bar/#post-1145956
Best regards,
IsmaelOctober 21, 2019 at 4:17 am in reply to: Fullwidth slider with png images fade animation issue #1149679Hi,
Thank you for the update.
Have you tried adjusting the transitionSpeed parameter from 900ms to a higher value? That should slow down the fade effect a bit.
Best regards,
IsmaelHi,
that this would mean that the fonts and videos would load WITHOUT the user having to click on accept the cookies?
Yes, that is correct. Sorry about that. I got a little confuse. We tested the site again, removed everything in the local storage and refreshed the page. The fonts are still loaded even if we didn’t accept the cookie because the “aviaCookieSilentConsent” cookie is still added to the local storage. All services will be enabled by default regardless of the cookie consent status as long as the cookie (aviaCookieSilentConsent) is present.
Example of the script where this condition can be seen at work:
var allow_continue = true; var silent_accept_cookie = document.cookie.match(/aviaCookieSilentConsent/); if( cookie_check && ! silent_accept_cookie ) {
Best regards,
IsmaelHi,
@sthubertus: Thank you for the inquiry. Try to install a security plugin to protect the site from bots and unwanted scripts. You can also replace the default captcha with Google reCAPTCHA to get rid of spam emails and further enhance the security of the contact forms. Please visit the documentation for more info.// https://kriesi.at/documentation/enfold/contact-form/#how-captcha-works
Best regards,
IsmaelOctober 18, 2019 at 10:50 am in reply to: 40 pages crashed – compatibility issues with CPT-Plugin/ALB #1149214Hi,
Since the last update these posts are completely foobar and i can repeat and proof it
The only things we are sure that changed in the latest update that is closely related to this issue is the filter (avf_alb_supported_post_types), which enables the ALB for custom post types, and the element manager, which prevents execution of shortcodes when they are added outside the builder or the widgets. However, these changes should not have affected the post content or the shortcodes, so we don’t really know why the first tab is duplicated.
I DONT want that you correct it.
It was an opening tab shortcode inside the “Preise” tab and it was added right above the table shortcode. It is probably why the first tab was duplicated, but we can’t be sure. Unfortunately, the duplicates will have to be removed manually. We haven’t encountered the same issue so far.
Thank you for your patience.
Best regards,
IsmaelOctober 18, 2019 at 10:35 am in reply to: Both an HTML version and the mailChimp widget are not working #1149202Hi,
Yes, we checked it on Windows 10. I will ask the rest of the team to check it on Mac. Please wait for their response.
Thank you for your patience.
Best regards,
IsmaelOctober 18, 2019 at 10:34 am in reply to: Styling product grid and single product page – woocommerce #1149201Hi,
Thank you for the update.
You can prepend the “page-id-1094” class name in the css selectors to limit the styling to the shop page. Example:
.page-id-1094 div .products .product { margin: 0 2% 2% 0; width: 23.25%; }
For the tax info in the single product page, please use this:
.wc-gzd-additional-info.tax-info { display: none !important; }
Best regards,
IsmaelHi,
Thank you for the update.
Is it happening to a lot of pages? A quick fix is to replace “parallax” with the “fixed” option temporarily. Or as suggested above, try to use a larger image and make sure that the aspect ratio is 16:9 (1920×1080, 1600×900, 1366×768). The current size of the image is 1000x500px.
Best regards,
IsmaelOctober 18, 2019 at 10:25 am in reply to: Mysterious garbled character of only one letter in excerpt of Blog posts Element #1149194Hi,
Awesome! Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
Ismael -
AuthorPosts