Forum Replies Created
-
AuthorPosts
-
Hey!
I checked the file enfold/framework/php/class-framework-widgets.php in 4.4.5 folder and it was corrupted – it ended where the parser reported the error in line 2050.
I uploaded the correct version of the file in the folder. Can you check please.
Best regards,
GünterHey!
Please upgrade to Version 4.5 (released today).
Under Main Menu -> General Tab ypu have a new option “Alternate Menu for Mobile” where you can select a menu out of the defined menus.
Best regards,
GünterHi,
I checked it – the fix is included and it works on my dev server.
Did you clear server cache and browser cache (several times) ?
If this does not help please create an admin account for us so we can check the backend. You can post that in private content area.
Best regards,
GünterHi,
You are using an old version of Enfold. We released version 4.5 today – can you please upgrade and check again. The problem might be solved.
I checked your instagram account on my dev server and it works.
Best regards,
GünterOctober 10, 2018 at 11:00 am in reply to: Zeilenumbruch Text Block nicht möglich / Änderungen werden nicht umgesetzt #1019868Hey pagelib,
Danke dass Du Enfold verwendest.
Das ist ein Standardverhalten von Enfold und dem Editor, dass die Entertaste Absätze bildet und mehrere “Leerzeilen” hintereinander eliminiert werden.
Um grössere Abstände zu erhalten müsste man zwischen 2 Textblöcke ein Separator / Whitespace Element einfügen, wo man den Abstand definieren kann.
LG,
GünterHi,
Cannot reproduce the issue on my server.
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- 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!
If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.Best regards,
GünterHi,
Tried to login – but only have a white screen.
Following this thread I only see one chance: Try to setup your site with a clean Enfold and Enfold child theme and see if this works and your database is not crashed:
– Deactivate ALL plugins
– With FTP Rename your Enfold and Enfold child folder to have a backup for fallback
– Upload a new Enfold theme with FTP (version 4.4.1)
– Try to activate it and check if it works and you can edit and save pages/posts
– Upload a new Enfold Child theme
– Try to activate it and check if it works and you can edit and save pages/postsIf you are not successfull than it is most likle that the database is crashed.
– Then you have to activate one plugin after the other and check for a plugin conflict
– Next you have to add your customizations step by step and always check after each stepBest regards,
GünterHi,
Sorry for the late reply and the problems you have.
Can you please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Please create an admin user and post the login credentials in the “private data” field – and also your instagram account user so we can check.We experience some weired situations where user accounts work fine on our testservers but not on the client servers and we could not figure out why up to now.
Best regards,
GünterHi,
Sollte damit gehen (Beschreibungs-Tab):
add_filter('woocommerce_product_tabs', 'avia_remove_description_tab', 98); function avia_remove_description_tab($tabs) { unset($tabs['description']); return $tabs; }
Best regards,
GünterHi,
Maybe this could help you when contacting the hoster: https://kriesi.at/support/topic/please-help-issues-with-saving-anything-on-website/#post-1018958
It seems that some firewall setting is blocking the request.
admin-ajax is called from JavaScript sending requests to the server without reloading the page – therefore it does not make much sense calling it directly.
Best regards,
GünterOctober 8, 2018 at 1:21 pm in reply to: Please Help! Issues with saving anything on website! #1018967Hi,
Glad you got the save function to work – and thanks for posting this for our other users.
function.php issue is for certain an access problem – see my reply above https://kriesi.at/support/topic/please-help-issues-with-saving-anything-on-website/#post-1018492.
Best regards,
GünterHi,
Glad we could help you.
The fix is already merged for the next update 4.5. So you need not do anything when you update to this version.
Adding that fix to the functions.php is not possible. If you have a child theme you can copy the modified file to the child theme shortcodes folder.
If you need further assistance feel free to open a new topic – I will close this one for now.
Enjoy the theme and have a nice day.
Best regards,
GünterOctober 8, 2018 at 1:01 pm in reply to: Please Help! Issues with saving anything on website! #1018956Hi,
Sorry we could not help you in this case.
It might be that your DB is corrupted somehow. This might help you: https://www.maketecheasier.com/fix-corrupted-wordpress-database-2/.
Best regards,
GünterOctober 6, 2018 at 2:59 pm in reply to: Please Help! Issues with saving anything on website! #1018503Hi,
Yes – checked and see the problem. But if I switch to 2017 WP theme it shows the same behaviour – so the problem is not Enfold related.
I do not know if this is a life site so I did not mess around with making modifications to your settings.
– First clear all server cache (from both caching plugins) and browser cache
– Deactivate all plugins except WooCommerceIf the problem still occurs, try to change the permalink settings and save them several times and check (this might be a cause).
It is also recommended not to use 2 caching plugins.
I hope this helps you to solve the problem.
Best regards,
GünterOctober 6, 2018 at 1:29 pm in reply to: Please Help! Issues with saving anything on website! #1018492Hi,
I checked your site and added and updated a page and a product – both worked fine (see private content).
The file functions.php cannot be updated.
This is most likely a problem with server roles and access to files. There are FTP users and PHP users and it seems that the PHP user has no rights to modify functions.php.
Check with your hoster to grant the correct access rights.
Best regards,
GünterHi,
Freut mich, dass es eine Lösung gibt.
Du könntest noch probieren – schränkt es auf Einzelproduktseite ein:
add_filter('woocommerce_short_description', 'avia_replace_woocommerce_shortdescription'); function avia_replace_woocommerce_shortdescription($excerpt) { global $post; if( is_single() ) { if (!$post->post_content) return $excerpt; return apply_filters('the_content',$post->post_content); } return $excerpt; }
Best regards,
GünterHey tankerhq,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#top.single-product .component_selections > p.component_section_title { display: none; }
Best regards,
GünterHey marco_b,
Danke dass Du Enfold verwendest.
Um die doppelte Beschreibung auszublenden, geht mit CSS.
In Quick CSS section unter Enfold > General Styling oder im child theme’s style.css file:
#top.single-product .woocommerce-variation-description{ display: none; }
Zum Facebook plugin kann ich nichts sagen, da ich es nicht kenne.
Best regards,
GünterHey barbara,
Danke für Dein Interesse an Enfold.
Das Theme wird exklusiv NUR über Themeforest vertrieben und kann daher leider auch nur mit den dort angebotenen Zahlungsmethoden bezahlt werden.
Ein Direktverkauf ist leider nicht möglich.Best regards,
GünterOctober 5, 2018 at 2:30 pm in reply to: Enable the 'disable_mediaelement' avia option in Enfold #1018284Hey Dave,
There will be a filter in the next version (functions.php):
$condition = apply_filters( 'avf_enqueue_wp_mediaelement', $condition, $options );
Not sure yet but we might also add an option.
Best regards,
GünterHey!
I added to Quick CSS:
#main > div.sidebar_right:first-child{ max-width: 1310px; margin: 0 auto; }
This fixes the problem on the page in private content.
Cheers!
GünterHi,
In file enfold/config-templatebuilder/avia-shortcodes/codeblock.php line 258:
add_filter('avia_builder_precompile', array($this, 'code_block_extraction'), 1, 1);
Replace this line with:
add_filter('avia_builder_precompile', array($this, 'code_block_extraction'), 10, 1);
This should fix the problem. I added this fix for the next update.
Best regards,
GünterOctober 1, 2018 at 10:27 am in reply to: Enfold Instagram Widget not Working (Enfold 4.2.6, PHP 7.2) #1016530Hi,
As mentioned a few posts above (https://kriesi.at/support/topic/enfold-instagram-widget-not-working-enfold-4-2-6-php-7-2/#post-992944)
Please open a new thread and give us admin access and ftp access.
Best regards,
GünterHi,
Thank you for reporting this. I will have a look into it asap and will come back when we have a solution.
Best regards,
GünterHi,
In home page the burger menu appear only after I have scroll the page. I wish I have wisible since the page has loaded.
You have selected “Header is invisible and appears once the users scrolls down ” on the “Home” page. Change this setting.
Preferibly would be great to have the burger on the left. I suppose it is quite simple doing it using CSS.
Select the option “Logo right, Menu left” to change this
(WP Dashboard -> Enfold -> Header -> Menu and Logo Position
Best regards,
GünterHi,
Thanks for reporting this.
I am not able to reproduce it on my install. Do you have a staging site where you can reproduce the problem and we can get access to it to check the backend and settings and are allowed to modify settings and plugins ?
Best regards,
GünterSeptember 20, 2018 at 12:25 pm in reply to: Problem Updating Enfold: "Download failed. Problem downloading theme" #1012243Hi,
Envato has also changed the rules for the old API ( https://forums.envato.com/t/rate-limiting-on-the-legacy-api/188055 ).
We have added a temporary fix for it.
Please replace enfold/framework/php/auto-updates/class-pixelentity-theme-update.php with the updated file
Do not forget to make a backup of the original file for a fallback and clear server and browser cache.
We are working to switch to the new API asap.
Best regards,
GünterHi,
Please open an own topic for that and create an admin account for us. You can post the credentials and the link to the backend in private content there.
WP 4.4.2 is outdated – you should update to latest WP version 4.9.8. And also update Enfold to 4.4.1. There had been major changes in the Google Maps API and Enfold only supports this in the latest version as this also required changes in php and js code.Best regards,
Günter -
AuthorPosts