Forum Replies Created

Viewing 30 posts - 53,101 through 53,130 (of 67,510 total)
  • Author
    Posts
  • in reply to: How can I change the news icon (pencil) into an own image? #365180

    Hi!

    Where is the actual blog page? Please post the url here. Why do you keep on adding the image attachment page?

    Regards,
    Ismael

    in reply to: Re-creating a homepage with 'full size images' #365176

    Hi!

    You can add the code on Appearance > Editor > Theme Functions (functions.php) file. Please refer to this link: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Regards,
    Ismael

    in reply to: Enfold Showcase #365170

    Hi!

    As always, thank you for using Enfold!


    @jberickson
    : Where is that snow coming from? Awesome. :D


    @jeremyO
    : Color combinations looks nice. The footer can do some improvement.

    @Tech Dude: Welcome to Lapolla.com!


    @chartier
    : Clean blog. Like the logo. Congratulations on the 1Password app!


    @style960
    : Clean and dark. Maybe you can add apply a subtle image background on the area right below the “WE ARE FLOORING AND INTERIOR DECOR SPECIALISTS.” section. Nice website. :)

    Best regards,
    Ismael

    in reply to: WPML Customization #365167

    Hi!

    I’m not sure what Josue edited on avia.js so I’ll ask him to take a look. I think it’s working when I left it, might need additional css changes to show the language code on mobile.

    Best regards,
    Ismael

    in reply to: Deleting content when adding new #365166

    Hi!

    1.) Please create a test page with the issue. Post the login details here so that we can check it.

    Regards,
    Ismael

    in reply to: Safari 8.0 Seems to Not Auto-Loop Full Screen Video Slider #365165

    Hi!

    Yes, I’m on Windows 8, lower version of Safari. We already reported this issue to Kriesi. Please wait for his confirmation.

    Best regards,
    Ismael

    in reply to: White Screen of Death after WP and Enfold updates #365161

    Hey DrNoge!

    Thank you for using Enfold.

    There are thousands of Enfold users out there who’s not experiencing this issue so it’s either a plugin or the theme that you have is either incomplete or corrupted. Please download it again from themeforest account then update the theme via FTP. If it doesn’t work, rename the plugins folder on wp-content folder. This should disable all plugins. If it still doesn’t work, please contact your hosting provider to restore the site to a point where it is still working. We would like to check it.

    Regards,
    Ismael

    in reply to: Resizing Slideshow #365160

    Hey!

    Looks like it is coming from an iframe named google_conversion_frame. You can move the whole container upwards with this:

    .html_stretched #wrap_all {
    margin-top: -29px;
    }

    Cheers!
    Ismael

    in reply to: Logo – enlarging/centring #365159

    Hi!

    The image itself is not transparent: http://cardabelleholidays.com/wp-content/uploads/2014/12/Cardabelle-Logo-Pix-Export-Long-300×67.png

    Can you please provide the actual png logo? We would like to test it.

    Best regards,
    Ismael

    in reply to: Metspin – Fusion Biolder – Services page #365156

    Hey!

    I’m sorry but it looks like you’re using a third party plugin. Please use the default column layout. Arrange the columns like this:

    1/2 1/2
    1/1
    1/3 1/3 1/3

    Place the Examples of Goods Produced on the 1/1 column.

    Cheers!
    Ismael

    Hey!

    There is only one shipping option available when I check the cart. Please post the login details here. We would like to check it.

    Cheers!
    Ismael

    Hi wildflowermeadows!

    Thank yo for using Enfold.

    You can use the .remove jquery function. Add something like this on functions.php:

    /**
     * Remove element on mobile device
     */
    
    add_filter('wp_footer', 'avf_remove_element', 10);
    function avf_remove_element() { ?>
    <script>
    (function($){
    		if ($(window).width() <= 768){	
    			$('ELEMENTS TO BE REMOVED HERE').remove();
    		}	
    	
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: Skands Support and "Read More" Links #365151

    Hi 247photo!

    Thank you for using Enfold.

    1.) Please edit the blog post element then set the Blog Content length to Excerpt with read more link.

    2.) The font use on the advance layout builder does not support latin extensions, I think that’s why the skand character is not showing up properly. The skand character ø on “Allan Mørch” is working fine on the frontend. Did you add any html codes on the element? Make sure that you close the tags properly.

    Regards,
    Ismael

    in reply to: Problems with blog page layout #365150

    Hi!

    Did you set the sidebar on Enfold > Sidebar Settings > Sidebar on Blog Page?

    Cheers!
    Ismael

    Hey!

    Yigit code should work. Looks like a plugin is adding the title attribute on the magazine title link. Please try this:

    add_filter('wp_footer', 'avf_remove_title_att', 10);
    function avf_remove_title_att() { ?>
    <script>
    (function($){
        $(window).load(function() {
        	$( "h3.av-magazine-title.entry-title a" ).each(function() {
    			$(this).removeAttr('title');  
    		});
        });
    	
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: Featuring or Highlighting a New Post #365124

    Hey!

    Yeah. It will not actually expire or remove the post. It will only put the word “NEW” below the title for new posts. The text will be removed after 7 days. You can style it with css. Please try it. You can replace the code with this, if you don’t want to add the text “OLD” for old posts:

    $publisheddate = get_the_time('Y-m-d');			
    				$published = strtotime($publisheddate);
    				$expiration = $published + (7 * 24 * 60 * 60);
    				$today = current_time('timestamp');
    				
    				if($expiration > $today) {
    					echo "<span class='new-post-meta'>NEW</span>";
    				}

    Use .new-post-meta class on the Quick CSS field to move the text.

    .new-post-meta {
    position: relative;
    padding: 3px;
    background: green;
    color: white;
    }

    If you’re looking for something else, I don’t think we can help you further. Please hire a freelance developer to add the feature for you or find a plugin that works with the theme. For further modifications, please visit Envato Studio or Werkpress.

    Cheers!
    Ismael

    Hi!

    Thank you for using Enfold.

    Please remove the html code on the toggle title then use these selectors instead:

    .toggle_icon {
    position: absolute;
    width: 15px;
    height: 15px;
    border-style: solid;
    border-width: 1px;
    top: 25px;
    left: 10px;
    }
    
    .js_active .toggler {
    font-size: 50px;
    padding: 35px 3px 35px 35px;
    }

    Regards,
    Ismael

    in reply to: Google Adsense Darstellung #364552

    Hi!

    The code is working when I tested it. Please replace the code with this:

    #top ins:before {
    display: none !important;
    }

    Regards,
    Ismael

    in reply to: IconBox align center #364550

    Hey!

    I can’t see the issue on tablet view. The title looks centered on mobile devices. Can you please provide a screenshot?

    Best regards,
    Ismael

    in reply to: Speeding up delay on Mega Menu display? #364548

    Hey!

    You should edit the avia.js file. Try to increase the value to 10000, so you know it is working. Remove browser cache then reload the page a few times. :)

    Regards,
    Ismael

    in reply to: Google Map inside LayerSlider #364546

    Hi Peter!

    Thank you for using Enfold.

    Use the embed code from the google map. Please refer to this link: https://support.google.com/maps/answer/3544418?hl=en

    Best regards,
    Ismael

    Hi!

    Thank you for using Enfold.

    You can’t add the fullwidth menu on archive pages unless you edit the archive.php file and use the do_shortcode function. I’m sorry but the Fullwidth submenu can’t switch to mobile menu on smaller screens. Please hire a freelance developer to configure the element. For further modifications, please visit Envato Studio or Werkpress. You can also request or vote for the feature on our Feature Requests page..

    Best regards,
    Ismael

    in reply to: Make the table width the same across all columns #364540

    Hi shoo!

    Thank you for using Enfold.

    You can decrease the font size of the button then specify the width of the table cells:

    .avia-data-table .avia-center-col {
    text-align: center;
    width: 10%;
    }
    
    .avia-button.avia-size-small {
    font-size: 12px;
    }

    Regards,
    Ismael

    in reply to: add Google Remarketing Code #364538

    Hey!

    We added the code on your child theme’s functions.php. You can check it now: http://www.enkonn.com/wp-admin/theme-editor.php?file=functions.php&theme=enfold-child&scrollto=18&updated=true

    Best regards,
    Ismael

    in reply to: sidebar missing suddenly on one page!? #364534

    Hey petcar!

    Thank you for using Enfold.

    Did you add any modifications on functions.php to decrease or increase the width of the sidebar?

    Best regards,
    Ismael

    in reply to: Portfolio Raster #364533

    Hey joeydrums!

    Thank you for using Enfold.

    I’m sorry but this will require custom modification that is beyond the scope of support. Please hire a freelance developer or find a third party plugin that coincide with the theme. For further modifications, please visit Envato Studio or Werkpress.

    Regards,
    Ismael

    in reply to: infinite scroll? #364530

    Hi alvinhy!

    Thank you for using Enfold.

    It is possible but it will require modification on the theme. You can try the Masonry element’s Load More feature. Set it on the Pagination settings.

    Cheers!
    Ismael

    in reply to: Fatal Error #364527

    Hey!

    Thank you for using Enfold and sorry for the delay.

    I checked the website and there’s an error, probably from a plugin:

    :  call_user_func_array() expects parameter 1 to be a valid callback, non-static method dc_jqsocialstream::header() should not be called statically in 
    

    Any idea which plugin uses the dc_jqsocialstream::header function? I also tested the Menus panel and it is working fine.

    Cheers!
    Ismael

    in reply to: Avia template builder and MQ-translate; LangTabs not working #364526

    Hi avrisar!

    Thank you for using Enfold.

    Actually, I only found 3 users in the forum including you who’s using the mqtranslate plugin. Most Enfold users use WPML which is fully compatible with the Advance Layout Builder. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.

    Thank you for your understanding.

    Cheers!
    Ismael

    in reply to: Icon List Formatting on iPad #364523

    Hi djshortkut!

    Thank you for using Enfold.

    Decrease the font size when viewing on iPad screens:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    h4.iconlist_title {
    font-size: 15px;
    }
    }

    Regards,
    Ismael

Viewing 30 posts - 53,101 through 53,130 (of 67,510 total)