Forum Replies Created

Viewing 30 posts - 23,161 through 23,190 (of 67,510 total)
  • Author
    Posts
  • in reply to: BIG MENU mit mehreren Bildern #1105035

    Hi,

    Thanks for the update.

    Did you set the menu color to white? The menu items are not visible because they have the same color as the background. And we don’t see the “Design” menu item. Did you remove it?

    If you want to adjust the menu color, go to the General Styling panel or use this css code.

    #top #wrap_all .header_color.av_header_transparency, #top #wrap_all .header_color.av_header_transparency .phone-info.with_nav span, #top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text, #top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-subtext {
        color: #ff0000;
    }

    Best regards,
    Ismael

    in reply to: Add slogan next to Logo #1105026

    Hi,

    But this gives me too much space on top and bottom – you might want to take a look.

    Try to remove the widget padding.

    #top #header #header_main .widget {
        padding: 0;
    }

    ALSO: I still don’t have a solution that the font is not showing in font-weight 200 but fat.

    That font weight is not available for that font. You should set it to 100 instead.

    #top #wrap_all #text-7 .textwidget h1 {
        font-weight: 100;
    }
    

    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

    Hi,

    Could you post the actual link to the thread? We can’t access it using that id. And please don’t forget to add the necessary login details so that we can debug the issue if needed.

    Best regards,
    Ismael

    in reply to: Blog Header images not rendering correctly on mobile #1104821

    Hi,

    We can’t reproduce the issue on our own installation, so it’s probably cause by a custom css modification. You can override it with this css code.

    
    @media only screen and (max-width: 767px) {
        .responsive #top.template-page .big-preview {
            padding: 0 0 10px 0;
        }
    }
    

    This is what we need to override because it pushes the preview image.

    .template-page .big-preview {
        display: block;
        padding: 0 0 10px 131px;
        text-align: center;
    }

    Best regards,
    Ismael

    in reply to: Masonary Grid only shows some product Categories #1104816

    Hi,

    I see. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day. And thank you for your patience.

    Best regards,
    Ismael

    in reply to: 3 columns grid not responsive #1104815

    Hi,


    @fulanoinc
    : Did you use the “avf_alb_supported_post_types” filter? Please open a new thread with the necessary details so that we can inspect the issue.


    @isee
    : Thank you for the confirmation.

    Best regards,
    Ismael

    in reply to: av_toggle_container in the Ajax portfolio preview #1104811

    Hi,

    Great! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads

    And bookmark Enfold Documentation for future reference.
    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Request for help with article categories #1104807

    Hi,

    You’re welcome. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: CHANGE WOOCOMMERCE PRODUCT-CAT ORDER #1104806

    Hi,

    Alright. Glad that you found a solution. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Fixed Frame > Content alignment in the tab section #1104805

    Hi,

    Thanks for the info.

    The content of the tab section are center aligned on Chrome Windows 7.

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

    Where are you testing it?

    Best regards,
    Ismael

    in reply to: Troubles with BLOG #1104795

    Hi,

    Thanks for the update.

    We edited the code a bit to exclude the single post page or prevent duplicating the content. The sub menus are now displaying in the archive and single post pages. (see private field)

    add_action( 'ava_after_main_title', 'ava_after_main_title_mod' );
    function ava_after_main_title_mod() {
    	$the_id = null;
    
    	if( is_archive() ) {
    		$the_id = 8416;
    	} else if( is_category() ) {
            $the_id = 8420;
        } else if( is_single() ) {
            $the_id = 8412;
        }
    
    	// } else if( avia_get_option('blogpage') == get_the_ID() ) { // the blog page
        //     $the_id = 8412;
        // }
    
    	$post = get_post( $the_id );
    
    	if( ! $post instanceof WP_Post || $post->ID == get_the_ID() ) {	
    		return false;	
        }
    
    	$content = Avia_Builder()->compile_post_content( $post );
    	echo $content;
    }

    Best regards,
    Ismael

    Hi,

    Strangely, one cannot edit the functions.php file of my child theme from the admin panel via “Appearance > Editor”.

    UPDATE: Please post the FTP details in the private field so that we can edit the file.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I can’t reproduce the issue on my end. The “marketplace=amazon&region” remains as is when I edit the text blocks and update the page.

    Where did you add the snippet? The functions.php file is blank and there is no PHP snippet plugin installed.

    Best regards,
    Ismael

    in reply to: Resize Shop Thumbnail #1104730

    Hi,

    Sorry for the confusion.

    Try to add a conditional function to the “woocommerce_get_image_size_thumbnail” filter.

    add_filter( 'woocommerce_get_image_size_thumbnail', function( $size ) {
        if( ! is_singular('product') ) {
            return array(
                'width'  => 200,
                'height' => 300,
                'crop'   => 0,
            );
        }
    
        return $size;
    } );

    This should only set the width to 200px on catalogue or product archive pages.

    Best regards,
    Ismael

    in reply to: Extra Elements #1104729

    Hi,

    Thanks for the update.

    It works properly on our end. Please post the FTP details in the private field so that we can edit the functions.php file.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Where did you add the code? We can’t find it in the functions.php file. And you haven’t applied a unique ID to the section containing the masonry element.

    Best regards,
    Ismael

    in reply to: Woocommerce Single Product Page Sidebar #1104727

    Hi,

    Thanks for the update.

    It is working properly on our end. Do you have a test page where we can see the issue?

    Best regards,
    Ismael

    in reply to: Cant change widgets or menu #1104726

    Hi,

    Thanks for the update.

    Do you see any errors in the page? We would like to check it again but the previous credentials are no longer working. Please provide another login account.

    Best regards,
    Ismael

    Hey!

    We answered here:

    // https://kriesi.at/support/topic/spam-emails-being-set-through-contact-forms/#post-1104723

    Have you tried the actual recaptcha option in the theme? You’re probably referring to the plugin version of the recaptcha widget, which is now integrated in the theme and is using the database transient option to block spams. That layer is not available in the plugin version.

    If you have more questions, please kindly your own ticket or thread.

    Best regards,
    Ismael

    in reply to: Spam emails being set through Contact Forms #1104723

    Hi,

    Thanks for the update.

    There were a few users who confirmed that the security option stopped the spam emails sent from their contact forms. Could you give us a link to the contact page so that we can inspect it?

    Anyway, the dev team is currently improving the reCAPTCHA option, but there’s no plan on including a honeypot option if I am not mistaken.

    Best regards,
    Ismael

    in reply to: A question to a developer – … #1104721

    Hi,

    Thanks for the update.

    I’m not really sure how that’s related to the sliders though.

    Best regards,
    Ismael

    in reply to: Default Sidebar for Category or User #1104720

    Hi,

    Thanks for the update.

    Have you tried editing the single.php file? Just wrap this line of code in a conditional function.

    //get the sidebar
    get_sidebar();

    // https://codex.wordpress.org/Function_Reference/has_category

    Best regards,
    Ismael

    Hi,

    @eC: It was not addressed in the latest version because users don’t seem to encounter the issue a lot. This is the only related thread or ticket so far. Please create a new thread so that we can inspect your site separately. Provide the necessary details in the private field. We’ll close this thread now.

    Best regards,
    Ismael

    in reply to: stretch image in mobile home page #1104717

    Hi,

    Thanks for the update.

    Could you give us a screenshot of that section? We don’t see anything in the page other than the slider even on mobile view. You can use imgur or dropbox for the screenshot.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Why did you put the shortcodes in the default editor? You can’t use a color section or any full width elements inside the default editor. Please switch to the advance layout builder.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    That code should go in your functions.php file. An example of the code can be found in the following thread, but instead of the “avia-default” file or handle, you have to deregister the “avia-shortcodes” and register it back using the child theme path or directory.

    // https://kriesi.at/support/topic/custom-avia-js-in-child-theme/#post-1060668

    Best regards,
    Ismael

    in reply to: Change size of Tab Section tab images #1104713

    Hi,

    Yes, it’s possible. Just add this css code to remove the grayscale effect.

    .av-tab-section-image {
        filter: grayscale(0);
    }

    Thanks for the update.

    Best regards,
    Ismael

    in reply to: Blog Header images not rendering correctly on mobile #1104693

    Hi,

    Thanks for the update.

    Is the site using the latest version (4.5.7) of the theme now? A fix for the blog overview page has been included in that version. Please upgrade the theme if you haven’t already, and then toggle the css minification option. Don’t forget to purge or remove the cache and browser history.

    Best regards,
    Ismael

    in reply to: Newsletter: adding legal information #1104689

    Hi,

    Have you tried using the mailchimp default embed form? It has a GDPR support or option.

    // https://mailchimp.com/help/add-a-signup-form-to-your-website/

    You don’t actually need a checkbox there if I am not mistaken. All you need to do is explicitly inform those who have the interest to subscribe to your newsletter that you will be collecting some of their data.

    // http://www.privacy-regulation.eu/en/article-5-principles-relating-to-processing-of-personal-data-GDPR.htm

    You can create a text block with a link to the privacy policy page or notification saying that necessary data is going to be collected when they subscribe to the newsletter. Of course, you have to consult with the proper authority to confirm this.

    Best regards,
    Ismael

    in reply to: Edit Blog heading h1 and Sidebar #1104678

    Hi,

    Thank you for using Enfold.

    1.) Set the Enfold > Blog Layout > Blog Layout to “Use the advance layout builder (ALB)…” so that you can manually edit the blog page using the ALB. You can add a special heading element on top of the blog posts element.

    2.) Use this css code to adjust the style of the post categories.

    .html_modern-blog #top .post-entry .blog-categories {
        text-align: left;
        top: -25px;
        font-size: 14px;
        font-weight: 700;
    }

    Best regards,
    Ismael

Viewing 30 posts - 23,161 through 23,190 (of 67,510 total)