Forum Replies Created

Viewing 30 posts - 37,351 through 37,380 (of 66,745 total)
  • Author
    Posts
  • in reply to: Standard Editor on post loads archive page #740475

    Hi,

    I deactivated every plugins in the site but it’s still the same. Did you modify any of the theme files? Please post the FTP details here and we’ll check it further.

    Best regards,
    Ismael

    in reply to: responsive behaviour #740474

    Hey td8000!

    Thank you for using Enfold.

    1.) Did you add any css modifications for the header? Try to adjust the top margin of the slideshow to prevent if from being covered by the header container.

    @media only screen and (max-width: 767px) {
         .av_slideshow_full.avia-slideshow {
             margin-top: 50px;
         }
    }

    2.) Yes, this is possible. Add this in the Quick CSS field.

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

    3.) Could you please provide a screenshot of the site from your device?

    Best regards,
    Ismael

    in reply to: Blogpost settings #740472

    Hey idespiran!

    Thank you for using Enfold.

    1.) You can remove the widget thumbnail with this css code.

    .news-thumb {
        display: none;
    }

    2.) Set the masonry’s Size Settings to Flexible Masonry and make sure that featured images have the same size and ratio. The default thumbnail size used in the masonry element is 495x400px.

    3.) Please add this in the Quick CSS field to decrease the space between the text and the rounded image.

    p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
        margin-top: .5em;
    }

    Cheers!
    Ismael

    in reply to: Mailchimp Integration Stopped Working Again #740471

    Hey!

    Thank you for the info.

    The configurations in the .htaccess file are duplicated. We created a new .htaccess file and then renamed the previous file to “.htaccessbak” which contains the invalid configuration. I’m not sure if this actually created the issue but the mailchimp API is working now.

    // https://www.accuritpresence.com/test/

    Regards,
    Ismael

    in reply to: Changes are not being reflected on Chrome and Edge #740469

    Hi!

    We are very sorry about that. We’ll try our best to provide faster assistance in the future. If you don’t mind me asking, what is the cause of the issue?

    Cheers!
    Ismael

    in reply to: Using posts to create a flip card? #740468

    Hey Dave!

    Thank you for using Enfold.

    The “flip” effect requires “back” and “front” container which are not present in the postslider’s markup. You’ll need to modify the structure of the element if you want to apply the effect. The file is located in the config-templatebuilder > avia-shortcodes directory, look for the postslider.php file.

    Best regards,
    Ismael

    in reply to: Transparent header on blog page #740467

    Hey!

    Thank you for the update.

    There is a color section on top of the section with the image. Please try to shuffle the position of the section, update the page then revert them back to the original. Or post the login details here so that we can check the page.

    Cheers!
    Ismael

    Hi!

    If you have the time, please remove the css modification that we provided then try this code in the functions.php file.

    // rtl submenu fix
    function ava_custom_script_rtl_submenu() {
    ?>
    	<script type="text/javascript">
    	(function($) {
    		function a() {
    			$('.html_header_right .rtl .av-main-nav li').on('mouseover', function(e) {
    				var lheight = 0,
    					second = $(this).find('ul'),
    					third  = second.find('ul');
    
    					$(second).find('> li > a').each(function() {
    					   lheight += $(this).height();
    					});
    
    					third.css('top', lheight);
    			});
    		}
    
    		a();
    	})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_rtl_submenu');

    Remove browser cache or hard refresh before checking the page.

    Best regards,
    Ismael

    in reply to: display bug in the admin since upgrading to 3.8 #740463

    Hey!

    Great! Let us know if you encounter any issues again.

    Best regards,
    Ismael

    in reply to: problem with update #740462

    Hi!

    I’m sorry but the screenshot does not exist. What is the issue again? The “Eventi” button is working fine.

    Regards,
    Ismael

    in reply to: Interaction between Enfold, WooCommerce, and Events Tickets #740461

    Hi,

    Alright. Please post the FTP details here so that we can check it.

    Best regards,
    Ismael

    in reply to: Portfolio order is not making sense #740130

    Hi,

    Change the order parameter to “ASC” instead of “DESC”.

    // https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Best regards,
    Ismael

    in reply to: Negative margins on columns on mobile device #740128

    Hi,

    Yes, it’s possible. Just add a space between each class attribute.

    Best regards,
    Ismael

    in reply to: Keep Icon "Pulse" on hover with no link #740126

    Hi,

    Thank you for the update. Please remove the css code then add this in the functions.php file:

    function ava_custom_script() {
    ?>
    	<script type="text/javascript">
    	(function($) {
    		function a() {
    			$('#top .av_font_icon.feature-icon').click(function(e) {
    				e.preventDefault();
    			});
    	    }
    	
    		a();
    	})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script');

    If you want to remove the pointer, add this in the Quick CSS field.

    #top .av_font_icon.feature-icon {
        cursor: default;
    }

    Best regards,
    Ismael

    in reply to: Add Houzz badge to social icons #740125

    Hi,

    Thank you for using Enfold.

    Please post the login details here so that we can check the actual icon set name and icon value. Or use this code then adjust the placeholder value.

    function avia_add_custom_icon($icons) {
    $icons['houzz']	= array( 'font' =>'ICON SET NAME', 'icon' => 'ICON CHARACTER VALUE');
    return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    $icons['Houzz'] = 'houzz';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    

    Best regards,
    Ismael

    in reply to: Avia layout builder content element post slider item #740124

    Hi,

    Thank you for the update. You can add a minimum height to the slider content.

    .slide-content {
        min-height: 86px;
    }

    Adjust the value if needed.

    Best regards,
    Ismael

    in reply to: Layout of category archive page #740121

    Hey DLPJRos,

    Please refrain from creating duplicate threads. Thank you.

    Best regards,
    Ismael

    in reply to: Change layout of category pages #740120

    Hi DLPJRos!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    function change_blog_archive_style() {
    	global $avia_config;
    	if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; }
    }
    add_action('get_header', 'change_blog_archive_style');

    Cheers!
    Ismael

    in reply to: How to move breadcrumbs to above footer #740118

    Hi,

    Please remove all modifications then revert every files back to their original state. Just add this code in the functions.php file:

    function ava_before_footer_breadcrumb() {
        $args = array(
    			'title' => '',
    			'breadcrumb' => true
    	);
    
        echo avia_title($args);
    }
    add_action('ava_before_footer', 'ava_before_footer_breadcrumb');

    Best regards,
    Ismael

    in reply to: Cluster fault – no common ground #740110

    Hey afektomer,

    Thank you for using Enfold.

    May I know the browser that you’re using? I tried to login to the site but the credentials above are not working. Please check.

    Best regards,
    Ismael

    in reply to: Google maps #740109

    Hi,

    UPDATE: I just saw these notification in the console but the maps are still working.

    “Google Maps API warning: InvalidKey https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key&#8221; util.js:210:12
    “Google Maps API warning: RetiredVersion https://developers.google.com/maps/documentation/javascript/error-messages#retired-version&#8221;

    Please re-check the API key.

    Best regards,
    Ismael

    in reply to: Google maps #740108

    Hi,

    The maps are working on Firefox, Windows 7, and I don’t see any errors in the console. Please remove browser cache or hard refresh the page.

    Best regards,
    Ismael

    in reply to: Lightbox image activation #740104

    Hi,

    I load the image from a ftp folder, instead of wp media library,

    The attachment id parameter is required. Why don’t you upload it in the media library?

    Best regards,
    Ismael

    in reply to: wrong container width in safari #740103

    Hi,

    There’s a lot of duplicated css media queries in the Quick CSS field that are not supposed to be there or that can be combined as described above. Please check if there are missing curly braces in the css media queries.

    Best regards,
    Ismael

    in reply to: full width sub menu styling #740092

    Hi,

    We modified the code a bit. Please remove browser cache before checking the page.

    Best regards,
    Ismael

    in reply to: Woocommerce One page checkout not working with Enfold theme #740072

    Hey rpichler,

    Thank you for using Enfold.

    I’m sorry but the login credentials above are not working. Please check it carefully. How can we reproduce the issue?

    Best regards,
    Ismael

    in reply to: Full Screen Slider Stopped Displaying youtube video. #740070

    Hi,

    I’m sorry but I can’t find any hint or notification about the issue. Please try to update the theme to the latest version (3.8.3) and WordPress to version 4.7.1.

    Best regards,
    Ismael

    Hi,

    Bizarre reasoning. If I wanted it fixed at two columns I would set it fixed at two columns. If I choose flexible it should be flexible.

    I’m not sure what’s so bizarre about limiting the items to two when the container is a bit smaller compare to full width.

    Best regards,
    Ismael

    in reply to: Image placement #739695

    Hi MindYogi!

    Thank you for using Enfold.

    Please try the Portfolio Grid element’s Link Handling > AJAX option.

    Regards,
    Ismael

    in reply to: Enfold – Add multiple social profile icons #739694

    Hi Julie!

    Thank you for using Enfold.

    Please use the following code.

    // WIEBO - Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['weibo']	 = array( 'font' =>'fontawesomeregular', 'icon' => 'ue92b');
    	$icons['qq']	 = array( 'font' =>'fontawesomeregular', 'icon' => 'ue92b');
    	$icons['wechat']	 = array( 'font' =>'fontawesomeregular', 'icon' => 'ue92b');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Weibo'] = 'weibo';
    	$icons['QQ'] = 'qq';
    	$icons['WeChat'] = 'wechat';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Adjust the “icon” value.

    Regards,
    Ismael

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