Forum Replies Created

Viewing 30 posts - 1,081 through 1,110 (of 9,352 total)
  • Author
    Posts
  • in reply to: Vooplayer and 'Z'-index #998682

    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,
    Dude

    in reply to: Vooplayer and 'Z'-index #998681

    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,
    Dude

    in reply to: Vooplayer and 'Z'-index #998680

    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,
    Dude

    in reply to: Vooplayer and 'Z'-index #998679

    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,
    Dude

    in reply to: Vooplayer and 'Z'-index #998678

    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,
    Dude

    in reply to: Download Theme File #998677

    Hi,

    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,
    Dude

    Hi!
    Vielen Dank für das Feedback, wir werden den Fix in das nächste Update übernehmen.

    LG,
    Peter

    Hey!
    Sehr gut – ich bitte um weiteres Feedback, damit wir den Fix für das nächste Update in das Framework übernehmen können.

    LG,
    Peter

    Hi,


    @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,
    Dude

    in reply to: Remove "noindex" on archives, tags, and category pages #998516

    Hey!

    Great, glad it works now :)

    Cheers!
    Peter

    in reply to: Menu completely unrolled for computer version #998456

    Hey 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!
    Peter

    Hi,


    @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,
    Dude

    in reply to: "read more" "advanced layout editor" not working faulting #998449

    Hi,

    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,
    Dude

    in reply to: Draw Attention Pro and LearnPress -plugins with Enfold? #998445

    Hi,

    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,
    Dude

    in reply to: "This element was disabled in your theme settings" issue #998433

    Hi,

    Great, maybe a cache issue. I’ll close this thread :)

    Best regards,
    Dude

    in reply to: Breadcrumbs error #998432

    Hi,

    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,
    Dude

    in reply to: Redirect to a custom page after logging out #998427

    Hey 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,
    Dude

    in reply to: Selecting nofollow to add to links #998425

    Hi,

    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,
    Dude

    in reply to: Remove "noindex" on archives, tags, and category pages #998421

    Hi,

    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,
    Dude

    in reply to: Farbe von LINKS bleibt schwarz trotz Änderung #998414

    Hi,

    Bitte verwende irgendeine E-Mail (zB deine) und poste sowohl den Benutzernamen, als auch das Passwort.

    Best regards,
    Dude

    Hi,

    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,
    Dude

    Hi,

    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,
    Dude

    in reply to: "This element was disabled in your theme settings" issue #998388

    Hey Michael,

    Please create me an admin account. At the moment I just can see “Coming Back Soon”.

    Best regards,
    Dude

    Hi,

    I added it for you ;)

    Best regards,
    Dude

    in reply to: Woocommerce – add item to cart on button click #998385

    Hi,

    Glad Basilis could help you :)

    Best regards,
    Dude

    in reply to: Insert email to get a PDF #998384

    Hey 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,
    Dude

    in reply to: sail around protected page #998346

    Hey 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,
    Dude

    in reply to: Breadcrumbs error #998343

    Hey 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,
    Dude

    in reply to: strange breadcrumb #998337

    Hi,

    Glad you found the solution :)

    Best regards,
    Dude

    in reply to: Enfold theme #998336

    Hey 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

Viewing 30 posts - 1,081 through 1,110 (of 9,352 total)