Forum Replies Created

Viewing 30 posts - 20,821 through 20,850 (of 67,482 total)
  • Author
    Posts
  • in reply to: Reader View in Safari and Firefox Shows Cookie Texts #1150076

    Hey OPTIMAL,

    Thank you for the inquiry.

    We are able to reproduce the issue on our end, but we don’t have any quick solutions yet. We will forward the thread to the team. We’ll let you know once we found a fix.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The css code doesn’t work because labels are hidden in the contact form. You have to replace it with this css code.

    .error::after {
    	content: 'Please fill empty fields.';
    	color: red;
    }

    Best regards,
    Ismael

    in reply to: Add Custom Labels to Avia Layout Builder Elements? #1150072

    Hi,

    @mikabodesign: Looks like you’re trying to display the content of code block element. This is possible, but we don’t really think that everyone would want this. Maybe a display toggle where you can choose whether to display the content of the block or not will help. Anyway, thanks for sharing. We’ll forward this info to the team for further consideration.

    Best regards,
    Ismael

    in reply to: 502 errors #1150070

    Hi,

    Thank you for the update.

    Did you enable the default Product gallery in the Enfold > Shop Options panel? The error occurs because the “product_gallery” option is not properly set. Please try to toggle the gallery options, then save the settings. You can also edit the config-woocommerce > config.php file, look for this code around line 187:

    		//	Fallback, if options have not been saved
    		if( empty( $options['product_gallery'] ) )
    		{
    			$options['product_gallery'] = '';
    		}
    
    

    .., then replace it with:

    		//	Fallback, if options have not been saved
    		if( isset( $options['product_gallery'] ) && empty( $options['product_gallery'] ) )
    		{
    			$options['product_gallery'] = '';
    		}
    
    

    Let us know how it goes.

    Best regards,
    Ismael

    in reply to: Header links font changes on different pages #1150067

    Hi,

    Thank you for the update.

    We can’t seem to reproduce the issue on Chrome Windows 10. Where are you testing it? The font weight of the h1 tag is always set to 700. Did you add this css code?

    #top #wrap_all .all_colors h1 {
    	letter-spacing: -0.03em;
    	font-weight: 700 !important;
    }

    This is what we see on our end.

    Screenshot: https://imgur.com/a/GWDD1ft

    Best regards,
    Ismael

    in reply to: Trying to get property of non-object #1150066

    Hi,

    The use of WP-CLI is standard for developers who work professionally (and I thought you do). It frightens me that you don’t seem to be using it.

    I don’t think WP-CLI can be really useful in theme development. It is usually use by site managers to streamline their maintenance process. And also use to automate site creation in a managed hosting environment. It doesn’t really provide any advantage on theming, which is what we do, unless you’re doing devops aside.

    . The command wp cache flush alone triggers ~50 identical

    What kind of values are you saving in the cache object? And what kinds of errors are you getting from using the wp cache flush command?

    Best regards,
    Ismael

    in reply to: Different appearance on mobile devices than on desktop #1150064

    Hi,

    Thank you for the update.

    Looks like S8+ has larger screen resolution (1440 x 2960) compare to other devices. Try to increase the max-width value in the css media query.

    @media only screen and (max-width: 1440px) {
        .home .avia-builder-el-60 {
            vertical-align: middle !important;
            padding: 25px !important;
        }
    }

    Best regards,
    Ismael

    in reply to: WooCommerce product filters #1150063

    Hi,

    Thank you for the update.

    We edited the shop page and set the Indeling > Zijbalken settings to the third option. That should enable the right sidebar in the shop page. You can also select the widget area manually.

    Best regards,
    Ismael

    in reply to: The font is displayed incorrectly. #1150060

    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,
    Ismael

    in reply to: Add Categories to home page blog feed #1149862

    Hi,

    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,
    Ismael

    in reply to: WP caught error in admin-ajax after upgrading to 4.6.2? #1149861

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: contact form changes #1149838

    Hi,

    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,
    Ismael

    in reply to: cookie consent problem on one page site #1149834

    Hi,

    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,
    Ismael

    in reply to: masonry gallery issue when mage is open #1149830

    Hi,

    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,
    Ismaele

    in reply to: Mobile Menu stuck #1149826

    Hi,

    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,
    Ismael

    in reply to: How do I prevent .ru from contact form #1149724

    Hi,


    @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,
    Ismael

    in reply to: Achieving a look from another theme in Enfold #1149722

    Hi,

    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,
    Ismael

    in reply to: Google Map " For Development purpose only" #1149720

    Hi,

    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,
    Ismael

    in reply to: Verlinkte Spalten einen Linktext bzw. Title Tag geben #1149718

    Hi,

    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,
    Ismael

    in reply to: Offset for sticky header on mobile #1149717

    Hi,

    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,
    Ismael

    in reply to: header widget help #1149716

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Magazine excerpt #1149702

    Hi,

    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,
    Ismael

    in reply to: Contact form #1149697

    Hi,

    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,
    Ismael

    in reply to: GDPR again – How to make a proper cookie-consent #1149691

    Hi,

    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,
    Ismael

    in reply to: Cookie concent bar on mobile and tablet #1149689

    Hi,


    @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,
    Ismael

    in reply to: Create a slide (texts) in top bar #1149681

    Hey!

    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,
    Ismael

    in reply to: Fullwidth slider with png images fade animation issue #1149679

    Hi,

    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,
    Ismael

Viewing 30 posts - 20,821 through 20,850 (of 67,482 total)