Forum Replies Created

Viewing 30 posts - 22,351 through 22,380 (of 66,745 total)
  • Author
    Posts
  • in reply to: Search in German #1105564

    Hi,

    Great! Glad it’s resolved. We’ll close this thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: 3 columns grid not responsive #1105562

    Hi,


    @fulanoinc
    : Thank you for the update. Please continue on the next thread. We’ll close this one.

    Best regards,
    Ismael

    in reply to: Header überlagert Sektion darunter #1105560

    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

    Hi,

    Yes, we need to have access to the dashboard. Please post it in the private field of the new thread. We’ll close this one.

    Thank you for the update.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We are not able to debug the issue because the login token has expired. You can keep the dawn_content_filter for the meantime.

    Best regards,
    Ismael

    in reply to: Cant change widgets or menu #1105554

    Hi,

    Thanks for the update.

    We can still see a lot of errors in the console and the scripts are still concatenated. Are you sure that the “CONCATENATE_SCRIPTS” is already set to false? Please post the FTP details in the private field so that we can debug the issue further.

    Best regards,
    Ismael

    in reply to: flyout menu coloring #1105550

    Hi,

    We added this css code at the very top of the Quick CSS field.

    #top #wrap_all #header .av-burger-overlay #av-burger-menu-ul .current-menu-parent > a {
        color: red !important;
    }

    Please adjust the color value and don’t forget to remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Contact form : validation message #1105548

    Hi,

    Thank you for the info.

    We can see that there’s an error in loading the response messages but we are not sure what’s causing it, yet. Can you give us access to the file server? Please post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Lay out issue #1105545

    Hi,

    The pdf file is no longer available. Could you send it again? Or you can upload the screenshot to imgur.

    Thanks for the update.

    Best regards,
    Ismael

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

    Hi,

    Closing. :)

    Best regards,
    Ismael

    Hi,

    No problem. We’ll close this now. @guenter is currently improving the reCAPTCHA script, and it will probably be included in the next patch.

    Best regards,
    Ismael

    in reply to: Testimonials gone and Video Widget #1105435

    Hi,

    The theme doesn’t contain that widget by default. It’s from a plugin or a custom script on your installation. Please check it carefully.

    I have already asked the team to check the thread, but I’ll try to ask again.

    Best regards,
    Ismael

    in reply to: Mobile view: Colour section and the Overlay Text #1105434

    Hi,

    so there is no way of bumping the overlay text below the image in mobile view?

    That is not possible, unfortunately. The overlay and the background image belong to the same container.

    And how to add the extra image above the area only in mobile view

    Use the elements’ Screen Options. Just insert another image element and adjust the Screen Options to toggle its visibility.

    Best regards,
    Ismael

    in reply to: Tabbed Section On Mobile #1105433

    Hi,

    You’re welcome! Glad we could help.

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    And don’t forget to bookmark the Enfold Documentation for future reference.

    Thank you for using Enfold.

    Best regards,
    Ismael

    in reply to: Resize Shop Thumbnail #1105432

    Hi,

    Thanks for the update.

    We added the code in the functions.php file and it seems to be working properly. The size of the product thumbnail in the catalogue page is 200x300px while retaining the actual thumbnail size in the single product pages.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    Did you set the blog page in the Settings > Reading panel? Please reset those options to default and then adjust the blog layout settings in theme options again. The account above has no admin rights so we were not able to edit the settings.

    Best regards,
    Ismael

    in reply to: blog element shows other posttypes #1105428

    Hi,

    Thanks for the info.

    You should use the “tribe_events_cat” as the taxonomy value instead of “category”.

    // exclude events in blogposts
    add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2);
    function avia_blog_post_query_mod($query, $params) {	
    	$query['tax_query'][] =
            [
                'taxonomy' => 'tribe_events_cat',
                'field'    => 'name',
                'terms'    => 'termin',
                'operator' => 'NOT IN',
            ];
    
        return $query;
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Install the following plugin and use it to adjust the text translation.

    // https://wordpress.org/plugins/loco-translate/

    You can also edit the language file manually using the POEdit software if you prefer.

    // https://poedit.net

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It seems to be working properly. Check the test post in the private field. Are you adding the info in the custom fields? The plugin has an actual meta box for the university info at very bottom of the editor. You should use that instead. We disabled the custom fields temporarily.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Do you need the animation or fade in effect of the milestones? If you don’t need to see the animation, use this css code.

    .avia_transform.avia_desktop .av-milestone.av-animated-generic {
        opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Two Line Name on Main Menu Tab #1105370

    Hi,

    Thank you for the update.

    Try to wrap the second word inside a span tag. Example:

    
    Getting<span class="s_line">Started</span>
    

    And then add this css code.

    .s_line {
        position: absolute;
        top: 18px;
        left: 13px;
    }

    Best regards,
    Ismael

    in reply to: Increase Top Bar Height and Font Size #1105356

    Hi,

    Sorry for the delay.

    1-2.) Use this css code to adjust the height of the top bar.

    #header_meta {
        min-height: 60px;
    }

    You may need to adjust the line height of the elements inside that container as well.

    #header_meta .phone-info {
        line-height: 60px;
        font-size: 18px;
    }

    That code also increases the font size of the phone number.

    3.) It’s possible to add a widget inside the header.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    If you want to put the widget in the top bar, replace the “ava_after_main_menu” with “avia_meta_header” hook.

    4-5.) The following article should help:

    // https://css-tricks.com/the-current-state-of-telephone-links/

    We don’t usually entertain multiple questions in a single thread because it makes it quite confusing for other users who may be looking for the same answer. Please open a single thread for each of your inquiry next time. Thank you for understanding.

    Best regards,
    Ismael

    in reply to: LayerSlider WP #1105354

    Hey Enfold-User,

    Thank you for using Enfold.

    We translated your inquiry from German to English but the translation is a bit unclear, so we can’t understand it. Can you provide a screenshot of the issue? You can upload the screenshot to imgur or dropbox.

    Best regards,
    Ismael

    in reply to: ajax search not working #1105341

    Hi,

    Thanks for the update.

    The AJAX search seems to be working properly, displaying the appropriate posts in the search results page. Is this fixed? Did you disable the SearchWP plugin?

    Best regards,
    Ismael

    in reply to: Modern Blog: Change link to author #1105340

    Hey Tobias,

    Thank you for using Enfold.

    You can edit the includes > loop-index.php file. Look for this code around line 181:

    $blog_meta_output = "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
    

    Set the href attribute to “get_permalink()”. Or replace the code with:

    $link = get_permalink();
                    $blog_meta_output = "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
    

    Best regards,
    Ismael

    in reply to: Custom Error 404 Page #1105339

    Hi,

    Thank you for the update.

    Did you go to the “https://build.envato.com/create-token/&#8221; page to generate a token? That token should cover every theme or item that you own. Make sure that you check the required permissions.

    View and search Envato sites (checked by default)
    View your Envato account username
    View your email address
    View your account profile details
    Download your purchased items
    Verify purchases of your item
    List purchases you’ve made

    Best regards,
    Ismael

    in reply to: Display problems on sharing links on pages #1105338

    Hi,

    We would like to apologize for the delay.

    The height of the iframe is set to 522px. Have you tried removing that attribute so that iframe height is set based on its content?

    Best regards,
    Ismael

    in reply to: Issue with Header Overlay – Mobile iOS & Android #1105336

    Hi,

    Thank you for the update.

    Did you apply a background image to the section after the first one? The background attachment is set to parallax, but there is no background image. You should reset the “Background Attachment” settings to “Scroll”.

    Best regards,
    Ismael

    in reply to: portfolio item image zoom #1105334

    Hi,

    That is a fixed background. Add a color section element, set the minimum height to 100% and add a section background. Set the “Background Attachment” settings to either parallax or fixed.

    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: Category-Handling #1105333

    Hi,

    Thank you for the update.

    The following plugin is an extension of the default category widget. You can use that instead.

    // https://wordpress.org/plugins/extended-categories-widget/

    If you prefer not to use that, try this one to adjust the sort order of the taxonomy terms.

    // https://wordpress.org/plugins/taxonomy-terms-order/

    Best regards,
    Ismael

Viewing 30 posts - 22,351 through 22,380 (of 66,745 total)