Forum Replies Created
-
AuthorPosts
-
May 10, 2021 at 6:12 am in reply to: "Custom Product Tabs for WooCommerce" Plugin Display Problem #1299261
Hi,
Awesome! Glad that worked. Please feel free to open another thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Great! Glad to know that it is solved. Please do not hesitate to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Unfortunately, we do not know what permissions the user role should or should not have in order to edit the contact form. You may need to contact the plugin developer for that.
You can also check this documentation to control access to the forms.
// https://contactform7.com/restricting-access-to-the-administration-panel/
According to it, Contact Form 7 allows all users except subscriber users to have access to the administration panel; but allows only administrator and editor users to edit contact forms. This is why the editor user role that we created above can still access the form. To work around that, try to declare the constants from the documentation to only allow access to user roles that can manage_options.
define( 'WPCF7_ADMIN_READ_CAPABILITY', 'manage_options' ); define( 'WPCF7_ADMIN_READ_WRITE_CAPABILITY', 'manage_options'
Best regards,
IsmaelHi,
Thank you for the info.
Is it working properly when the default editor is active?
Please provide the login credentials (in the “private data” field) so that we can take a look at the dashboard.
- 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 wordpress@kriesi.at ), as well as the ” Role ” making that the highest possible and the expiry about four days
( to 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 the issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.Best regards,
IsmaelMay 10, 2021 at 5:59 am in reply to: Language flags back in the menu after upgrading to 4.8.2 #1299245Hi,
Glad to know that the option is working. Please feel free to open another thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
We did not find the filter or code in the functions.php file, so we added it again. We also renamed the font to Roboto New, and reselected it from the Enfold > General Styling > Fonts panel. The correct font weight is now displaying properly. Please do not forget to purge the cache before checking the page.
Best regards,
IsmaelHi,
@hacart: Please continue here: https://kriesi.at/support/topic/hide-social-icons-in-main-menu-of-desktop-version/#post-1297754Best regards,
IsmaelHi,
Thank you for the info.
We still see the same error in the browser console and the core scripts are still concatenated. Are you sure that CONCATENATE_SCRIPTS is set to false? Please post the FTP details in the private field so that we could edit the core files and check the issue further.
Best regards,
IsmaelHi,
Unfortunately, we are still not sure what is causing the issue. Additional info from the plugin developers might help. Did you previously use the Webtoffee PayPal express plugin?
Please disable the plugin or remove it completely, then optimize the database and remove any transients that the plugin might have left. This plugin should help with the database optimization.
// https://wordpress.org/plugins/wp-optimize/
Best regards,
IsmaelHi,
We tested the site using the lighthouse tool and the result showed that the CLS score is already 0 — there is minimal or no layout shift in the page anymore. But the site needs further optimization. You may need to purge the cache in your end or test the site using another machine. Please check the screenshot below.
Screenshot: https://imgur.com/KPqBnMs
Best regards,
IsmaelHi,
Do you still have a copy of the latest version 4.8.2? The files should for the static folder should be there. If not, go to the Enfold > Layout Builder panel and set the Integrated (Bundled) LayerSlider Plugin settings to the second option to deactivate the layer slider.
Best regards,
IsmaelHi,
We get this error when we try to update the theme, and it looks like your token does not have the correct permissions.
Errors occurred checking on 2021/05/07 08:26:
Download Package URL: Errorcode 403 returned by Envato: Forbidden:
– response_code: 403
– reason: scope-missing
Download Package URL: A problem occurred accessing your download link. Unable to perform update.
Following Envato package errors occurred:
Enfold – Request for Download URL failed.Please generate another token and make sure that the token has the necessary permissions.
View and search Envato sites (checked by default)
View your Envato account username
View your email address
View your account profile details
Download your purchased items
Verify purchases of your item
List purchases you’ve madeThe following documentation should help.
// https://kriesi.at/documentation/enfold/theme-registration/#toggle-id-5
Best regards,
IsmaelHi,
The static folder should not be empty and should contain these files.
Screenshot: https://imgur.com/NjqlveO
Please get copies of the missing files from the theme zip file and move it to the static directory.
Best regards,
IsmaelHi,
Thank you for the update.
Looks like this is a common issue with the WP import. Another user created a tool that prevents conversion of paragraphs to br tags, which is probably what is happening in your import. The tool is available in the following link.
// https://scotthom.com/2018/12/fix-wordpress-import-wpautop/
Download the zip file, extract it to the same directory where your XML file is, then run this command.
php fix-wordpress-export-wpautop.php < original-export-file.xml > new-export-file.xml
Replace the file name with the actual name of your XML file and the desired output name.
IMPORTANT: Please create a backup of the XML file before doing the steps above.
This is the original thread: https://wordpress.org/support/topic/double-line-breaks-changed-to-single-line-breaks-after-importing-xml-file/
Best regards,
IsmaelHi,
Thank you for the update.
You can adjust the style of lightbox container so that it only takes a percentage of the screen instead of depending on the content. Try to use this css code.
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content { width: 80%; margin: 50px; }
We also added a 50px margin around the lightbox container.
Best regards,
IsmaelHi,
Alright. Please feel free to open another thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
That should be possible. Please add these filters in the functions.php file to disable the time in the event list.
// disables the time for event list function ava_remove_time_list_view( $settings ) { $settings["time"] = false; return $settings; } add_filter( "tribe_events_event_schedule_details_formatting", "ava_remove_time_list_view" ); function ava_remove_end_date ( $settings ) { $settings["show_end_time"] = false; return $settings; } add_filter( 'tribe_events_event_schedule_details_formatting', 'ava_remove_end_date' );
Best regards,
IsmaelHi,
Thanks for the update.
We have added this script in the functions.php file to add the no-scroll class name to the hotspot links. This prevents the document from scrolling when clicking a hotspot with an anchor.
// a custom script // prevent hotspot scroll function ava_custom_script_mod() { if ( wp_script_is( 'avia-default', 'registered' ) ) { wp_add_inline_script( 'avia-default', ' (function($) { $(document).ready(function() { $("a.av-image-hotspot_inner").each(function() { $(this).addClass("no-scroll"); }); }); })(jQuery); '); } } add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);
Best regards,
IsmaelHi,
Thank you for the inquiry.
Would you mind posting the changes that you did with the previous code using the avia_meta_header hook?
We were able to login to the site but the Appearance > Editor panel is not accessible, so we could not edit the files. Please enable the local editor or post the FTP details in the private field.
Best regards,
IsmaelMay 7, 2021 at 9:28 am in reply to: Sidebar Logo and Main Menu Sticky option not working anymore #1298883Hi,
No problem. We will add a link to the modified file here.
modified enfold/js/avia-snippet-sidebarmenu.js : https://pastebin.com/ewFtY1kE
The actual fix will be included in the next patch.
Best regards,
IsmaelHi,
Thank you for the info.
The URE plugin is not available when we checked the site, so we installed it and created a new user with the editor role. We do not know the actual configuration of the user role that you previously created, so we used the default editor role from the plugin. We then logged in using the new user account, and was able to create a page using the advance layout builder. (see private field)
Best regards,
IsmaelHi,
Is “green” an actual name of a category? This is why it is not working.
.category-green #top
The #top is the ID of the body element and .category-green is one of its class names, so you have to combine those selectors.
#top.category-green
Or just use..
.category-green
.. without the #top selector or ID.
Best regards,
IsmaelMay 7, 2021 at 9:03 am in reply to: Language flags back in the menu after upgrading to 4.8.2 #1298879Hi,
We just noticed that there is a new settings in the Enfold > Header > Extra Elements panel. The Enfold WPML Language Flags ( global setting – used for all languages ) settings should allow you to disable the default flags from the theme without removing the extra filters that the avia_WPML class added.
@Bernd: We set the settings to the second option to disable the flags.Best regards,
IsmaelHi,
so no partial limitation of MemberPress.
What do you mean by that exactly? How is the more tag connected to the membership plugin?
We may need to access the site in order to check this properly, but we cannot assure you that we can come up with something. As we have said previously, the more tag is not compatible with the advance layout builder, and will only work with the default editor.
Best regards,
IsmaelHi,
No problem. Looks like you have also managed to adjust the style or position of the switcher on mobile using a css media query.
@media only screen and (max-width: 767px) { #av-custom-lang-switcher { position: absolute; right: 26px; bottom: -5px; z-index: 9999; text-transform: uppercase; font-size: 12px; } }
Best regards,
IsmaelHi,
Looks like you are using a different lightbox plugin, and not the default one from the theme. You may need to contact the plugin authors regarding the lightbox gallery issue.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
The layout settings are working properly on our end. To test it, we drafted a page and toggled the layout settings. (see private field)
Screenshot: https://imgur.com/YZij223
Best regards,
IsmaelMay 6, 2021 at 12:15 pm in reply to: Desktop version behaving weirdly when scrolling on Microsoft Edge and Explorer #1298775Hey Harold,
Thank you for the inquiry.
Site looks and scrolls perfectly fine on MS Edge and IE browsers — at least on our end. Would you mind providing a screencast of the issue?
This is how we see the site on our end. https://gifyu.com/image/5uPr
Best regards,
IsmaelHey Susanne,
Thank you for the inquiry.
1.) Did you upload the Oswald font in the font manager? For some reason, the font of the headings is set to “static”.
2.) The image in the erkant site has a different aspect ratio compare to the kijuaa site. The slider image is almost square or has an aspect ratio of 1:1, while in the kijuaa site, it is more of a landscape image, which is why it is shorter.
Best regards,
IsmaelHey buddy1,
Thank you for the inquiry.
The latest version 4.8.2 shows up in the Enfold > Theme Update panel. What is the error that you get when you try to update the theme?
Is there a site backup? We would like to try and update the theme from the dashboard. A restore point or a site backup might be needed in case something went wrong.
You can also try to update the theme manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
Ismael -
AuthorPosts