Viewing 30 results - 18,781 through 18,810 (of 244,618 total)
  • Author
    Search Results
  • #1398603
    Mischa
    Participant

    I may have found a small bug:
    In the avia form some special characters in the email subject are not decoded correctly.
    e.g. ###91### does not become [ and ###93### does not become ].
    (We’d tried to add a keyword like in square brackets to the subject…)
    Also the small “Special Character Translation plugin” did not bring any improvement.
    I am wondering that I have not found a bug report for this so far.
    Regards,
    Mischa

    Enfold 5.4, PHP 8.0.x

    #1398601
    Alex Freelance
    Participant

    Hi there,

    First of all: I would like to thank you for providing us with your services and generous support.

    I would like to raise a couple of issues I have faced, I hope somebody quickly can jump in and help me out.

    (1)
    When using the content element “time line” the individual bullet/symbol points get their active colour as soon when the user scrolls them into the viewport. I would like to expect the same behaviour for the content element “symbol list”, but apparently all of the bullet/symbol points get triggered as soon as the first bullet point gets into the viewport, and then immediately after all of the other elements get activated. Is this something you might change on code base and/or can I quickly change the behavior by altering code in the functions.php?

    (2)
    I am using the code changes as described here

    to change the logo on the homepage, but I need to change the logo on the homepage which is set for the transparaent Header, I have uploaded it under “Theme Options>Header>Transparent Header” — what do I need to change?

    (3)
    On all the other sub-pages (excluding home) I need the transparent logo to be centered, unfortunately I was not able to isolate which to change, neither class nor identifier.

    (4)
    On mobile I use the following method to alter the mobile logo

    — I would also like to hide the mobile header’s background image, coukd you please hint me what to add?

    Kind regards,
    Alex

    • This topic was modified 3 years, 2 months ago by Alex Freelance. Reason: added private content
    #1398599

    In reply to: Two licenses needed?

    Hi Phil,

    Yes, you can go to https://kriesi.at/support/forum/enfold#new-post to start new threads.

    Best regards,
    Yigit

    #1398598

    Hi,

    Glad Ismael could help! :)

    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 :)

    Enjoy the rest of your day!

    Best regards,
    Yigit

    #1398589

    In reply to: Two licenses needed?

    Hey Phil,

    Please login to our forums, visit https://kriesi.at/support/forum/enfold#new-post, and revalidate your existing purchase code. After that, you should be able to start new threads in Enfold subforum.

    Please let us know if you’d like us to validate it for you. We’re going to need to reset your forum password to do that.

    Best regards,
    Yigit

    #1398583
    Avinoam Shalev
    Guest

    Hello,
    My website was built years ago by a web designer whom I now cannot reach anymore (hasn’t answered emails or phone calls since she finished building the website and got paid…). I’m now the website admin and would like to update the version of Enfold. The version I have on my wordpress website is 4.4.1. I do not have the web designer’s login credentials to themeforest/envato market or for kriesi.at, if she ever registered. This is why I don’t know the purchase key in order to register for your support forum.
    I contacted Envato Market and they said that since I can’t contact the web designer, the only option they can think of is to buy the theme again myself.
    I will attach the information I do have in the hope that you can assist me in coming closer to updating the theme. Thank you very much!

    #1398573

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398566

    Hi,
    Thank you, I see this menu:
    Enfold_Support_426.jpeg
    and these custom icons:
    Enfold_Support_428.jpeg
    If you use this css:

    #avia2-menu #menu-item-599:before {
    	content: "\e800";
    	font-family: fontello;
    	font-size: 16px;
    	color: #000;
    }
    #avia2-menu #menu-item-599{
    	font-size: 0;
    }
    #avia2-menu #menu-item-673:before {
    	content: "\e835";
    	font-family: fontello;
    	font-size: 16px;
    	color: #000;
    }
    #avia2-menu #menu-item-673{
    	font-size: 0;
    }

    you should see this result:
    Enfold_Support_430.jpeg
    After applying the css, please clear your browser cache and check.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1398565

    Hi,
    Glad we were able to help, I’m not sure what the cause was but I messed with it a few times. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398562
    This reply has been marked as private.
    #1398556

    In reply to: new google analytics

    Hey jeel147,
    You can enter your new code in the same field, see Enfold Theme Options ▸ Google Services ▸ Google Analytics Tracking Code the field shows both examples:

    Either enter your Google tracking id (UA-XXXXX-X), (G-XXXXX) or your full Google Analytics tracking Code here.

    Best regards,
    Mike

    #1398555

    In reply to: Demo import

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please log in to the forum and create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398552

    In reply to: Change menus on mobile

    Hi,
    Thanks for the feedback, try going to your menus and hovering over the “Delete Menu” link for your main menu and your topbar menu so that at the bottom of the page your browser will show you the link address, in the link address look for menu=xx the xx will be a number, in this screenshot the number is 11
    Enfold_Support_424.jpeg
    Ok, so now you have both numbers, for this example let’s say 37 for the one you want to be the mobile topbar menu & 11 for the one you want to be the new mobile main burger menu.
    Now add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_top_nav_menu( $args = '' ) {
    if($args['theme_location'] === 'avia2')
    if ( wp_is_mobile() ) {
    $args['menu'] = '37';
    }
    return $args;
    }
    function custom_main_nav_menu( $args = '' ) {
    if($args['theme_location'] === 'avia')
    if ( wp_is_mobile() ) {
    $args['menu'] = '11';
    }
    return $args;
    }
    add_filter( 'wp_nav_menu_args', 'custom_main_nav_menu' );
    add_filter( 'wp_nav_menu_args', 'custom_top_nav_menu' );

    Adjusting the numbers to suit.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    If you have trouble please include an admin login in the Private Content area so we can assist.
    If you get an error from WordPress that you can’t add the code to your child theme functions.php then try doing so via FTP or your cPanel file manager.

    Best regards,
    Mike

    #1398551

    Topic: new google analytics

    in forum Enfold
    jeel147
    Participant

    hello, the old ‘UA’ stuff is coming to his end, isnt it?
    can i just paste the new google tracking code in the
    enfold Google Services field?

    like: G-XXXXXXXXXX

    or do i need the plugin Site Kit?

    best regards, jelle

    #1398550

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398539

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398537

    Hi,
    Thanks for the login, I corrected the curly quotes so the font for the mobile menu and blog category is correct now.
    I also found that you had an unclosed media query in your quick css breaking the mobile font size.
    I saw the issue with the h4 “Unsere Podencos” on the homepage, since this is corrected I assume the others are also, please clear your browser cache and check.
    I will close this thread, if you still have issues please respond to the other thread, thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Thanks for the login, I corrected the curly quotes so the font for the mobile menu and blog category is correct now.
    I also found that you had an unclosed media query in your quick css breaking the mobile font size.
    I saw the issue with the h4 “Unsere Podencos” on the homepage, since this is corrected I assume the others are also, please clear your browser cache and check.
    I will close this thread, if you still have issues please respond to the other thread, thank you for using Enfold.

    Best regards,
    Mike

    #1398530

    In reply to: Change menus on mobile

    Hey easybusyweb,
    Not as you have described, but you can go to Enfold Theme Options ▸ Main Menu ▸ Alternate Menu For Mobile and use a different menu for mobile devices.

    Best regards,
    Mike

    #1398529

    Hi,
    Thanks for the feedback, I didn’t see the script there. My first thought was to try downloading the mailerlite universal.js script and upload it to your site to solve the Cross-Origin Read Blocking (CORB), because if the file is called from your domain it should solve the issue, but your media library wouldn’t allow me to upload the universal.js script, so we would need to try with FTP access, if you can provide or if you can upload it with your cPanel file manager try adding a /js/ directory in your child theme and adding the universal.js script in it so the path is: /wp-content/themes/enfold-child/js/universal.js then use this URL in the script instead of static.mailerlite.com/js/universal.js I linked to the universal.js file below.

    So since I couldn’t do this on your site I created a test page on my demo, but when I added the script to WPcode and copied the code block I didn’t get the Cross-Origin Read Blocking (CORB) error and the reCAPTCHA shows and the form works from the page and then gives the correct redirect to your /thank-you-2/ page. Please give it a try and see if you had a new sign up for the name “support” and email ” (Email address hidden if logged out)

    I can’t explain why my Enfold demo doesn’t show the same error, perhaps a plugin like Wordfence Security or something else? Try disabling your plugins and see if your test page then works correctly, if not we can try adding the universal.js to your child theme as a workaround.

    Best regards,
    Mike

    #1398526

    In reply to: Demo import

    Hi,
    You can download the demos from our public GitHub library, but the demos are WordPress xml import files, from WordPress ▸ Tools ▸ Import as explained in our documentation: manually installing the demo.
    These xml files import the images and settings into the WordPress database by getting the content from our server, which it can’t complete because your server times out.
    This is how WordPress imports and it is a basic WordPress function, we don’t have a zip file of images because you can not import images into WordPress directly via FTP, images and settings must be imported into the WordPress database because they are serialized in the database, this is why WordPress created the xml import function.
    I hope this helps explain.

    Best regards,
    Mike

    #1398525

    Hi,
    Please check your css, it looks like you have a curly quote, similar to your other thread, which will break it, probably from copy & paste:
    Enfold_Support_422.jpeg
    If you have further trouble Please include an admin login in the Private Content area.

    Best regards,
    Mike

    #1398524

    Hi,
    Please check your css, it looks like you have a curly quote which will break it, probably from copy & paste:
    Enfold_Support_420.jpeg
    If you have further trouble Please include an admin login in the Private Content area.

    Best regards,
    Mike

    #1398523

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398522

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398521

    In reply to: list item color

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398520

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1398516

    Hi,

    Thanks for the update. Enfold is fully compatible with PHP 8, and I can’t reproduce the warnings you are getting on our test sites. Could you copy the site to a staging server, and update the PHP version there first maybe? Please note that these are warnings, and should not affect any functionality on your site.

    Best regards,
    Rikard

    #1398506

    Topic: Install One Page Demo

    in forum Enfold
    webbx
    Participant

    It is not possible to install the One Page Portfolio Demo.
    Bought Enfold yesterday. Installed on my WP. Go to Demo Import, click Import: One Page Portfolio Demo. According to the info, the theme is installed and ready. but what happens – nothing happens at all. https://webbxnu.wpcomstaging.com/
    The page doesn’t load at all.
    I have had many WP pages but never installed third party themes. Need all the help I can get. Thanks!

    Hey BELHADJAsma,
    This seems to be a duplicate thread, please see your other thread and reply there. Thank you for your patience and understanding and for using Enfold.

    Best regards,
    Mike

Viewing 30 results - 18,781 through 18,810 (of 244,618 total)