Forum Replies Created

Viewing 30 posts - 28,291 through 28,320 (of 67,566 total)
  • Author
    Posts
  • in reply to: Trouble Assigning Home page with Enfold Child Theme #988568

    Hey KellyKilgallon,

    Thank you for using Enfold.

    Did you add anything in the htaccess file? Please provide the FTP details in the private field so that we could check the theme files.

    Best regards,
    Ismael

    in reply to: WP Blank dashboard #988567

    Hey matabiru,

    Thank you for using Enfold.

    The site is running on a very old version of the theme, 3.5. This version is not compatible with WordPress 4.7.5, so you have to upgrade the theme to version 4.4.1 and WP to version 4.9.7. You may need to reconfigure the theme options a bit.

    Please update the theme regularly.

    Best regards,
    Ismael

    Hi,

    Awesome! Glad Mike helped! :)

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

    Thank you for using Enfold :)

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    There are unwanted “quotes” in the markup. Please provide the admin details in the private field so that we could check it further.

    Best regards,
    Ismael

    Hey there,

    Thank you for using Enfold.

    We need to access the dashboard. Please provide a user account — an admin account if possible. Place it in the private field.

    Best regards,
    Ismael

    Hey Ganubis,

    Thank you for using Enfold.

    This script should apply a rel attribute to the single add to cart buttons. Just add it in the functions.php file.

    add_action('wp_footer', 'ava_add_rel_nofollow');
    function ava_add_rel_nofollow(){
    	?>
    	<script type="text/javascript">
    		(function($) {
    			$('.single_add_to_cart_button').attr('rel', 'nofollow');
    		})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    Hey radiance_ron,

    Thank you for using Enfold.

    There are no events after July so we created one. The “month” navigation displayed after that.

    Best regards,
    Ismael

    in reply to: Tarife für zwei zusammenhängende Websites #988560

    Hey Philipp,

    Thank you for considering Enfold.

    The regular license can be used on a single website, so you have to purchase another license if you’re going to deploy the theme on another website.

    Best regards,
    Ismael

    in reply to: Inconsistent top bar appearance and content #988559

    Hey bearsnuggle,

    Thank you for using Enfold.

    I’m not sure how it happened but the “header_transparency” and “header_title_bar” custom fields were added to the “About Us” page. We removed those custom fields manually.

    Best regards,
    Ismael

    Hey ltc_pfilsimnger,

    Thank you for using Enfold.

    Edit the color section and then adjust the “Section Minimum Height” value. You can set it to 100% of the browser window height.

    Best regards,
    Ismael

    Hey modem800,

    Thank you for using Enfold.

    You can only zoom in when the Enfold > General Layout > Dimensions > “Responsive Site” option is disabled.

    Best regards,
    Ismael

    in reply to: Stick header on mobile #988556

    Hey James,

    Thank you for using Enfold.

    This is possible but it creates a few layout issues and is quite unnecessary on mobile view if you’re just trying to make the header accessible on scroll. I’m sure you’re aware that users can easily navigate back to the top of the page on their phones. Anyway, you can try this css code.

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
        position: fixed;
    }
    }

    Best regards,
    Ismael

    in reply to: Easy Slider images size #988555

    Hey gemmajestico,

    Thank you for using Enfold.

    Set the slider’s “Slideshow Image Size” to “No Scaling” so that the actual sizes of the images will be used.

    Best regards,
    Ismael

    in reply to: Gravity form not showing field in slider caption #988554

    Hey tropsens,

    Thank you for using Enfold.

    The theme overrides the default style of the fields. Try these css codes.

    .gform_wrapper form li, .gform_wrapper li {
        overflow: visible;
        opacity: 1;
    }
    
    #top .av_inherit_color .gform_wrapper form li label, #top .av_inherit_color .gform_wrapper li label {
        color: blue;
    }
    
    #top .av_inherit_color .gform_wrapper form li {
        color: red;
    }

    Adjust the values as needed.

    Best regards,
    Ismael

    Hi,

    Adjust the css code to remove the space between the header and the main container.

    @media only screen and (min-width: 768px) {
    .responsive.html_mobile_menu_tablet #top.single #wrap_all #header {
        position: relative;
        width: 100%;
        float: none;
        height: auto;
        margin: 0 !important;
        opacity: 1;
        min-height: 0;
    }
    
    .html_header_top.html_header_sticky #top.single #wrap_all #main {
        padding-top: 0;
    }
    }

    Please open a new thread for additional inquiries.

    Best regards,
    Ismael

    in reply to: Dividing Line Between Blog Posts? #988550

    Hi,

    You can disable the author link with this css code.

    .blog-author a {
        pointer-events: none;
    }

    This one should hide the empty category container.

    .blog-categories, .blog-categories + .text-sep {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Margin/Padding for Page and Post Content? #988548

    Hi,

    Awesome! Glad we could help!

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

    Thank you for using Enfold :)

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I have applied a unique css class attribute to the columns and then added these css codes on the Quick CSS field.

    .avia-image-container-inner, .avia_image, .av-image-caption-overlay {
        width: 100%;
    }
    
    div .av_one_half.truck-column-1 {
        width: 49%;
        margin-left: 0;
        margin-top: 2%;
    }
    
    div .av_one_half.truck-column-2 {
        width: 49%;
        margin-left: 2%;
        margin-top: 2%;
    }

    Best regards,
    Ismael

    in reply to: Responsive font size, logo and menu items. #988546

    Hi,

    Add this css code.

    .av-burger-overlay-active #top #wrap_all .av-hamburger-inner, .av-burger-overlay-active #top #wrap_all .av-hamburger-inner::before, .av-burger-overlay-active #top #wrap_all .av-hamburger-inner::after, .html_av-overlay-side-classic #top div .av-burger-overlay li li .avia-bullet {
        background-color: #808080;
    }

    Best regards,
    Ismael

    in reply to: Visual Artist demo mobile devices #988545

    Hi,

    Yes, just add the css modification. The “avia-bg-style-fixed” class attribute will be automatically added to the color section when the background attachment is set to “fixed” so you don’t have to do anything else.

    We disabled the css/js compression from the Performance panel temporarily to regenerate the scripts and stylesheets. Don’t forget to remove the browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Advanced Layout Editor for Blog Post Page? #988543

    Hi,

    Thanks for the update.

    The “Articles & Videos” page was set as the posts page in the Settings > Reading panel. We reset that option to default and set the Blog Layout > Blog Layout settings to “Use the advanced layout builder…” option. You can now use the advance layout builder to edit the content of the blog page.

    Best regards,
    Ismael

    in reply to: Google Maps and 4.4.1 #988542

    Hi,

    This is the error in the console.

    js?v=3.30&key=ADD KEY HERE&callback=aviaOnGoogleMapsLoaded:41 Google Maps API error: InvalidKeyMapError https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key-map-error
    

    There’s an extra “ADD KEY HERE” strings in the “key” parameter. Did you modify the theme files?

    js?v=3.30&key=ADD KEY HERE&callback=aviaOnGoogleMapsLoaded:41
    

    Best regards,
    Ismael

    Hi,

    Thanks for the info.

    Is it working properly when the plugins are deactivated?

    Best regards,
    Ismael

    in reply to: mobile navigation #988539

    Hi,

    Odd. I’ll ask the rest of the team to check it on mobile. Please wait for their response.

    Best regards,
    Ismael

    in reply to: Header phone translation + White on header of mobile #988538

    Hi,

    I’m very sorry about that. I forgot to remove the variable dump code. It’s removed now. Please check the site again.

    Best regards,
    Ismael

    in reply to: Open Youtube videos in lightbox #987870
    in reply to: Logo over the menu and content (slider) #987869

    Hi,

    The WP login credentials are invalid. Please check it carefully. If possible, please provide a screenshot of the issue using imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Base Price in Masonry Product type #987865

    Hi,

    Thank you for the update.

    The prices of the product items in the masonry element are displaying properly. Please check the test page. (see private field)

    Best regards,
    Ismael

    in reply to: Header phone translation + White on header of mobile #987863

    Hi,

    Thanks for the update.

    We’ve added this filter in the functions.php file to change the phone value for different languages.

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header) {
        $lang = pll_current_language('slug');
        if($lang == 'fr') {
            $header['phone'] = '<a href="http://www.paradis.ealbmaquette.com/mediatheque/">Médiathèque</a> - <a href="http://www.paradis.ealbmaquette.com/presse/">Presse</a>';
        } else {
    		$header['phone'] = '<a href="http://www.paradis.ealbmaquette.com/en/library/">Library</a> - <a href="http://www.paradis.ealbmaquette.com/en/press/">Press</a>';
    	}
    
    	return $header;
    }
    

    Best regards,
    Ismael

    in reply to: mobile navigation #987860

    Hi,

    The main container’s scroll offset value is set to 210. It was set to 70 before so the filter is working. Does it affect the scrolling position on mobile view?

    Best regards,
    Ismael

Viewing 30 posts - 28,291 through 28,320 (of 67,566 total)