Forum Replies Created

Viewing 30 posts - 29,461 through 29,490 (of 67,591 total)
  • Author
    Posts
  • in reply to: Blog-Layout #965250

    Hi,

    The translation of the standard and modern business in the language file is the same. Please install the Loco Translate plugin then search for the “Default (Business)” and “Modern (Business)” strings. Translate them accordingly. We’ll forward the issue to the development team.

    Best regards,
    Ismael

    in reply to: Icon title "inside" icons in list #965248

    Hi,

    Thanks for the update. I’m getting 502 errors intermittently so I can’t configure the settings. Please contact your hosting provider and disable the cache and minification plugins temporarily.

    Best regards,
    Ismael

    in reply to: Different Logo in the Header for mobile version #965244

    Hi,

    Thanks for the update. Please add this script along with the previous one. Don’t forget to use the actual IMAGE URL.

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    	?>
    	<script type="text/javascript">
    		(function($)) {
    			$(document).ready( function() {
    				if($(window).innerWidth() <= 1024){
    					$('.logo img').attr('src', 'IMAGE URL HERE');
    				}
    			});
    		})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: No website after update #965237

    Hi,

    Thanks for the update.

    This reply is from another support thread.

    Issue solved with the help of the support, it was due to and old setting in apache, which killed the user’s app if they reached a certain memory level

    Please try to increase the memory limit from 128M to at least 256M and then upgrade the theme from 4.2.4 to version the latest version, 4.4. Let us know if it helps. Make sure that the PHP version is 5.6 or higher.

    Best regards,
    Ismael

    in reply to: Portfolio Lightbox #965230

    Hi,

    Thank you for using Enfold.

    1.) Glad that you figured this out! :)

    2.) Use the following css codes to change the color, opacity and size of the overlay.

    #top .main_color .image-overlay .image-overlay-inside:before {
        background-color: red;
        color: blue;
        border-color: green;
    }
    
    .image-overlay .image-overlay-inside:before {
        border-radius: 50px;
        height: 40px;
        width: 40px;
        line-height: 40px;
        margin: -20px 0 0 -20px;
    }

    3.) And use this for the grid content container.

    .main_color .grid-content {
        background-color: #ffffff;
        color: #cccccc;
    }
    
    .main_color .grid-entry-title {
        background-color: #ffffff;
        color: red;
    }

    Best regards,
    Ismael

    in reply to: Multiple Shop Theme Questions #965223

    Hi,

    Thank you for the update.

    1.) Combine this css code with the previous one.

    .header_color input[type='submit']:hover {
        color: gray;
    }

    2.) The price is already center aligned when I checked. :)

    4.) I’m sorry. That is the only image option of the product category by default. If you like, you can hide the image on the actual product category page with this css code.

    .tax-product_cat .page-thumb {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: How to change single post layout in v4.4 #965215

    Hey Gitte,

    Thank you for using Enfold.

    I don’t think you’ll be needing PHP modifications here because the arrangement of the elements (image, title, post meta etc) of the default layout is already set in accordance to your specification or screenshot. Just add this css code to center align the title and the post meta info.

    article .entry-content-header {
        text-align: center;
    }

    Best regards,
    Ismael

    in reply to: Content Slider element – no mobile swipe navigation #965212

    Hey Slade,

    Thank you for using Enfold.

    The swipe trigger is based on the next and previous arrow so the swipe functionality won’t work if these arrows are missing. You have to modify the config-templatebuilder > avishortcodes > contentslider > contentslider.php file to make these arrows display by default regardless of the options. You can toggle the visibility with css. Look for this code around line 66.

    if($navigation == 'arrows') $output .= $this->slide_navigation_arrows();
    

    Replace it with..

    $output .= $this->slide_navigation_arrows();
    

    Best regards,
    Ismael

    in reply to: Transparent header mobile devices. New Thread! #965206

    Hi,

    That is the default header layout on mobile view. If you’re looking for a way to change the logo, you can set a default logo for non-transparent header and another logo for the transparent headers. You’ll find that option in the Enfold > Header > Transparency Logo. We don’t recommend fixed headers on mobile view because it creates more issues.

    Best regards,
    Ismael

    in reply to: missing previous and next post navigation on fullwidth #965200

    Hi,

    Thanks for the update. The avia post navigation is not displaying when the footer is set to display a page. We had to modify the footer.php file and move the avia_post_nav function above the footer page. We’ll forward the issue to the development team.

    We moved this block of code on line 48.

    if(avia_get_option('disable_post_nav') != "disable_post_nav")
    		{
    			//display link to previous and next portfolio entry
    			echo avia_post_nav();
    		}
    

    Best regards,
    Ismael

    in reply to: Color Section video playing audio #965178

    Hey feoleb,

    Thank you for using Enfold.

    The background video in a color section should be muted by default. Where can we see the color section with the background video?

    Best regards,
    Ismael

    in reply to: Active Mobile menu on tablet #965177

    Hey QuebecomWeb,

    Thank you for using Enfold.

    By default, the mobile menu will only display when the screen width is equal or more than 989px. Use these css codes to toggle the mobile menu earlier.

    // https://pastebin.com/ggcJ1mh5

    Best regards,
    Ismael

    in reply to: Add Whatsapp Icon to header #965176

    Hi,

    You can upload another font zip as long as the font name is different. In the fontello.com site, look for the “font name” field beside the “Download webfont” button.

    Best regards,
    Ismael

    in reply to: Masonry element – link to featured image per default #965175

    Hey webcenter,

    Thank you for using Enfold.

    There is another way but you have modify the core or parent theme files which is not recommended. Edit the config-templatebuilder > aviashortcodes > av-helper-masonry.php file, look for this code around line 579.

    if($custom_url)
    					{
    						$this->loop[$key]['url'] = $custom_url;
    					}
    					else
    					{
    						$this->loop[$key]['url'] = wp_get_attachment_image_src($id, apply_filters('avf_avia_builder_masonry_lightbox_img_size','large'));
    						$this->loop[$key]['url'] = reset($this->loop[$key]['url']);
    					}
    

    Replace it with this code.

    $this->loop[$key]['url'] = wp_get_attachment_image_src($id, apply_filters('avf_avia_builder_masonry_lightbox_img_size','large'));
    

    Best regards,
    Ismael

    in reply to: Full-width Sub-Menu on all pages. #965170

    Hi,

    Thanks for the update. Have you tried this one?

    add_action( 'ava_after_main_container', 'ava_after_main_container_mod', 10 );
    function ava_after_main_container_mod() {
    	$output  = '';
    	$output .= do_shortcode("[av_submenu which_menu='' menu='6' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled' av_uid='av-7sgq']
    [av_submenu_item title='Menu Item 1' av_uid='av-1qu' link='' linktarget='no' button_style='']
    [av_submenu_item title='Menu Item 2' av_uid='av-41hu' link='' linktarget='no' button_style='']
    [/av_submenu]";
    	echo $output;
    }
    

    The “ava_after_main_container” hook renders anything below the header.

    Best regards,
    Ismael

    in reply to: Contact form spam with privacy policy message = false #965167

    Hey essjb,

    Thank you for using Enfold.

    I’m not really sure how they’re getting past the contact form. Have you tried installing Sucuri? This article might help.

    // http://www.wpbeginner.com/opinion/sucuri-review-how-sucuri-helped-us-block-450000-wordpress-attacks-in-3-months/

    Best regards,
    Ismael

    in reply to: Video images have resized out of proportion #965163

    Hey Neil,

    Thank you for using Enfold.

    Looks like you’re using the default WP video shortcode. We had to add this css code to adjust the width.

    .wp-video {
        width: 100% !important;
    }
    

    Please remove browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: WPML flags missing #965161

    Hi,

    The value of the languages’ “country_flag_url” parameter is missing. Did you add any modifications to the theme?

    Best regards,
    Ismael

    Hi,

    The space is created by this css code.

    #socket {
        background: transparent;
        top: -55px;
        margin-bottom: -56px;
    }

    Please adjust the previous css code a bit.

    #footer {
        background-size: cover;
        background-color: transparent !important;
        background-position: center bottom;
        padding-bottom: 70px;
    }
    
    #socket {
        background: transparent;
        margin-top: -70px;
    }

    Best regards,
    Ismael

    Hi,

    Alright. Please create a test post with the images. Are you inserting them as gallery?

    Best regards,
    Ismael

    in reply to: Settings in Styling Extra keep resetting #965145

    Hi,

    as long as I leave all the elements that I’ve changed, open in Stylings Extra

    It’s not a bug. Clicking the “X” button will cancel or remove the styling out. Is that what you’re doing before?

    Best regards,
    Ismael

    Hi,

    What is the login url? We tried “wp-admin” and “wp-login” but those pages don’t exist. Please provide the login url in the private field.

    Best regards,
    Ismael

    in reply to: Since update Layout Builder hangs after Draft Safe #965138

    Hi,

    Thanks for the update. The login credentials are invalid though. Please check it carefully. Did you create a custom script to change the attribute on page load? Please post the script on pastebin.com.

    Best regards,
    Ismael

    in reply to: Navigation Title in Footer Menu instead of post_title #965135

    Hi,

    Thanks for the update.

    if you tell me which function retrieves the page title for the breadcrumb menu and for the footer menu

    It’s called the “avia_title” function in the functions-enfold.php file. The footer menu is inside the footer.php file. Look for the “wp_nav_menu” function.

    Best regards,
    Ismael

    in reply to: View as Google shows almost nothing #965131

    Hi,

    Thank you for the info.

    Those scripts are actually from Google. They don’t need to be crawled. As you may have noticed, it’s importance is set to Low.

    Best regards,
    Ismael

    Hi,

    We adjusted the code a bit. Please remove browser cache prior to checking the page.

    Best regards,
    Ismael

    in reply to: Layout problems #965115

    Hi,

    Thanks for the update.

    The posts’ featured images were not set. You have to set the feature image first. Look for the “Beitragsbild” box.

    // https://en.support.wordpress.com/featured-images/

    Best regards,
    Ismael

    • This reply was modified 7 years, 11 months ago by Ismael.
    in reply to: Masonry problem #964881

    Hey modulexlam,

    Thank you for using Enfold.

    Have you created portfolio categories? You need to apply categories to the portfolio items. The masonry elements will automatically display those categories as sort buttons.

    Best regards,
    Ismael

    in reply to: Back in Maintenance Mode #964880

    Hi,

    Thanks for the update. The login credentials are invalid though. Please check it carefully. Have you managed to activate or revert the theme? Please ask your hosting provider to create a backup or a restore point in case something like this happens again.

    Best regards,
    Ismael

    in reply to: Search function not working since 4.4 #964876

    Hi,

    Thank you for using Enfold.

    The pagination url is incorrect. Did you do a redirect in the htaccess file? Or installed a redirect plugin?

    Best regards,
    Ismael

Viewing 30 posts - 29,461 through 29,490 (of 67,591 total)