Forum Replies Created

Viewing 30 posts - 8,341 through 8,370 (of 82,625 total)
  • Author
    Posts
  • in reply to: Bold is not the right color #1219753

    Hi Charlotte :)

    Could you please share WP admin logins here privately so we can look into it? :)

    Best regards,
    Yigit

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: Transition speed in slider ALB. #1219748

    Hi,

    Exactly :) Thanks a lot for your feedback!

    Best regards,
    Yigit

    Hey,

    That is because of the padding around gallery images. I added following code to bottom of Quick CSS field

    #top #flex-gallery .avia-gallery img { padding: 0; } 
    #flex-gallery .avia-gallery-thumb {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        padding-top: 0px;
    }
    #top #wrap_all #flex-gallery a {
        width: 50%;
        flex: 0 1 calc(50% - 3.5px);
        margin: 0 0 7px;
    }

    Please review your website

    Regards,
    Yigit

    in reply to: main layerslider demo lack ? #1219738

    Hi CM,

    Sorry for the wait!

    I attached the slider in private content field. If you would like us to import it, please create temporary admin logins and post them here privately :)

    Best regards,
    Yigit

    Hey 0_o,

    You can try adding following code to Functions.php file in Appearance > Editor

    function av_title_sc( ){
       echo "<h1 class='page-title'>". get_the_title() ."</h1>"; 
    }
    add_shortcode( 'av_page_title', 'av_title_sc' );

    and add following shortcode to your page [av_page_title] to display the title :)

    Best regards,
    Yigit

    in reply to: Add icon list on all pages #1219530

    Hi,

    Not really sure why but on pages such as Cart, Checkout and My Account, there was whitespace between columns. So I deleted the space between shortcode tags in Functions.php file and that helped.
    You can set width to 32.3% and it should align correctly on all pages :)

    Best regards,
    Yigit

    in reply to: Header overlaps Content (z-Index) #1219522

    Hi @Dase,

    Please remove following custom CSS code

    .html_header_top.html_header_topbar_active.html_header_sticky #top #main {
        padding-top: 0px !important;
    }

    Best regards,
    Yigit

    Hi,

    We will keep the thread open and wait to hear from you :)

    Thanks, you too!

    Best regards,
    Yigit

    Hi,

    Sorry I do not have any experience with LearnDash :) Is it the section shown in screenshot below?
    If so, it would be great if you could ask if there is a way to include it as well. ALB overwrites default content so it should be manually added.

    Regards,
    Yigit

    in reply to: secondary navbar menu disappears #1219470

    Hey,

    We are sorry for the late reply!

    I checked your website and it seems like you have moved login/logout links to your main menu and hid secondary menu on screeens below 1300px using following code

    @media only screen and (max-width: 1300px) {
    .menu-item {
        display: none;
    }}

    Have you figured it out already? If not, please add login/logout items to your secondary menu again so we can look into the issue :)

    Best regards,
    Yigit

    in reply to: Hide Author Bio Where Not Defined #1219467

    Hi Jas,

    Sorry for the late reply!

    You can add following code to bottom of Functions.php file in Appearance > Editor

    add_filter('avf_author_description', 'avf_author_description_mod');
    function avf_author_description_mod($description){
    	if( empty( $description ) )
    	{
    		$description = "Here goes my custom content";
    	}
    	return $description;
    }

    If author description is set, it would display it and if not set, it would display the custom content :)

    Best regards,
    Yigit

    Hi Morticka!

    Me too, thanks!

    It seems like LearnDash should add both content to page and depending on active tab, hide the content of other tab. In attached screenshot in private content field you can see that Lesson content is hidden when switching to Materials tab, however since it does not get the content of Materials, it does not display anything.

    Could you please contact LearnDash team and ask for pointers on how to display the content of “materials” tab in layout builders? :)

    Best regards,
    Yigit

    in reply to: PHP 7.1 / 7.2 / 7.3 don't work #1219458

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: Remove Top Header Menu & Info on specific pages #1219455

    Hi @Dase,

    Would you like to remove post navigation that appears on both sides on product pages? If so, please try adding following code to bottom of Quick CSS in Enfold theme options > General Styling

    single-product .avia-post-nav {
        display: none;
    }

    If that is not what you meant, could you please elaborate on the changes you would like to make? :)

    Best regards,
    Yigit

    in reply to: PHP 7.1 / 7.2 / 7.3 don't work #1219453

    Hi,

    Issue was related to your PHP memory limit. It was 32M and I increased it to 256M by adding following code to wp-config.php file

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

    Please review your website :)

    Best regards,
    Yigit

    in reply to: PHP 7.1 / 7.2 / 7.3 don't work #1219439

    Hi Jason,

    Sorry for my late reply!

    I am not able to login to your WordPress dashboard either. I attached the message I receive in private content field below. FTP logins work so that is fine for time being.

    Could you please upgrade PHP version once again and let us know? I assigned the thread to myself and will be waiting to hear from you.

    Best regards,
    Yigit

    in reply to: Burger-Menu / How can I change the position? #1219436

    Hi Carsten,

    I adjusted the code in Quick CSS a bit so menu is centered on screens above 990px and on the right on screens below 990px.

    Then I went to Enfold theme options > Main Menu > Burger/Mobile Menu and chose to display “Sidebar Flyout Menu (Minimal)” and then adjusted background and menu item colors in Enfold theme options > Advanced Styling.

    Could you please review your website? :)

    Best regards,
    Yigit

    in reply to: Transition speed in slider ALB. #1219428

    Hi Günter,

    We have fixed the issue and it will be included in upcoming version.

    I have included updated enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js file in private content field :)

    Best regards,
    Yigit

    in reply to: Clean Up Dynamic_Avia folder #1219425

    Hi,

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

    in reply to: Clean Up Dynamic_Avia folder #1219410

    Hi,

    Please refer to this post – https://kriesi.at/documentation/enfold/optimization/#troubleshoot :)

    Regards,
    Yigit

    in reply to: Cannot update theme. Do I need to buy again? #1219409

    Hey,

    Since download and purchases are managed by Envato/ThemeForest, unfortunately we are not able to do that.

    I searched the email in our database as well but that cannot be found. Do you have a copy of the license so we can validate your purchase?

    Best regards,
    Yigit

    Hey Morticka!

    Hope you are doing well :)

    Could you please create a test lesson and privately publish it so we can inspect the issue on that one?

    Both issues are actually related. Once content is displayed fine, it will fix socket issue as well :)

    Regards,
    Yigit

    in reply to: Refund policy #1219405

    Hey Piet,

    Thanks for contacting us!

    We sell Enfold exclusively on ThemeForest and their refund policy applies. You can read more about it here – https://themeforest.net/page/customer_refund_policy

    Let us know if you have any other questions :)

    Regards,
    Yigit

    in reply to: License terms #1219404

    Hey JL,

    Thanks for contacting us!

    No, that is totally fine. Matter fact, that is how most developers/contractors work :)

    I would like to mention two things in case you are only going to setup the site for your client;
    – Please forward the purchase code to your client so they can register to our support forum – https://kriesi.at/support/register/ and contact us whenever they have a question or an issue.
    – Please refer to this post – https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token and generate a Personal Token and insert it in Enfold theme options after migrating site to your clients server so they can receive future updates.

    I hope that helps!

    Let us know if you have any other questions :)

    Regards,
    Yigit

    in reply to: Lecense code #1219400

    Hi Chafik,

    Thanks for contacting us!

    I am afraid the only way to get full support and theme updates is by having access to a Themeforest account which was used to purchase the theme.

    The easiest way would be to get in touch with your developer and ask him for the purchase code and a Personal Token. That would allow you to create a forum account here (one that got access to more than the pre-sale question area) and would also allow you to update the theme from your backend.

    If you cant get in touch with your developer for whatever reason, you can also try to contact Envato support and ask them if its possible for them to credit the purchase to a Themeforest account of your own: https://help.market.envato.com/hc/en-us/requests/new
    However this will probably only work if your developer already sent you a payment receipt or something similar for the purchase.

    Last option would be to create a themeforest account of your own and use it to re-purchase the theme.

    I hope one of the first two options works out for you, but unfortunately we can’t help until we have a valid verification that the theme was purchased properly. This is necessary for us, since there are quite a few people out there who don’t buy the theme on themeforest and instead download it for free on illegal file sharing sites and then even have the audacity to ask us for support.

    Sorry for that!

    Best regards,
    Yigit

    in reply to: License Key #1219396

    Hi Christina,

    Thanks for contacting us!

    I searched the email in our database however there is no account linked to it.

    Could you please try retrieving your password on – https://themeforest.net/?

    Regards,
    Yigit

    Hi,

    Thanks for contacting us!

    Enfold has its own mega menu, an example can be seen here – https://kriesi.at/themes/enfold-2017/. Please check out “Portfolio”, “Pages”, “Shop” and “Elements” menu items :)

    Enfold is also compatible with UberMenu. You can find integration instructions here – https://sevenspark.com/docs/ubermenu-3/theme-integration/enfold

    I hope that helps! Let us know if you have any other questions :)

    Best regards,
    Yigit

    in reply to: Theme not responsive #1219388

    Hi,

    I agree! When your website is finished, please consider to share it in Enfold showcase thread – https://kriesi.at/support/topic/enfold-showcase/ :)

    You are welcome!

    Let us know if you have any other questions or issues! :)

    Best regards,
    Yigit

    Hi,

    Sorry for the late reply!

    Please refer to this post – https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb and create a child theme and a “shortcodes” folder inside your child theme.
    Then go to /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.php file and copy it inside /shortcodes/ folder inside your child theme.
    Open the file and find following line and adjust it as needed

    
    $form_action = home_url( '/' );
    

    This is for Search element.

    Your following code changes form action of ajax search as well as default search

    add_filter('avf_frontend_search_form_param', my_frontend_search_form_param, 10, 1 );
    function my_frontend_search_form_param( array $params )
    {
    	global $wp;
    	$params['form_action'] = home_url( $wp->request . '/' );
    
    	return $params;
    }

    Best regards,
    Yigit

Viewing 30 posts - 8,341 through 8,370 (of 82,625 total)