Forum Replies Created
-
AuthorPosts
-
Hi,
You’re welcome!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
You should put it in the functions.php file. Edit that file via Appearance > Editor panel or your file server. Adjust these parts:
__( 'Name' ) __( 'Email' ) __( 'Website' )Best regards,
IsmaelHi,
You’re welcome! Let us know if you need anything else.
Have a nice day! :)
Best regards,
IsmaelHi,
The “cachet” font is not from Google, so you can’t upload it on the theme’s custom font manager or use the the theme’s Google font filter. This filter in the functions.php file is not going to work.
add_filter ( 'avf_google_content_font', 'ddch_avia_add_font' ); add_filter ( 'avf_google_heading_font', 'ddch_avia_add_font' ); function ddch_avia_add_font ( $fonts ) { $fonts['cachet'] = 'cachet:400,500'; return $fonts; }Use the @font-face rule instead.
// https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp
Best regards,
IsmaelHi,
Thanks for the update.
That was actually intended. The filter will just query every upcoming events regardless of the category. Please post the login details in the private field so that we can test the filter.
Best regards,
IsmaelHi,
Thanks for the update. Please disable the security block temporarily and then provide the FTP details in the private field so that we can check the theme files. Unfortunately, we are not familiar with that plugin, so any additional info from the authors will help.
Best regards,
IsmaelAugust 3, 2018 at 12:23 pm in reply to: Trying to get the blog grid to look like your website's example #993221Hey HU_Dallas,
Thank you for using Enfold.
The site is still running on a very old version of the theme, 3.4.7. You need to upgrade to version 4.4.1. Please upgrade the theme and then re-configure the theme options a bit. You may need to disable the file compression options in the new Enfold > Performance panel.
After the update, go to the Enfold > Blog Layout panel and then set the Blog Layout settings to “Grid Layout”. Make sure that the blog page is set as blog in the Enfold > Theme Options panel and NOT as Posts Page in the Settings > Reading panel.
Best regards,
IsmaelAugust 3, 2018 at 12:18 pm in reply to: Enfold import demo, pretty sure it's not fully working #993218Hi,
Awesome! Glad that you figured it out! Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelHi,
The mobile menu is not displaying because of the following css code.
#header_main > .container { display: none; }Please remove that css code. If it doesn’t work, set the account user role to admin so that we can check the settings.
Best regards,
IsmaelHi,
The anchors are still working when I checked, even if the sections are hidden.
Best regards,
Ismael-
This reply was modified 7 years, 8 months ago by
Ismael.
Hi,
Where did you get the icon file? Please note that you can only upload icon fonts from fontello and flaticon. Did you get that collection from those sites?
Best regards,
IsmaelHey beyond-flora,
Thank you for using Enfold.
Did you set the page as Posts Page in the Settings > Reading panel? Please reset that option to default and then set the blog as blog in the Enfold > Theme Options panel.
Use the Loco Translate plugin to translate the default texts or strings.// https://wordpress.org/plugins/loco-translate/
If it’s not working, post the login details here so that we can check the settings.
Best regards,
IsmaelHi,
Great! If possible, please share the solution here so that other users will be able to search for it. :)
Best regards,
IsmaelHi,
Thanks for the update.
You need to use the latest version of the header.php file. The one inside the child theme is not updated.
And you can’t override the functions-enfold.php file in the child theme. Please remove that file.Best regards,
IsmaelAugust 3, 2018 at 11:28 am in reply to: Empty background-image property on each section element #993190Hi,
You’re welcome. Please let us know if you need anything else. :)
Best regards,
IsmaelHi,
You’re welcome!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelAugust 3, 2018 at 11:25 am in reply to: Attachment Display Settings – SIze Drop Down Box stopped working #993188Hi,
Thanks for the update. The site is not accessible though. It’s not loading on my end. Is that the correct URL?
Best regards,
IsmaelAugust 3, 2018 at 11:22 am in reply to: Color Section affecting Google Pagespeed Insights Rating #993187Hi,
Thanks for the update
According to the documentation, if the amount of the data above the fold exceeds 14.6kB, it will require additional round trips between the server and the user’s browser to render the whole content. The “laptop” image alone is 37.1KB so I don’t think you can’t get around or passed this criteria without removing the image, or using a smaller and compressed version of that image.
If the amount of data required exceeds the initial congestion window (typically 14.6kB compressed), it will require additional round trips between your server and the user’s browser. For users on networks with high latencies such as mobile networks this can cause significant delays to page loading.
// https://developers.google.com/speed/docs/insights/PrioritizeVisibleContent
Best regards,
IsmaelHi,
Thanks for the update.
That filter is supposed to remove the first trail “blog” on post pages. The first trail is not displaying when I checked the above post.
Unfortunately, you can’t add multiple categories to the trail. Only the first category will display.Best regards,
IsmaelHi,
1.) Yes, that’s correct. You can create a copy of that file and move it to the child theme folder to keep the changes in case of a theme update. :)
// https://developer.wordpress.org/themes/basics/template-files/
2.) You can use this filter to change the label and the markup of the comment form fields.
add_filter( 'comment_form_fields', 'avf_default_comment_fields', 10, 1); function avf_default_comment_fields($fields) { $fields = array( 'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" maxlength="245"' . $aria_req . $html_req . ' /></p>', 'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' . '<input id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" maxlength="100" aria-describedby="email-notes"' . $aria_req . $html_req . ' /></p>', 'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label> ' . '<input id="url" name="url" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" maxlength="200" /></p>', ); return $fields; }Best regards,
IsmaelAugust 3, 2018 at 10:56 am in reply to: Hover colour on main menu loses colour when moving mouse down to sub-menu items #993169Hi,
Thanks for the update.
Yes, I meant the WordPress login details. Please place it in the private field.
You can also create a login token. Just follow these steps:- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( do be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
Best regards,
IsmaelHi,
Where did you add the html code? These are the available parameters for the window.open function.
// https://www.w3schools.com/jsref/met_win_open.asp
Use the “wp_footer” action hook to create an inline script which listens for a specific menu item click event.
add_action('wp_footer', 'ava_open_luister_live', 9999); function ava_open_luister_live() { ?> <script> (function($) { $('#menu-item-3216').on('click', function(e) { e.preventDefault(); window.open("https://www.w3schools.com"); }); })(jQuery); </script> <?php }Add that script in the functions.php file and modify as required.
Best regards,
IsmaelHi,
Sure. We’ll keep the thread open. Let us know if you encounter any issues. :)
Best regards,
IsmaelAugust 3, 2018 at 10:41 am in reply to: Enfold – CSS & Javascript Merging and Compression not working #993155Hi,
I’m not really sure if I can fix this immediately because it seems to be related to the server. As you’ve said yourself, the compression works properly on another site.
I installed the Autoptimize plugin and now the files are compressed. I’m not seeing any issues with the site so far. (see private field)Best regards,
IsmaelHi,
Yeah, that will work but there would be no excerpt displayed. Is that OK with you? Odd thing is, it’s displaying the content of the ALB. You have to add the excerpt for every posts created with the advance layout builder manually.
Best regards,
IsmaelAugust 3, 2018 at 10:29 am in reply to: Fullwidth Easy Slider: takes too long to load – images are too hgh #993147Hi,
Thanks for the update.
I think the first example would work. Add these css code to limit the height of the slider and remove the before the masonry element.
#blue_section .flex_column .avia-slideshow { max-height: 330px; } #blue_section .av-flex-placeholder { width: 0%; }Best regards,
IsmaelHi,
Thanks for the update.
I set up to 10 (map loads per 100 seconds)
Now, you’re limiting it to 1 request every 10 seconds. My recommendation is to set it to 10 requests per second. That’s 1000 requests per 100 seconds.
The theme is using the dynamic map API because it has more options compare to the embedded map. Please refer to the API documentation if you want to know the difference.
The “DeletedApiProjectMapError” error means that you’re using an API key from a deleted project. Are you sure that you regenerate the key after you created the project?
Have you read the documentation?
// https://kriesi.at/documentation/enfold/google-map/
Best regards,
IsmaelHi,
Thanks for the update.
I re-organized the css codes on the Quick CSS field but there are still some css codes from the css > custom.css file that requires some adjustments. I can’t access it because the Appearance > Editor panel is not accessible.
You should put all your css modifications on a single place, whether it be the style.css file or the Quick CSS field. It will make your life easier in the long run. And don’t duplicate the same css media queries. I removed the duplicates and sorted the css media queries in the right order. Please review the css codes on the Quick CSS field.
Best regards,
IsmaelHi,
Thanks for the update.
I’ve added a custom script to remove the masonry items’ link and prevent the default behavior on click. You can add this on the Quick CSS field if you want to display the default cursor when you put the pointer over the items.
.av-masonry-entry { cursor: default; }This is the script.
add_action('wp_footer', 'ava_remove_masonry_link', 9999); function ava_remove_masonry_link() { ?> <script> (function($) { var page = $('body').is('.page-id-23'); if(page) { $('.av-masonry-entry').each(function() { $(this).attr('href', '#'); }); $('.av-masonry-entry').on('click', function(e) { e.preventDefault(); }); } })(jQuery); </script> <?php }Best regards,
Ismael -
This reply was modified 7 years, 8 months ago by
-
AuthorPosts
