Viewing 30 results - 19,231 through 19,260 (of 244,605 total)
  • Author
    Search Results
  • #1396801

    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

    #1396796

    Hey pscheffcenvato,
    Thanks for the link to your site, current the logo used is: header04b-300×42.png that is 300×42 not your full size.
    I believe the image you want to use is the one linked below, to apply this to your theme settings please go to Enfold Theme Options ▸ Logo and paste the url below, and then save the theme settings with the blue button at the top of the page.
    Don’t add the logo by using the upload button as it will set the smaller size.
    If you have trouble Please include an admin login in the Private Content area so we can help.

    Best regards,
    Mike

    #1396794

    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

    #1396785

    Hi,
    I tested your font file on my demo site and because it is a OTF file type the Custom Font Manager didn’t extract it it only created a folder so in the setting it looks like an option, so as Ismael pointed out above only Google fonts are allowed in the Custom Font Manager.
    I tested this workaround, first extract your font zip to your computer, you will see the font is named insigne – Belda Norm Regular.otf change to belda-font.otf for easier use and upload to your site via FTP, for example: /wp-content/uploads/dynamic_avia/avia_type_fonts/belda-font/belda-font.otf anywhere should be fine, this is what worked for me.
    Then add this css to your child theme stylesheet, or your parent theme custom.css file or use a plugin like WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets.

    @font-face {
      font-family: 'belda-font';
      src: url('/wp-content/uploads/dynamic_avia/avia_type_fonts/belda-font/belda-font.otf') format('opentype');
    }

    Then to use the font you will create another css rule, this example is for H1 special heading element:

    h1.av-special-heading-tag {
    	font-family: belda-font;
    }

    but you can target any element you wish.
    Then clear your browser cache and check, this is the results I received:
    Enfold_Support_300.jpeg

    Best regards,
    Mike

    #1396781

    In reply to: transparent yes or now

    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

    #1396777

    Hi,
    Please follow these steps to remove the #top from being added to your current page menu links,
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function wp_change_aviajs() {
    	wp_dequeue_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'));
    	wp_deregister_script(  'avia-default', $template_url.'/js/avia.js', array('jquery'));
    	wp_enqueue_script( 'avia-default', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'));
    	
    	}
    	add_action( 'wp_enqueue_scripts', 'wp_change_aviajs', 100 );

    Then in your child theme directory add the directory js via FTP and add this file inside the js directory.
    Then clear your browser cache and any cache plugin, and check.
    You may need to clear the cache a few times.

    For anyone interested, in /enfold/js/avia.js on line 276 (v5.4) find:
    matching_link = this.$body.find(this.selector + "[href='"+current+"']").attr('href',current+'#top');
    and change to:
    matching_link = this.$body.find(this.selector + "[href='"+current+"']").attr('href',current);

    Best regards,
    Mike

    #1396773

    Hey spiritglobe,
    Typically you would change the page shown as the homepage at: Enfold Theme Options ▸ Theme Options ▸ Frontpage Settings
    If you have the page set here but it’s still not right check the WordPress setting to see if it is conflicting with the theme at: WordPress ▸ Settings ▸ Reading ▸ Your homepage displays
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    #1396771

    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

    #1396764

    No, guys. You are wrong. Main page of the Enfold default little bit same as search results page.
    Let look closer. I put link to screencast video in private. This is problem of main theme. When you click to second page of search results you will come to 2nd page of main page, not to 2nd page of search results.

    #1396759

    Hi,
    Thanks for the login, I looked at WordPress ▸ Dashboard ▸ Tools ▸ Site Health ▸ Info ▸ Server and it looks ok but I didn’t know which demo you want to install.
    Did you try our documentation: How to manually import a theme demo, if you did and still have trouble please tell us which demo and include FTP access so we can try.

    Best regards,
    Mike

    #1396757

    In reply to: Edit Front Problem

    Hi IBRAHIMBerro,

    Thanks for providing us with FTP access.
    I was able to modify wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-popup-templates.php and commented out this codes (line 715-7450:

    array(
    	'name'		=> __( 'Background Image', 'avia_framework'),
    	'desc'		=> __( 'Select an existing or upload a new background image.', 'avia_framework' ),
    	'id'		=> 'overlay_pattern',
    	'type'		=> 'select',
    	'folder'	=> 'images/background-images/',
    	'folderlabel'	=> '',
    	'group'		=> 'Select predefined pattern',
    	'exclude'	=> array( 'fullsize-', 'gradient' ),
    	'std'		=> '',
    	'lockable'	=> $lockable,
    	'required'	=> array( 'overlay_enable', 'not', '' ),
    	'subtype'	=> array(
    						__( 'No Background Image', 'avia_framework')	=> '',
    						__( 'Upload custom image', 'avia_framework')	=> 'custom'
    					)
    ),
    
    array(
    	'name'		=> __( 'Custom Pattern', 'avia_framework' ),
    	'desc'		=> __( 'Upload your own seamless pattern', 'avia_framework' ),
    	'id'		=> 'overlay_custom_pattern',
    	'type'		=> 'image',
    	'fetch'		=> 'url',
    	'secondary_img' => true,
    	'title'		=> __( 'Insert Pattern', 'avia_framework' ),
    	'button'	=> __( 'Insert', 'avia_framework' ),
    	'std'		=> '',
    	'lockable'	=> $lockable,
    	'required'	=> array( 'overlay_pattern', 'equals', 'custom' )
    )

    This is only just a temporary solution and you will need to do this on every theme update since any changes on the parent theme will be overridden during the theme update.
    Also, with this code removed, background overlays will not work.
    If the hosting provider will still refuse to fix the issue then I would suggest you would consider to migrate to a better hosting provider.

    Best regards,
    Nikko

    #1396756
    Katja
    Participant

    Hallo,

    ich bin seit vielen Jahren zufriedener Enfold-Nutzer und habe nun eine neue Webseite damit aufgesetzt (noch nicht live). Darin habe ich einige Seiten, die als Begleitinformation zu einem Buch per QR-Code bzw. direkten Link aufrufbar sein sollen. Über das Yoast SEO Plugin habe ich die Indizierung dieser Seiten für Suchmaschinen unterbunden. Auch über die Menüs meiner Seite sind sie nicht aufrufbar. Nun jedoch eine Frage: (Wie) kann ich diese Seiten von der Standard-Enfold-Suche (oben im Menü) ausschließen? Am besten wäre ein Ausschluss anhand der URL, z.B. “/tour*”, da die Seiten alle mit dem gleichen Kürzel beginnen, sich dann aber durch eindeutige dreistellige Nummern unterscheiden.

    Ist so etwas möglich? Im Forum konnte ich dazu nichts finden.

    Danke!
    Katja

    #1396755

    In reply to: Support Anfrage

    Hi gregwu,

    Yes, we will help you.
    Please register here first: https://kriesi.at/support/register/
    Once you have successfully registered, post a new topic here: https://kriesi.at/support/forum/enfold/#new-post
    Just post the link to this thread so we can continue on the conversation.
    Best regards,
    Nikko

    #1396753

    Topic: woocommerce booking

    in forum Enfold
    BELHADJAsma
    Participant

    hello ;
    i want use woocommerce booking with enfold theme for my hotel website
    it’s possible to add avaibility forum with start day and end date number of adults and child to my home page !!

    thank you

    #1396742

    Hey gabrimore98,
    Thanks for the link to your site, I see that you are using v5.1.2, please update to v5.4 and clear your server, website plugin, and browser cache and check again.
    I see that you don’t have a Inserisci un token privato Envato valido in place, please see our documentation: How to generate a Envato Personal Token
    Or you can manually update your version of Enfold you can download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    #1396741

    Hi,
    Glad Ismael could 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

    #1396740

    Hi,
    Thanks for the video and the login, I network deactivated the Classic Editor plugin and the issue is solved.
    This plugin is not needed and the Classic Editor option is built into the theme at Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor
    Please try using the theme option for your network, I reenabled the Classic Editor plugin so please test by disabling it on the network first.
    **Update I found that your Classic Editor plugin can stay network activated if you change the theme option to Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor, but I still recommend removeing the network Classic Editor plugin.

    Best regards,
    Mike

    #1396737

    In reply to: Support Anfrage

    This reply has been marked as private.
    #1396736

    Hey frasche,
    Please use the theme settings at Enfold Theme Options ▸ Main Menu ▸ Burger/Mobile Menu ▸ Clone title menu items to submenu
    Then will clone the parent menu item so that in it’s dropdown on mobile you will have the option to go to the parent item link.
    On mobile you can’t have the parent item open a drop-down on click and go to the link on click, on mobile there is not hover action.
    If you would like to change the parent item name try this solution, if you are not sure how to adjust the code for your site please like yo your site and tell us what new name you wish to use so we can help.
    Most often people find using the standard Clone title is fine.

    Best regards,
    Mike

    #1396711

    Hi yundian,

    Please try to edit this file: enfold/includes/helper-main-menu.php and remove this line of code (line 198).

    'theme_location'	=> $avia_theme_location,

    See if this helps.

    Best regards,
    Nikko

    #1396707

    In reply to: Remove Category link

    Hi yundian,

    You’re welcome :)
    We’ll be checking on your other thread.
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

    #1396695

    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

    #1396691

    Hi,
    Try this css:

    #top .social_bookmarks_facebook a:before {
    	color: blue;
    }
    #top .social_bookmarks_facebook:hover a:before {
    	color: white;
    }
    #top .social_bookmarks_instagram a:before {
    	color: #a67658;
    }
    #top .social_bookmarks_instagram:hover a:before {
    	color: white;
    }
    #top .social_bookmarks_linkedin a:before {
    	color: #419cca;
    }
    #top .social_bookmarks_linkedin:hover a:before {
    	color: white;
    }

    before scroll it looks like this:
    Enfold_Support_288.jpeg
    and on hover it looks like this:
    Enfold_Support_290.jpeg
    but since on scroll your header is black I don’t know what color you want for not on hover:
    Enfold_Support_294.jpeg
    on scroll and hover looks good:
    Enfold_Support_292.jpeg

    Best regards,
    Mike

    #1396687

    Hi,
    Sorry we were not able to help with this one, 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

    #1396681

    HI Rikard,
    No, this is the Enfold secondary menu (the Main Menu is created with the Uber Mega Menu plugin).
    Thanks
    Lyse

    #1396666

    Thank you for your help. I was able to migrate the sub-site to a development server so you can have full access to everything you need.

    When I moved it, the error is now different. No console errors, but the visual editor doesn’t load unless I publish the post. Nor can I switch to the Enfold Advance editor without first publishing the post.

    This issue gets fixed when I activate the 2023 default theme. But then shows back up when I reactivate Enfold.

    All the credentials are in the private area below. Please let me know what else I can do to assist.

    #1396665

    Hi,
    Thanks for your feedback and the screenshots, the http:// in the page code that I see in the screenshots are for empty links,
    Enfold_Support_282.jpeg
    Typically the default http:// or https:// is based on your WordPress install, I would check your
    WordPress ▸ Settings ▸ General ▸ Site Address
    and
    WordPress ▸ Settings ▸ General ▸ WordPress Address

    to ensure your site is using https://
    I tested on my demo site which is https:// and all default links are also https://
    Your third screenshot for http://www.w3.org/2000/svg is an XML namespace defined in the Scalable Vector Graphics (SVG), these do not interfere with https:// as it is incorrect to use https in the namespace values. Those values are defined namespace constants. They are not real URLs. (source)
    Enfold_Support_284.jpeg
    I also see this is a Block element and not a theme element.

    Best regards,
    Mike

    #1396660

    Hi,
    Guenni007 thanks for your input, your css worked good for my demo site:

    #top #main img[src*=".svg"],
    #top #main svg {
      width: 1000px;
    }

    But the AddType image/svg+xml .svg .svgz in my htaccess file didn’t help.
    I found this article on how to test your site for Support of SVG as img and added the test to my site and it returned true and it showed the test SVG without add your css for width.
    Enfold_Support_280.jpeg
    So it seems my site is supporting SVG as a img without the htaccess code.
    For some reason the animated SVG that Monika linked to needed a width set with css to show on my site, perhaps this was by design, but since it was linked in the Private Content area I don’t think I should share publicly so you can also test, perhaps Monika will post publicly, but it seems the main issue was the animation was not working, hopefully the steps I posted above will help.
    Thanks again Guenni007

    Best regards,
    Mike

    #1396659
    obimedia2
    Participant

    Hi
    I’ve installed the Enfold theme and then the Child theme. Have increased PHP limits, deactivated plugins and still can’t import the demo. I’ve done this many, many times before for other clients and can’t see why this is happening.

    This is the error …
    Error accessing file for download:
    cURL error 28: Connection timeout after 10001 ms

    I’ve followed the advice on another similar issue on this support but it didn’t work.

    #1396658

    Thank you for your message.

    I did just try the footer widgets; there is a lot of code. I removed every widget and tried again. but ran into the same error.

    I’ve also deactivated plugins. I have not tried switching the theme. How does that work with Enfold? If I switch to 2023 from WP, will the settings save for when I switch it back? Or will the entire settings and layouts need to be rebuilt?

Viewing 30 results - 19,231 through 19,260 (of 244,605 total)