Forum Replies Created
-
AuthorPosts
-
August 8, 2018 at 3:39 am in reply to: Need immediate help, please-Enfold conflicting with WP-Admin login. Error code #994672
Hi,
Thanks for the update.
I think the issue has got to do with the PHP version. Please upgrade PHP from 7.0 to 7.1.7 and then restart the server.
I am currently debugging the issue but then the login token expired. Please create login token with a longer expiry.We are very sorry for the inconvenience.
Best regards,
IsmaelHi,
The phone info texts are already changed. Did you figure it out?
Best regards,
IsmaelHi,
Thanks for the update.
That is actually how it’s supposed to work. Those resources contains the actual font style (font weights, src, unicode range etc). The theme loads the main css font file (e.g: https://fonts.googleapis.com/css?family=Open+Sans:400,600%7CTenor+Sans) which contains the font-face rules and various info regarding the font style. The actual font files are then fetch from their designated URLs. You should see the following URLs inside the main css font file.
https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0b.woff2 https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOUuhp.woff2Best regards,
IsmaelHi Roberto!
Thanks for the update.
The login details are not working. Please check it carefully. Or try this script.
add_action('wp_footer', 'ava_colorize_categories', 9999); function ava_colorize_categories() { ?> <script> (function($) { function a() { $('.blog-categories a').each(function() { var link = $(this); var text = link.text(); switch(text) { case 'Fitness': link.css('background', '#E46C0A'); break; case 'Karate': link.css('background', '#CC1212'); break; case 'Danza': link.css('background', '#A812C4'); break; case 'Tai Chi': link.css('background', '#31859C'); break; default: return null } }); } a(); })(jQuery); </script> <?php }Regards,
IsmaelHi,
Alright. Please continue on the other thread. We’ll close this one now. :)
Best regards,
IsmaelAugust 8, 2018 at 2:27 am in reply to: Blog dates not showing on translation page and blog notifications to subscribers #994658Hi,
I would like to do some tests but I can’t edit the files via the dashboard editor. Please post the FTP login details in the private field. The above FTP login details are incomplete.
Best regards,
IsmaelHi,
I got the same settings but this is what I get when I try to connect.
Status: Resolving address of youromain.com Status: Connecting to IP Address... Status: Connection established, waiting for welcome message... Response: 220 ProFTPD 1.3.5b Server (ProFTPD) [IP Address] Command: AUTH TLS Error: Connection timed out after 20 seconds of inactivity Error: Could not connect to server Status: Waiting to retry... Status: Resolving address of yourdomain.com Status: Connecting to IP Address... Status: Connection established, waiting for welcome message... Response: 220 ProFTPD 1.3.5b Server (ProFTPD) [IP Address] Command: AUTH TLSDid you block certain countries? You can find us here: http://kriesi.at/about
Best regards,
IsmaelHi,
Thanks for the update.
I adjusted the filter a bit. The widget is now inside the top bar or meta header. Add a few css codes to adjust the its position.
/* ADD HEADER */ add_action( 'ava_after_main_menu', 'ava_after_main_menu_header_widget' ); function ava_after_main_menu_header_widget() { dynamic_sidebar( 'header' ); } add_action( 'avia_meta_header', 'avia_meta_header_woo_tax' ); function avia_meta_header_woo_tax() { dynamic_sidebar( 'meta-header' ); } add_filter('avf_execute_avia_meta_header', '__return_true' );Best regards,
IsmaelHi,
Thanks for the update.
I adjusted the src attribute of the img tag, so that it’s using the original source of the image instead of a thumbnail.
<img class="aligncenter size-medium wp-image-428" src="//www.baby-kracht.nl/wp-content/uploads/2018/06/ME-logologo-wit.png" alt="" width="900" height="303" />Best regards,
IsmaelAugust 8, 2018 at 1:51 am in reply to: [URGENT]: Header icon displaying & menu changes color #994650Hi,
I already removed the following css code but it’s still being applied in the frontend. The resources are cached.
@media only screen and (max-width: 989px) { .logo, .logo a, .logo a img { max-height: 156px !important; } }Please ask your hosting provider if there is a server cache and enable the Appearance > Editor panel so that we can edit the style.css file.
Best regards,
IsmaelHi,
Thanks for the update. I adjusted the css code a bit. It is working properly now.
Best regards,
IsmaelHi,
That same css code works on my end. Can we take a look at the post with the comment form? Please provide a mock up or a screenshot of the end result so that we can see what you’re trying to achieve.
Best regards,
IsmaelHey!
clicking “Edit Page” in the admin top bar for example – which takes you to the Guttenberg editor.
That is the whole point of the code above. As we’ve said, the plugin alters the default post editor links, making “Gutenberg” as the default editor, so clicking on the “Edit” panel or the post/page title will redirect you to the new editor instead of opening the advance layout builder, contrary to what you would expect when using the Enfold theme. The above filter reverts the links back to default so that the “Edit” and the post/page title open the classic editor and then creates a new “Gutenberg Editor” button so that you can still choose the new editor when necessary.
clicking “Edit Page” in the admin top bar for example
Use this filter to change the admin toolbar link.
function avia_builder_gutenberg_admin_bar_link($wp_adminbar) { if( ! is_admin() && AviaBuilder::get_alb_builder_status( get_the_ID() ) == 'active' ) { $edit_node = $wp_adminbar->get_node('edit'); $wp_adminbar->remove_menu('edit'); $title = is_home() ? 'Frontpage' : get_the_title(); $link = add_query_arg('classic-editor', '', $edit_node->href); $args = array( 'id' => $edit_node->id, 'title' => $edit_node->title, 'href' => $link, 'parent' => false, 'group' => false, 'meta' => array( 'target' => 'blank' ) ); $wp_adminbar->add_node( $args ); } } add_action('admin_bar_menu', 'avia_builder_gutenberg_admin_bar_link', 999);Regards,
IsmaelHi,
Thank you for using Enfold.
The new editor alters the default page/post edit link automatically, but you can override that with this in the functions.php file so that you can edit the pages in the advance layout builder while having the option to switch to the gutenberg editor.
/** * Registers an additional link in the post/page screens to edit any post/page in Gunterberg * and reverts the default edit link back to the classic editor. * * @since 4.4.2 * * @param array $actions Post actions. * @param WP_Post $post Edited post. * * @return array Updated post actions. */ if(!function_exists('avia_builder_gutenberg_add_edit_link')) { remove_action( 'admin_init', 'gutenberg_add_edit_link_filters' ); function avia_builder_gutenberg_add_edit_link( $actions, $post ) { if ( ! is_plugin_active('gutenberg/gutenberg.php') ) { return $actions; } $gutenberg = get_edit_post_link( $post->ID, 'raw' ); // Build the classic edit action. See also: WP_Posts_List_Table::handle_row_actions(). $title = _draft_or_post_title( $post->ID ); $edit_action = array( 'classic' => sprintf( '<a href="%s" aria-label="%s">%s</a>', esc_url( str_replace('&classic-editor', '', $gutenberg) ), esc_attr( sprintf( /* translators: %s: post title */ __( 'Edit “%s” in the new editor', 'avia_framework' ), $title ) ), __( 'Gutenber Editor', 'avia_framework' ) ), ); // Insert the Classic Edit action after the Edit action. $edit_offset = array_search( 'edit', array_keys( $actions ), true ); $actions = array_merge( array_slice( $actions, 0, $edit_offset + 1 ), $edit_action, array_slice( $actions, $edit_offset + 1 ) ); return $actions; } add_filter( 'page_row_actions', 'avia_builder_gutenberg_add_edit_link', 10, 2 ); add_filter( 'post_row_actions', 'avia_builder_gutenberg_add_edit_link', 10, 2 ); add_filter('get_edit_post_link', 'avia_builder_gutenberg_edit_post_link', 999, 3); } if(!function_exists('avia_builder_gutenberg_edit_post_link')) { /** * Set the edit post link to the classic editor. * * @since 4.4.2 * * @return string $link. */ function avia_builder_gutenberg_edit_post_link($link, $id, $context) { return add_query_arg('classic-editor', '', $link); } }After adding the filter, you should see these changes in the pages/posts panel.
Screenshot: https://imgur.com/a/rj8KSuY
Best regards,
IsmaelHey FloppySocks,+
Thank you for using Enfold.
Add this css code to make the tables scrollable.
.avia_codeblock_section, .avia_codeblock_section table { overflow-x: scroll; width: 100%; }Best regards,
IsmaelAugust 7, 2018 at 5:42 am in reply to: How Can I pages from multiple demo files to Enfold 2017 demo that I uploaded? #994215Hey jamesbarren,
Thank you for using Enfold.
You can’t import the demo pages without losing the current one but we can give you the actual shortcodes for those pages.
1) This is the default Events Calendar page. https://wordpress.org/plugins/the-events-calendar/
2) https://pastebin.com/QrAg0Db1
3) https://pastebin.com/4dYYbaPSYou need to enable the debug mode and then copy those shortcodes in the builder’s debug mode field.
// https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode
Best regards,
IsmaelAugust 7, 2018 at 5:39 am in reply to: Problem with Google Maps after installing SSL Certificate #994213Hey Ruppenthal1601,
Thank you for using Enfold.
Did you enable the Geocoding Services API? Please refer to the documentation for more info.
// https://kriesi.at/documentation/enfold/google-map/#enable-services-for-google-api
Best regards,
IsmaelHi,
Did you add tags to the portfolio items and set the masonry’s size settings to “Perfect Manual Masonry”?
Perfect Manual Masonry: Manually control the height and width of entries by adding either a “landscape” or “portrait” tag when creating the entry. Elements with no such tag use a fixed default size, elements with both tags will display extra large
Best regards,
IsmaelAugust 7, 2018 at 5:31 am in reply to: you do not see the full-width easy slider in the mobile version #994210Hey desdeelarenal,
Thank you for using Enfold.
You need to add a fallback image because videos inside the slider won’t autoplay on mobile devices. Edit the slider and then supply a fallback image. You can also add the video url as fallback link if you want to open the video inside a lightbox on mobile view.
Best regards,
IsmaelHey Kesselhut,
Thank you for using Enfold.
You can only display the mega menu as shown in the demo by default, but you can start with these css codes to alter the default style of the menu container.
#top #header .avia_mega_div .sub-menu li .sub-menu { width: auto; float: left; clear: none; top: 12px; } #top #header .avia_mega_div .sub-menu li .sub-menu li { display: block; float: left; clear: none; width: auto; } #header .mega_menu_title { display: block; float: left; } #header .avia_mega_div .units { padding: 0; margin: 0; }It may require a few adjustments.
Best regards,
IsmaelHi,
The first hook that you used should have worked.
add_action( 'avia_meta_header', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'meta-header' ); }What happens when you add that hook? Please post the login details in the private field so that we can test it.
Best regards,
IsmaelHi,
This is happening because of the scripts related to the privacy policy features. I know it doesn’t sound related, but the theme disables automatic embedding of video elements unless the visitors chose to enable it. You need to replace the video shortcode with the actual iframe code. I edited the “Barcode Date and Lot Code Inspection” portfolio item as an example. (see private field)
You need to review the Enfold > Privacy and Cookies panel.
// https://kriesi.at/archives/enfold-4-4-and-the-gdpr-general-data-protection-regulation
Best regards,
IsmaelHi,
The following thread might help. Just follow the moderator’s instruction.
// https://wpml.org/forums/topic/translated-images-not-showing-after-updating-wpml/
Best regards,
IsmaelHi,
Yes, unfortunately, we can’t find any errors to start with. I’ll ask the team to check. Please wait for their response.
Best regards,
IsmaelAugust 7, 2018 at 4:03 am in reply to: Remove thumbnail overlay, disable changing of big image, remove first thumbnail #994197Hi,
I’m running out of ideas here. I’ll ask the rest of the team to check.
Best regards,
IsmaelHi,
The navigation can only fetch adjacent posts or posts that were created before and after the current post. It’s based on the following function.
// https://codex.wordpress.org/Function_Reference/get_adjacent_post
Best regards,
Ismael -
AuthorPosts
