Forum Replies Created

Viewing 30 posts - 21,721 through 21,750 (of 67,485 total)
  • Author
    Posts
  • in reply to: Linien bei der Slide-Show auf den Satzspiegel begrenzen #1133224

    Hey herzkirschen,

    Vielen Danke, dass Sie Enfold verwenden.

    Sie konnen diesen css code im der Quick CSS field verwenden, um den abschnitt schatten entfernen.

    .avia-shadow {
    	box-shadow: none;
    }

    Lassen es uns wissen, wenn es hilft.

    Best regards,
    Ismael

    in reply to: Autosave not working corrently #1133222

    Hi,

    Thank you for the update.

    We can’t seem to reproduce the issue on our end. We activated “Revisiones” in the Screen Options. Have you tried it on another computer or network?

    Best regards,
    Ismael

    in reply to: Popup Maker and Enfold Avia Layour Builder #1133195

    Hi,

    Sorry for the delay.

    We didn’t know that you already opened a new thread.

    // https://kriesi.at/support/topic/avia-layout-builder-not-working-with-plugin-popup-maker/#post-1133191

    Provide the login details in the private field so that we can see what’s going on with the plugin. And for additional help, please contact the plugin author.

    Best regards,
    Ismael

    in reply to: Freelance Demo not responsive for phone or ipad #1133193

    Hey mclweb,

    Thank you for using Enfold.

    The cells are set to break to full width when the screen width is less than 767px. You can adjust that using the following css code.

    @media only screen and (max-width: 1024px) {
    .responsive #top #wrap_all .av-flex-cells .no_margin {
    	display: block;
    	margin: 0;
    	height: auto !important;
    	overflow: hidden;
    	padding-left: 8% !important;
    	padding-right: 8% !important;
    }
    }

    `

    Don’t forget to toggle the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Fonts not matching #1133192

    Hi,

    Thank you for the update.

    Is this the watchlist page? (see private field)

    Looks like you managed to adjust the product title or text to lowercase. Is that correct?

    Best regards,
    Ismael

    in reply to: Avia Layout Builder not working with Plugin Popup Maker #1133191

    Hi,


    @Leofiori
    : Can we access the site? Please open your own thread and post the necessary details in the private field. We’ll check the issue there.

    Best regards,
    Ismael

    in reply to: Pagination on woocommerce shop #1133184

    Hi,

    How to set when reloads it starts from top so you can scroll back to bottom?

    You can set the window’s scrollTop position to 0 on every page load. Would you like to implement that?

    function ava_scroll_on_doc_ready(){
    ?>
    <script>
    (function($){
    	$(document).ready(function() {
    		$(window).scrollTop(0);
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_scroll_on_doc_ready');
    

    Add the script in the functions.php file.

    Best regards,
    Ismael

    in reply to: Need to replace author name with guest-author if it exists #1133181

    Hi,

    Do you want to add another name beside the author? Maybe you can use custom fields for that. This plugin might help.

    // https://www.advancedcustomfields.com/

    Enable the plugin, edit the post, add a custom field called “translated_by” and use the name of the translator as the value. In the includes > loop-index.php, get the custom field using the get_field function. Above this code:

    
    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    

    ..add this:

    $translated_by = get_field('translated_by');
                            echo '<span class="blog-translator minor-meta">'.__('translated by','avia_framework')." ";
                            echo '<span class="entry-translator">';
                            if($translated_by) echo $translated_by;
                            echo '</span></span>';
    

    // https://www.advancedcustomfields.com/resources/get_field/

    Best regards,
    Ismael

    in reply to: Header Widget settings #1133177

    Hi,

    Awesome! We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Post disappeared #1133176

    Hi,

    I am sorry Ismael, I am not sure what URL you are trying to access.;

    I was trying to access the cpanel using the URL that you provided above. We can’t reach the database and remove the “ghost” post if we can’t access the cpanel. (see private field)

    Can you access the cpanel with that details?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We added this script in the functions.php file.

    function activateMenuItem(){
    ?>
    <script>
         jQuery(document).scroll(function() {      
         var sections = jQuery('.avia-section, .av-tab-section-container'),
             menu   = jQuery('.av-submenu-container'),
             nav_height = menu.outerHeight();
             jQuery(window).on('scroll', function() {
                var cur_pos = jQuery(this).scrollTop();
                sections.each(function() {
                    var top = jQuery(this).offset().top - 200,
                        bottom = top + jQuery(this).outerHeight();
    	
                    if (cur_pos >= top && cur_pos <= bottom) {
                        menu.find('li').removeClass('active-menu-item');                    
                        menu.find('a[href="#' + jQuery(this).attr('id') + '"]').parent('li').addClass('active-menu-item');
                    }
                });
            });
        });
     
    </script>
    <?php
    }
    add_action('wp_head', 'activateMenuItem');
    

    And this code in the style.css file.

    /*—————————————-
    // CSS – Fullwidth Submenu highlight active menu
    //————————————–*/
    
    /* Active menu styles */
    #top .av-submenu-container .active-menu-item,
    #top .av-submenu-container .active-menu-item a {
        background: blue !important;
        color: red !important;
    }
    
    #top .av-submenu-container .av-subnav-menu > li > a {
        border-left-style: none !important;
        border-left-width: 0px !important;
    }
    

    The active menu item should be highlighted when you scroll to its designated section.

    Best regards,
    Ismael

    in reply to: Change of screen widh to activate Mobile Menu #1133172

    Hi,

    Glad to know that you’ve found a solution. And thanks for sharing it. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold (4.5.7.1-beta-2) Form missing senders email address #1133170

    Hi,

    In the Newsletter signup form,

    What do you mean? Are you using Mailchimp signup form? Please try to delete the contact form and add a new one. Make sure NOT to delete the default email field. Unfortunately, we don’t know if the firewall settings have something to do with it.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Yeah, that’s odd. We can’t find the script that’s doing that. What you can do is prepend it back to the “entry-content” container on page load using javascript.

    // https://api.jquery.com/appendTo/

    Best regards,
    Ismael

    in reply to: Customize contact form #1133162

    Hi,

    You’re welcome. Glad we could help. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Text- and image-elements not visible when going live #1133161

    Hi,

    Odd. We can see the issue on Firefox now. Looks like the animations are not working. We had to add this css temporarily to make the elements display.

    .js_active .avia-slideshow li:first-child {
    	visibility: visible;
    }
    
    .avia_transform.avia_desktop .av-animated-generic {
    	opacity: 1;
    }
    
    .avia-slideshow li {
    	opacity: 1;
    }

    We don’t see any error, so we are not really sure why the animations are not working in your installation. Please try to upgrade the theme from v4.5.7 to v4.6. The upgrade might help fix the issue.

    Best regards,
    Ismael

    in reply to: after_section elements #1133159

    Hi,

    Thank you for the update.

    We moved the color sections around, updated the page and brought them back to their original position, then updated the page again. We did that to regenerate the shortcodes and remove the unnecessary spaces.

    Best regards,
    Ismael

    in reply to: switch to child theme #1133158

    Hi,

    Thank you for the update.

    Do you import the parent theme options after activating the child theme? Right after the theme activation, go to the Enfold > Import/Export panel and import the parent theme options.

    Yes, please create a backup of the site. Let us know when it’s ready.

    Best regards,
    Ismael

    Hi,


    @COLORIT
    : Thank you for the info. He’s referring to the default editor or the tinymce’s color picker.

    Best regards,
    Ismael

    in reply to: Bilderanzeige in "Medien" defekt nach Änderung von Widgets #1133156

    Hi,

    Danke fur das Update.

    Die Anmeldeinformationen sind falsch. Wir konnen nicht auf das Dashboard zugreifen. Bitte überprüfen Sie es sorgfältig. Sind Sie sicher, dass Sie keine cached Version der Seite suchen?

    Best regards,
    Ismael

    in reply to: Image response to tablet view #1133152

    Hi,

    Thank you for the update.

    there is no option to hide the 2nd image on a tablet as it does on a mobile?

    Yes, you’re correct. Use this css code to adjust the media condition so that the selected cells are hidden on tablet view.

    @media only screen and (max-width: 1024px) {
    .responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet {
        display: none !important;
    }
    }

    Best regards,
    Ismael

    Hi,

    This shouldn’t have needed any revision if the code was correct in the first place

    The image slides’ minimum width and left position are calculated on the fly, so they are resized differently compare to the fallback image. Yes, I agree. This calculation should be applied to the fallback image as well.

    Best regards,
    Ismael

    in reply to: What setting controls the blog post image crop #1132964

    Hi,

    Sorry for the late response.

    We can’t access the sites because they are asking for the “flywheel” credentials. Please include it in the private field. For the meantime, try to regenerate the thumbnails using the following plugin.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Newsletter form not working #1132963

    Hi,

    Thank you for using Enfold.


    @dynamicdesignsnw
    : The login details didn’t work. Please provide a valid account so that we can check the dashboard.


    @yohopower
    : Do you have the latest version of the theme (v4.6)? Please create a thread and include the necessary details in the private field. We’ll check the issue there.

    Best regards,
    Ismael

    in reply to: How to edit the Category page like as the post page? #1132957

    Hi,

    Thanks for the update.

    Do you want the archive pages to have a grid layout? You can set that in the Enfold > Blog Layout panel. Set the “Blog Layout” to “Grid Layout”. Now, this is not going to work if you’re using WooCommerce, but it doesn’t seem like that’s the case, so it’s fine.

    Best regards,
    Ismael

    in reply to: I have error with Google Search Console #1132850

    Hey honkatech,

    Thank you for using Enfold.

    Are you using the default product template? This is actually a known Woocommerce issue.

    // https://github.com/woocommerce/woocommerce/issues/22896#issuecomment-477074896

    Please follow the suggestions there.

    Best regards,
    Ismael

    in reply to: Text- and image-elements not visible when going live #1132849

    Hey Wulius,

    Thank you for using Enfold.

    The site looks fine on our end — checked it on Firefox Windows 10. See screenshot.

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

    Where are you testing it? Please provide a screenshot.

    Best regards,
    Ismael

    in reply to: Änderung Textfarbe für Untermenu #1132847

    Hey jp,

    Vielen Dank, dass Sie Enfold verwenden

    Konnen Sie uns einen Link zur Seite oder Webseite geben, damit wir die Menuitems prüfen konnen? Haben Sie versucht, die Farbe im General Styling panel zu ändern?

    LG,
    Ismael

    in reply to: Enfold (4.5.7.1-beta-2) Form missing senders email address #1132843

    Hi,

    Sorry for the delay.

    Are you saying that the value of the email field in the contact form is not being included in the email content? Please try to deactivate the plugins temporarily, then test the form again. Did you activate the recaptcha option?

    Best regards,
    Ismael

    in reply to: Enfold Masonry Blog – Modern Tribe Calendar & Other posts #1132842

    Hey amanda-mdllc,

    Thank you for using Enfold.

    and it makes the post above it vanish

    What do you mean? What post? Please provide a link to the actual page containing the masonry element so that we can inspect it. You forgot to include the site URL above.

    Best regards,
    Ismael

Viewing 30 posts - 21,721 through 21,750 (of 67,485 total)