Forum Replies Created

Viewing 30 posts - 781 through 810 (of 25,536 total)
  • Author
    Posts
  • in reply to: Random Portfolio Post? #1413006

    Hi flylanddesigns,

    I’m glad that Ismael could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Header fall down #1413005

    Hi Stilecatalini,

    The customization that you would like to have requires a significant amount of time to do the modifications as Ismael mentioned.
    Please check the scope of our support: https://kriesi.at/support/register/#av_section_2

    Best regards,
    Nikko

    Hi piaspilauer,

    Thanks for giving us admin access, I have modified the page (link in private content).
    I unchecked the hide in mobile options for the table and then in Advanced > Developer Settings > Custom CSS class field I put: two-columns and added this CSS code in Quick CSS:

    @media only screen and (max-width:767px) {
      #top #wrap_all #main .two-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
    }

    If you want to use this other tables then just edit the table and go to Advanced > Developer Settings > Custom CSS class field and put: two-columns
    Please review your website.

    Best regards,
    Nikko

    in reply to: Remove items from default WooCommerce Dropdown filter #1413003

    Hi thinkjarvis,

    Thanks for posting your code :)
    Thanks as well for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Cannot Instal Enfold #1412667

    Hi Saka,

    Thanks for giving us both admin and cpanel access.
    I was able to upload the theme and fix the “The link you followed has expired” by modifying the post_max_size and upload_max_filesize in the Home Directory to 32M
    And the critical error was fixed after memory_limit is set to 128M
    Please review your website :)

    Best regards,
    Nikko

    in reply to: Codeblock not showing on mobile view #1412666

    Hi ballindigital,

    Please try to check in the Code Block > Advanced > Responsive > Element Visibility and see if it’s hidden on mobile otherwise, please provide us with your login credentials by following these steps:

    1. Install and activate the “Temporary Login Without Password” plugin. You can find it here.
    2. Once activated, navigate to “Users > Temporary Logins” in the left-side menu.
    3. Click on “Create New” to generate a temporary login.
    4. Enter the email address for the account (you can use (Email address hidden if logged out) ) and select the highest possible role. Set the expiry date to around four days to ensure enough time for debugging.
    5. Click “Submit” to create the temporary account.
    6. In the private section, provide us with the URL that allows us to access the temporary login and assist you.

    Please note that once your issue is resolved, you can remove the plugin. Alternatively, if you prefer not to use the plugin, you can manually create an admin user and share the login credentials in the “private data” field.

    If you have any further questions or concerns, please let us know.

    Best regards,
    Nikko

    in reply to: Display Mobile Container #1412665

    Hi Anna_Tewes,

    I checked the homepage of the link in private content but I don’t seem to see the issue on a mobile phone (tried to resize the browser on desktop but it’s not showing as well).
    Is this already fixed? if not please try to check using other devices.

    Best regards,
    Nikko

    in reply to: about head URGENT #1412664

    Hi tulin88,

    Are you using a child theme? if yes, please add this PHP Snippet in your child theme’s functions.php, if you don’t have one, then you can use a plugin called WPCode – Insert Headers and Footers and insert it as a PHP Snippet:

    add_action( 'ava_inside_main_menu', 'heading_above_news' );
    function heading_above_news() {
    	$page_id = 1828;
    	$header = "TECHNICAL ASSISTANCE FOR TOWN TWINNING BETWEEN TÜRKİYE AND THE EU PHASE – II";
    	
    	if ( is_page( $page_id ) ) {
    		echo '<div class="news-header"><h3> ' . $header . '</h3></div>';
    	}
    }

    Then go to Enfold > General Styling > Quick CSS and add this CSS code:

    #top #header_main_alternate .main_menu {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .news-header h3 {
        color: #0e4194;
        font-size: 18px;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Style categories to be shown as av_mansory #1412662

    Hi BenjaminSpeedtsberg,

    I see, there’s no option to for the category pages to copy the same layout as the blog if it’s set to Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page), you can only use it if you create pages for it and redirect the category page towards those specific pages.

    But you can change the layout atleast to Grid, but would require you to use a child theme: https://kriesi.at/documentation/enfold/child-theme/ (make sure to follow the instructions in the documentation page)
    If you already have a child theme then please try to add this code in functions.php of your child theme:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
        if($context == 'archive') $layout = 'blog-grid';
        return $layout;
    }

    Best regards,
    Nikko

    in reply to: Navigation menu below path guide modification #1412658

    Hi 952402034,

    The labels are built-in the theme, you can modify it in enfold\framework\php\class-breadcrumb-trail.php line 85

    'before'			=> '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',

    and line 88

    'show_home'			=> __( 'Home', 'avia_framework' ),

    if this is replaced in Chinese then just replace it with these default values.

    If it is changing for some reason then try to disable the plugins and enable them one by one to know which one is causing the issue.

    Otherwise, you can use this filter and add it via functions.php of the child theme to make the tweaks without modifying the core files:

    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
    	$args['before'] = '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>';
    	$args['show_home'] = 'Home';
    	return $args;
    }

    Best regards,
    Nikko

    Hi NicomIT,

    Thanks for giving us admin access.
    I tried to check it and it seems to be working on the two latest agents (link in private content) but not on the others.
    I also tried to add your code in functions.php of the twenty twenty theme and the results are the same.

    Best regards,
    Nikko

    in reply to: Style categories to be shown as av_mansory #1412477

    Hi BenjaminSpeedtsberg,

    What Blog Layout are you using?
    You can find it in Enfold > Theme Options > Blog Layout > Blog Layout.

    Best regards,
    Nikko

    Hi NicomIT,

    Can you give us temporary admin access? so we can try to check the settings and try to replicate the issue.
    I tried to replicate it on my end however I think I need to change some settings in my cpt ui plugin since your code does not seem to have any effect or atleast a change in the permalink.
    Just post the credentials in private content.

    Best regards,
    Nikko

    Hi GePu,

    Can you try adding this CSS code in Quick CSS: (the code is specific only to your given page)

    @media only screen and (min-width:981px) {
      .page-id-31 #after_section_3 .avia-content-slider .slide-entry-wrap {
        display: flex;
        align-items: baseline;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Pictures uploading all washed out. #1412473

    Hi extraeyes,

    On your screenshot the difference is obvious with the first image and second.
    I think Mike has provided this screenshot on his end:

    And, I see exactly the same thing on my end, I tried to view it in chrome, firefox and edge, I don’t see any difference in color between the two images.
    Can you try to view it on a different device?

    Best regards,
    Nikko

    • This reply was modified 2 years ago by Nikko.
    in reply to: “Save draft” button disappeared #1412472

    Hi menainfosec,

    Can you create a staging site? so we can try to debug the issue without affecting the live users of your website.
    You can check this tutorial on how to create a staging site: https://wpengine.com/resources/what-is-a-staging-site-why-have-one/#How_to_Create_a_Staging_Site_for_WordPress
    Just post the login credentials in private content.

    Best regards,
    Nikko

    in reply to: 502 Bad Gateway #1412471

    Hi germanvoice,

    It’s a server issue, I think you should contact your webhost to try to fix it.
    Usually it’s server overload or webhost issues, you can check here further on 502 bad gateway: https://kinsta.com/blog/502-bad-gateway/
    If it usually happens and your webhost does not resolve it for you, I would suggest migrating to a different webhost.

    Best regards,
    Nikko

    in reply to: Email Not Sending in Forms #1412470

    Hi djsmbd,

    Please give us temporary admin access, so we can check on the issue further.
    Just post the credentials in private content.
    Also, please try the troubleshooting steps in our documentation: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Nikko

    in reply to: Woocommerce product repeat in same page #1412469

    Hi Antonio,

    I tried to check the link you gave however I did not see any repeat of the product anywhere on the page.
    The product item on that product page also did not appear on the Related Products section.

    Best regards,
    Nikko

    in reply to: Vertical manu subheads #1412384

    Hi tonyiatridis,

    You’re welcome :)
    We’re glad that we could help you.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Vertical menu with subheads #1412382

    Hi tonyiatridis,

    I will close this thread as it is a duplicate of your other thread.
    We’ll continue the discussion there :)

    Best regards,
    Nikko

    in reply to: Vertical manu subheads #1412381

    Hi tonyiatridis,

    Go to Appearance > Menus, then select the menu you’ve set as the Main Menu.
    Open Screen Options on top right corner of the screen and check description

    And expand the menu item and edit the description.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Widget placement issue. #1412380

    Hi Anish,

    Thanks for contacting us!
    The customization that you’d like to do requires some time to do those tweaks, please consider renewing support.

    Best regards,
    Nikko

    Hi Mohammad,

    Thanks for contacting us!
    Unfortunately we don’t have that feature, please try to check plugins that provide those type of widgets.

    Best regards,
    Nikko

    in reply to: WooCommerce Product Page Styling #1412378

    Hi ballindigital,

    I apologize for the delayed response:
    For the button, you can use this CSS code:

    #top .single-product-summary .single_add_to_cart_button {
        display: block;
        width: 100%;
    }

    As for the label on top of credit card logos, I think you can use this hook woocommerce_product_meta_end

    Best regards,
    Nikko

    Hi NicomIT,

    Do you use a custom 404 page? if yes, can you try to disable it and see if it helps.

    Best regards,
    Nikko

    in reply to: Double separator #1412374

    Hi Jainanvanmeteren,

    I’m glad that Rikard could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Background color gradient #1412373

    Hi Antonio,

    You can use this CSS code to cover the whole page and add it in Enfold > General Styling Quick CSS, however since it is at the back of those content elements (like Color Section), you will need to make the content elements transparent:

    #top #wrap_all #main {
        background: blue;
        background: linear-gradient(45deg, blue 0%, black 100%);
    }

    Best regards,
    Nikko

    in reply to: Fixing a sub-header #1412372

    Hi Rainer,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top.page-id-388,
    #top.page-id-425,
    #top.page-id-388 #wrap_all,
    #top.page-id-425 #wrap_all {
        overflow: visible;
    }
    
    #top.page-id-388 #wrap_all #av_section_1,
    #top.page-id-425 #wrap_all #av_section_1 {
        position: sticky;
        top: 100px;
        z-index: 100;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Upper navigation #1412208

    Hi origin,

    I’m glad that we could help you :)
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

Viewing 30 posts - 781 through 810 (of 25,536 total)