Viewing 30 results - 222,541 through 222,570 (of 243,835 total)
  • Author
    Search Results
  • #255060

    Topic: Maxbuttons on Enfold

    in forum Enfold
    GoodGame
    Participant

    Hello,

    Example page: http://mobiilikasinot.net/arvostelut/casinofloor/

    Im trying to get Maxbuttons (the green button in the yellow box) to show better on smaller screen sizes. I added this code to custom.css:

    @media only screen and (max-width: 767px) {
    a[class^=”maxbutton-“] .maxbutton {
    height: auto !important;
    }
    a[class^=”maxbutton-“] .maxbutton .mb-text {
    line-height: 1.2em !important;
    }
    a[class^=”maxbutton-“] .maxbutton .mb-text2 {
    line-height: 1.5em !important;
    }
    }

    That has worked previously on different theme, but now the button is cut in the middle. Am I doing something wrong?

    Thanks for the help!

    #255055

    In reply to: Pagination in Comments

    Hi,

    I was able to do that, using the code bellow in the comments.php.

    <div class=”pagination”>
    <?php paginate_comments_links(); ?>
    </div>

    The same created a standard enfold pagination in all posts.

    But now I have other problem. I trying to do that using the child theme. I using your:
    enfold-child zip file. I created a include directory and put a copy of comments.phh inside.

    But now the pagination doesn´t work!! Why not? Where is the problem?

    THANKS

    #255051

    In reply to: Enfold Showcase

    Habe meine Website jetzt auch auf Enfold umgestellt :))
    http://dedeole99.de
    ———-
    Just changed my website to Enfold :))
    http://dedeole99.de

    Hey David
    Css is being used. In some background images because the image in html text is not overlaid. Can you make as you indicate? I could send some example.
    I’m using media queries but are not set correctly for all devices, I started from the enfold the subject. Is there any update that correctly fits Samsung sII
    Regards. Juan

    #254995

    Hey!

    Please update Enfold to the latest version 2.7 – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Yigit

    #254989

    In reply to: Logo padding issue

    Hey!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .logo img { margin-top: 15px; }
    .header-scrolled .logo img { margin-top: 0; }

    Best regards,
    Yigit

    #254983

    In reply to: Fontello icon

    Hey Dogmut!

    Yes, please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    .iconbox_top .iconbox_icon { font-size: 26px; }

    Cheers!
    Yigit

    #254976

    Hi lionel-fidalgo!

    Not with the current options no. It would need to be added in as a theme feature update which you could suggest here: https://kriesi.at/support/enfold-feature-requests/

    Cheers!
    Devin

    Hi amsdes!

    The first thing I would suggest is to FTP to your server and then delete the theme folder (enfold) so that WordPress is forced to fall back to one of the default themes. Then if things are working again you can try re-installing the theme and see if the database entries tied to the theme are okay.

    Regards,
    Devin

    #254959

    In reply to: drop down menu

    Hi sarahed!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    .main_menu ul:first-child >li > ul { background-color: #444; }

    Cheers!
    Yigit

    #254958

    Hey codedbydesign!

    We’re very sorry that you’re having this issue.

    First, please update the theme to version 2.7. Download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Please add this on functions.php if you want to use the layer slider as a stand alone plugin. This will disable the default layer slider that is included within the theme, find this code on line 16:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Add this code below:

    add_theme_support( 'deactivate_layerslider' );
    

    Once the default layer slider is disabled, please install the plugin. Let us know if it works.

    Regards,
    Ismael

    #254937

    Hey Hans!

    Enfold theme you have in your Downloads section is the updated one. You should download it and update the theme – http://vimeo.com/67209750

    Cheers!
    Yigit

    #254935

    Hey!

    You can go to Enfold/Css folder and edit Grid.css file for further modification

    Cheers!
    Yigit

    #254932

    Hey mariotronik!

    Thank you for using the theme!

    Unfortunately, this is not possible with the theme and beyond the scope of support. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you want to investigate this particular modification on your own, you can start with the header.php. Look for this code:

    <?php 
    	if(!$blank) //blank templates dont display header nor footer
    	{ 
    		 //fetch the template file that holds the main menu, located in includes/helper-menu-main.php
             get_template_part( 'includes/helper', 'main-menu' );
    
    	} ?>

    On top of that code, you can add a slider using a plugin or use the premium layer slider version then utilize the do_shortcode function to render the slider on top of the header.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Regards,
    Ismael

    djpoel
    Participant

    Hi,

    On my website I have a page set up with page template ‘blank – no header and no footer’, check http://diaconaalsteunpunt.nl/diaconaat-2020/

    After upgrading to enfold 2.7 I now get an unwanted white bar at the top of the page. I found out it is caused by selecting the sticky menu option. Since I need the stikcy menu, I don’t know how to fix this… Is it a bug or a feature? :)

    Greetings,
    DJ

    #254917

    Hey!

    Thank you for the info.

    Did you recently update to WP 3.9? We would like to check the actual website. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    You might want to increase the wordpress php memory limit to at least 128M. Depending on your hosting environment you might experience an issue when trying to access the Advance Layout Builder. This is usually due to the builder timing out because of a memory limit in your server environment. The first thing you can do to fix this is to add the following lines in your wp-config.php file located at the root of wp directory:

    define( 'WP_MEMORY_LIMIT', '128M' );
    define( 'WP_MAX_MEMORY_LIMIT', '256M' );

    You can also contact your host if you’re not comfortable doing the adjustments yourself. Refer to this link for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    #254904

    Hey UncleGroOve!

    Try to open up enfold\config-wordpress-seo\config.php and replace:

    
    add_filter('init','avia_wpseo_change_init_priority', 20);
    

    with

    
    add_filter('plugins_loaded','avia_wpseo_change_init_priority', 20);
    

    Cheers!
    Peter

    #254900

    In reply to: Website Final Tweaks

    Hi!

    Insert this code into the child theme functions.php file (or into enfold/functions.php at the very bottom if you don’t use a child theme):

    
    	add_filter('avia_breadcrumbs_trail','avia_woocommerce_breadcrumb_custom', 15);
    
    	function avia_woocommerce_breadcrumb_custom($trail)
    	{
    		global $avia_config;
    
    		if(is_woocommerce())
    		{
    
    			$home 		= $trail[0];
    			$last 		= array_pop($trail);
    			$shop_id 	= woocommerce_get_page_id('shop');
    
    			// on the product page single page modify the breadcrumb to read [home] [if available:parent shop pages] [shop] [if available:parent categories] [category] [title]
    			if(is_product())
    			{
    				//unset the trail and build our own
    				unset($trail);
    
    				$trail[0] = $home;
    				if(!empty($shop_id) && $shop_id  != -1)    $trail = array_merge( $trail, avia_breadcrumbs_get_parents( $shop_id ) );
    
    			}
    
    			if(!empty($last)) $trail[] = $last;
    		}
    
    		return $trail;
    	}
    

    Regards,
    Peter

    #254898

    In reply to: Enfold Showcase

    New version of my website is online. It’s a mix between portfolio photos and a small blog.
    Please take a look and let me know what you think!

    Kind regards,

    Arno

    http:www.arnoweterings.nl

    #254897

    Hi!

    Thank you for using the theme.


    @begrafiks
    : Thanks for helping out!


    @jliamgrist
    : What is the font that you set on Enfold > Styling > Heading Font? If you want to add a google font on the layer slider, go to the LayerSlider panel. Look for the Load Google Fonts then search for the google font that you want on the google font library.

    Cheers!
    Ismael

    #254892

    Hey cameron329!

    Thank you for using the theme.

    In order to help you with the issue, we will need to see the actual live website. If you don’t mind, please post the website url here. We will be happy to provide you with the proper solution once we have taken a look at the website.

    Cheers!
    Ismael

    #254889

    Hi!


    @insightmike
    : Do you mind if we take a look at the website? Do you have Enfold 2.7 running? Please try to empty cache if you’re using a cache plugin like W3 Total Cache and purge the cache on your server if there is any.

    Regards,
    Ismael

    #254885

    Hey fonti91!

    Do you use the latest version of the theme? Afaik Enfold 2.6.4 should display the social buttons automatically but you can deactivate them on the theme options page: Enfold > Theme Options > Blog Layout – “Share links at the bottom of your blog post” option. If you use 2.6.4 and you can’t find this option yet please wait for the Enfold 2.7 update which will include the new feature for sure.

    Cheers!
    Peter

    #254878
    jfabess
    Participant

    Hello,

    I have completed a website utilizing Enfold and it is published on the web. Let’s call it http://abc.com Now, however, I want to move the site to a new domain name. We can call the new domain name http://xyz.com What is the simplest way to accomplish this so that all links and media files are transferred and the site works properly?

    Thank you.

    jfabess

    #254877

    Hey!

    Thank you for the update.

    Unfortunately, the function is limited on sorting by portfolio category. The customization you’re after is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Cheers!
    Ismael

    #254860
    TheBiZWeavers
    Participant

    hi there,

    After updating the wordpress 3.9 and enfold theme 2.7, when i try to edit a page no content is show and can not edit (the spinner keeps on loading).

    And the quick edit on the pages also doesn’t work.

    Can you help me.
    Thanks
    Best Regards

    #254851

    Hey Alexoidea!

    See https://kriesi.at/support/topic/before-and-after-plugin/ – someone recommended the “Fifty Fifty” plugin. Personally I didn’t test the plugin but I guess it works with Enfold.

    Cheers!
    Peter

    #254850

    This is a new Italian translation for 2.7 version

    Best regards,
    Giuseppe Beghelli

    #254844
    codrivers
    Participant

    Dear,

    I’m not able to download the most recent enfold version.
    Version 2.7 does not show up at. http://themeforest.net/downloads.
    It is important that we upgrade since we upgraded our wordpress to version 3.9 and have some txt edit issue now.

    Thanks for your support
    Hans
    Codrivers

Viewing 30 results - 222,541 through 222,570 (of 243,835 total)