Forum Replies Created
-
AuthorPosts
-
Hi,
You can try to reduce the z-index of the arrow with css code:
#top #wrap_all .scroll-down-link { z-index: 1; }
If you want to remove it you can use this code:
#top #wrap_all .scroll-down-link { display:none; }
Best regards,
DudeHi,
You can try to reduce the z-index of the arrow with css code:
#top #wrap_all .scroll-down-link { z-index: 1; }
If you want to remove it you can use this code:
#top #wrap_all .scroll-down-link { display:none; }
Best regards,
DudeHi,
You can try to reduce the z-index of the arrow with css code:
#top #wrap_all .scroll-down-link { z-index: 1; }
If you want to remove it you can use this code:
#top #wrap_all .scroll-down-link { display:none; }
Best regards,
DudeHi,
You can try to reduce the z-index of the arrow with css code:
#top #wrap_all .scroll-down-link { z-index: 1; }
If you want to remove it you can use this code:
#top #wrap_all .scroll-down-link { display:none; }
Best regards,
DudeHi,
You can try to reduce the z-index of the arrow with css code:
#top #wrap_all .scroll-down-link { z-index: 1; }
If you want to remove it you can use this code:
#top #wrap_all .scroll-down-link { display:none; }
Best regards,
DudeHi,
The theme files provided by themeforest are up to date and valid. Please try to install the theme via ftp ( https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#ftp-install ) and go to Appearance > Themes to activate Enfold.
Best regards,
DudeAugust 18, 2018 at 9:47 am in reply to: Beim Aktualisieren von Enfold ist ein Fehler aufgetreten: Download fehlgeschlage #998668Hi!
Vielen Dank für das Feedback, wir werden den Fix in das nächste Update übernehmen.LG,
PeterAugust 17, 2018 at 6:31 pm in reply to: Beim Aktualisieren von Enfold ist ein Fehler aufgetreten: Download fehlgeschlage #998545Hey!
Sehr gut – ich bitte um weiteres Feedback, damit wir den Fix für das nächste Update in das Framework übernehmen können.LG,
PeterAugust 17, 2018 at 6:11 pm in reply to: Beim Aktualisieren von Enfold ist ein Fehler aufgetreten: Download fehlgeschlage #998537Hi,
@volmering – Vielen Dank für die Login-Daten. Ich glaube ich konnte den Bug fixen – zumindest bei Dir funktionierte mein Fix.Ich bitte auch andere Benutzer meinen Fix auszuprobieren. Hierzu ladet bitte diese Datei herunter: https://pastebin.com/raw/epetJ1SG und speichert diese als class-pixelentity-theme-update.php ab. Dann ladet diese in den Ordner wp-content/themes/enfold/framework/php/auto-updates/ hoch und überschreibt dort die bestehende class-pixelentity-theme-update.php-Datei. Anschließend bitte sicherheitshalber 30 Sekunden warten und das Theme Update unter Dashboard > Aktualisierungen anstoßen.
Falls jemand selber patchen möchte:
Öffnet die class-pixelentity-theme-update.php und ersetzt Zeile 43:
$purchased = $api->wp_list_themes(true);
durch
$purchased = $api->wp_list_themes(true); // fixes a bug where $api->wp_list_themes returns several times the same theme/item data and breaks the envato update api because the theme updater tries to download the same theme several times and triggers a 429 error (see https://build.envato.com/api/#rate-limit) $filtered_purchased = array(); foreach ($purchased as $current) { if ( ! in_array($current, $filtered_purchased) ) { $filtered_purchased[] = $current; } } $purchased = $filtered_purchased;
LG,
DudeAugust 17, 2018 at 5:15 pm in reply to: Remove "noindex" on archives, tags, and category pages #998516Hey!
Great, glad it works now :)
Cheers!
PeterHey HugoProd74!
It’s possible but you would need to customize the theme files (js, css and maybe php code customization). It requires some time and testing and is beyond the scope of our support forum. If you’re not a developer I’d recommend to hire a freelancer for this theme customization.
Cheers!
PeterAugust 17, 2018 at 2:09 pm in reply to: Beim Aktualisieren von Enfold ist ein Fehler aufgetreten: Download fehlgeschlage #998453Hi,
@KlausW – Ja bitte wir benötigen einen FTP-Zugang. Wir können den Fehler bei unseren Testsystemen nicht reproduzieren und müssen den Fehler daher auf deinem Server debuggen. Dies ist ohne FTP-Zugang riskant, da wir die Dateien ohne FTP nicht wiederherstellen können.LG,
DudeAugust 17, 2018 at 2:05 pm in reply to: "read more" "advanced layout editor" not working faulting #998449Hi,
The advanced layout builder can break the blog page – that’s why you can only use the excerpt field for blog post excerpts and display the advanced layout builder content on the post pages only.
If you really want to show the advanced layout builder content on the blog page you can add this code to your child theme functions.php:
add_filter( 'post-format-standard', 'avia_default_blog_excerpt_filter', 10, 1 ); function avia_default_blog_excerpt_filter($current_post) { $current_post['content'] = get_the_content($current_post['the_id']); return $current_post; }
However it won’t work with all layout elements or fullwidth elements and you can easily break the blog page. We also can’t provide support for this customization.
Best regards,
DudeAugust 17, 2018 at 1:49 pm in reply to: Draw Attention Pro and LearnPress -plugins with Enfold? #998445Hi,
I fixed it. Sensei requires the MediaElement player which is deactivated by default since Enfold 4.4.x (to increase the loading performance). I now added this code to your child theme functions.php:
add_filter( 'avf_enqueue_wp_mediaelement', 'avia_always_load_mediaelement', 10, 2); function avia_always_load_mediaelement($condition, $options) { $condition = true; return $condition; }
to load the MediaElement player by default on your website (also see: https://kriesi.at/support/topic/enfold-deregistering-wordpress-core-script-style-wp-mediaelement/ ).
I also had to modify the functions.php file of the parent theme – this customization won’t be necessary with the next theme update (see: https://kriesi.at/support/topic/wp_enqueue_media-not-working-on-frontend-after-latest-update/#post-993991 ).
Best regards,
DudeAugust 17, 2018 at 1:36 pm in reply to: "This element was disabled in your theme settings" issue #998433Hi,
Great, maybe a cache issue. I’ll close this thread :)
Best regards,
DudeHi,
No, because you’re not using a child theme. If you want an update-safe solution you could create a custom plugin with my code.
1) Delete the code I added to the functions.php file
2) Create a text file and paste this code into it:<?php /* Plugin Name: Enfold Custom Code Description: Contains Enfold Custom Code Version: 1.0 Author: InoPlugs Plugin URI: https://inoplugs.com Author URI: https://inoplugs.com */ /** * Breadcrumb Fix * * @return array */ add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { foreach ($trail as $key => $value) { if(strpos($value, '/category/vacatures/') !== false) { unset($trail[$key]); } } return $trail; }
3) Save the text file with a php extension – i.e. call it “enfold_plugin.php” (without the quotes).
4) Go to Plugins > Add New and upload the file. Then activate it like a standard wordpress plugin.Best regards,
DudeHey Sorinwd,
Add this code to your child theme functions.php file:
/** * Redirect user after successful login. * * @param string $redirect_to URL to redirect to. * @param string $request URL the user is coming from. * @param object $user Logged user's data. * @return string */ function my_login_redirect( $redirect_to, $request, $user ) { //is there a user to check? if (isset($user->roles) && is_array($user->roles)) { //check for customers if (in_array('customer', $user->roles)) { // redirect them to another URL, in this case, the homepage $redirect_to = 'https://mywebsite.com/customurl'; } } return $redirect_to; } add_filter( 'login_redirect', 'my_login_redirect', 10, 3 );
and replace https://mywebsite.com/customurl with the url where you want to redirect to.
Best regards,
DudeHi,
The code won’t work if you add it to the quick css field because it’s no css code. Add this code to the child theme functions.php instead (Appearance > Editor > Enfold (or Enfold child) and select “functions.php”):
function avia_custom_head_javascript() { ?> <script> jQuery(document).ready(function() { jQuery('body > a').attr('rel','nofollow'); }); </script> <?php } add_action('wp_footer', 'avia_custom_head_javascript');
Best regards,
DudeAugust 17, 2018 at 1:17 pm in reply to: Remove "noindex" on archives, tags, and category pages #998421Hi,
Please use this code instead:
add_filter('avf_set_follow','avia_set_follow_product_cats', 10, 1); function avia_set_follow_product_cats($meta) { if (is_product_category(array( 'shirts', 'games' ))) { $meta = '<meta name="robots" content="index, follow" />' . "\n"; } return $meta; }
and replace shirts and games with your category slugs. You can add more slugs, just separate them with a comma.
Best regards,
DudeHi,
Bitte verwende irgendeine E-Mail (zB deine) und poste sowohl den Benutzernamen, als auch das Passwort.
Best regards,
DudeAugust 17, 2018 at 1:06 pm in reply to: Load the correct size images in footer and in product slider #998408Hi,
You can change the woocommerce thumbnail sizes under Appearance > Customize. Then click on “WooCommerce” and insert your custom thumbnail size below the “Main image width” headline. You maybe need to regenerate your existing thumbnails with https://de.wordpress.org/plugins/regenerate-thumbnails/
Best regards,
DudeAugust 17, 2018 at 12:55 pm in reply to: Fatal error: Could not extract a stage height from the CSS. Traced height: Opx. #998403Hi,
I found this stackoverflow thread: https://stackoverflow.com/questions/6610522/galleria-fatal-error-could-not-extract-a-stage-height-from-the-css-traced-heig which describes the same issue. Try to add this code to your functions.php file to add the css code to your gallery page:
function avia_custom_head_css() { ?> <style type="text/css"> #top .ngg-galleria-parent, #top .ngg-galleria{max-height:570px;} </style> <?php } add_action('wp_head', 'avia_custom_head_css');
Best regards,
DudeAugust 17, 2018 at 12:39 pm in reply to: "This element was disabled in your theme settings" issue #998388Hey Michael,
Please create me an admin account. At the moment I just can see “Coming Back Soon”.
Best regards,
DudeAugust 17, 2018 at 12:37 pm in reply to: How to link Footer information in different languages to a specific language pag #998387Hi,
I added it for you ;)
Best regards,
DudeHi,
Glad Basilis could help you :)
Best regards,
DudeHey OKEI,
Enfold does not support such a feature out of the box but you can try a free plugin like: https://wordpress.org/plugins/email-before-download/
Best regards,
DudeHey jelle,
This is not possible out of the box. You could install a membership plugin like S2 Member to restrict the access to certain areas of the website.
Best regards,
DudeHey jeroenvandessel,
I added following code to the functions.php to solve the issue:
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { foreach ($trail as $key => $value) { if(strpos($value, '/category/vacatures/') !== false) { unset($trail[$key]); } } return $trail; }
The code removes the category link from the breadcrumb.
Best regards,
DudeHi,
Glad you found the solution :)
Best regards,
DudeHey Dante,
Please create a support ticket here: https://kriesi.at/support and post a link to your website. If possible please create us an admin account and we’ll check the configuration.
Best regards,
Dude -
AuthorPosts