Forum Replies Created

Viewing 30 posts - 5,491 through 5,520 (of 9,352 total)
  • Author
    Posts
  • in reply to: WooCommerce Error 404 after update of Enfold #214809

    Hi!

    If you’re using WPML this article http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/ will help you.

    Best regards,
    Peter

    in reply to: Gallery won't save selected images #214808

    Hey!

    I couldn’t reproduce the issue – I tried to insert a gallery with 4 random images here: http://eichlerclub.com/theme-sample-pages/portfolio/ (I picked some images from the media gallery which re not at the very beginning/end of the image grid) and all 4 images display fine on the page and are saved. Maybe the issue occurs only on a certain page?

    Cheers!
    Peter

    in reply to: Portfolio's premalink bug #214791

    Hi!

    WordPress supports a special option field for the portfolio items. Go to Appearance > Menus and click on the “Screen Options” tab in the right top corner. Then tick the checkbox next to “Portfolio Items” and WP will show a new option field for portfolio items.
    Cheers!
    Peter

    Hey Neil M!

    Please create us an admin account – we’ll look into it.

    Regards,
    Peter

    in reply to: theme causing modal login to scroll page down a little #214788

    Hey!

    I’m not familiar with the plugin code but you must add a no-scroll class to the link. The link in the menu looks like

    
    <a href="#login-box" class="login wpml-btn login-window">Login</a>
    

    replace the code with

    
    <a href="#login-box" class="login wpml-btn login-window no-scroll">Login</a>
    

    Best regards,
    Peter

    in reply to: serious editor issue and product slider malfunction. #214786

    Hey!

    I deactivated the “YITH WooCommerce Ajax Navigation” plugin and the slider works now.

    Regards,
    Peter

    in reply to: Windows problem? #214785

    Hey!


    @brdconcept
    – I agree with Devin. Something is weird with your wordpress installation.

    1) The backend is broken. The submenu items of the left toolbar don’t work properly and i.e. the menu editor (Appearance > Menus) doesn’t work (i.e. we can’t expand the menu item options). This is not a theme issue though because I can reprouce these issues with all themes – i.e. with the default Twenty Fourteen theme).

    2) Your website shows a weird banner on the admin page: https://imagizer.imageshack.us/v2/1630x820q90/560/c1cl.png which is not part of the theme code. I think a plugin, some custom code or your hoster adds it to the website and this banner breaks your admin page too (at least for me).

    Cheers!
    Peter

    in reply to: Change my Kriesi username #214783

    Hey Neal!

    I marked this thread for Kriesi. Unfortunately bbpress doesn’t allow us to edit the username and Kriesi must replace it in the database table. It can take some time though because we’re working on the next Enfold theme update and we want to release it on Monday.

    Regards,
    Peter

    in reply to: Blank/white page after theme activation #214781

    Hey!

    Please create us a ftp account – otherwise we can’t debug the code because the php error blocks the access to the admin page.

    Cheers!
    Peter

    in reply to: Vimeo Videos nur noch schwarze Voransicht #214779

    Hey!

    Kein Problem :)

    Best regards,
    Peter

    in reply to: Breadcrumb and Blog Title formatting #214777

    Hey!

    Tbh it doesn’t make sense to combine both – use this code instead which is more efficient:

    
    if(!function_exists('avia_modify_blog_breadcrumb'))
    {
        function avia_modify_blog_breadcrumb($trail)
        {
    
        	if(get_post_type() === "post" && (is_single() || is_category() || is_archive() || is_tag()))
    		{
    			$blogid = 1010;
    			if($blogid)
    			{
    				$blog = '<a href="' . get_permalink( $blogid ) . '" title="Blog">Blog</a>';
    				array_splice($trail, 1, 0, array($blog));
    			}
    
    		}
    
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_blog_breadcrumb');
    }
    

    Best regards,
    Peter

    in reply to: Archive & Woocommerce Siderbar Problem #214774

    Hey!

    You could create a new custom widget area on the widget settings page (Appearance > Widgets). Then open up sidebar.php and replace

    
                // general shop sidebars
                if ($avia_config['currently_viewing'] == 'shop' && dynamic_sidebar('Shop Overview Page') ) : $default_sidebar = false; endif;
    

    with

    
                // general shop sidebars
                if ($avia_config['currently_viewing'] == 'shop' && dynamic_sidebar('Shop Overview Page') ) : $default_sidebar = false; endif;
    
                if(is_product_category() && dynamic_sidebar('Products Archive Page') ) : $default_sidebar = false; endif;
    

    and replace “Products Archive Page” with the name of your custom widget area.

    Regards,
    Peter

    in reply to: Full-Width Easy Slider Not Cooperating with WPML #214772

    Hey!

    I couldn’t reproduce the issue – the Korean website just showed the Korean pages in the select box. Maybe you translated several pages side by side (in different browser tabs or windows)? This can cause issues because WPML set a cookie to determine the current selected language and if you translate the entries side by side the language detection can fail.

    You can try to insert this code into the functions.php file though:

    
    add_action( 'init', 'avia_deactivate_wpml_page_filter', 10);
    function avia_deactivate_wpml_page_filter(){
    remove_filter( 'avf_dropdown_post_query', 'avia_wpml_filter_dropdown_post_query', 10, 4);
    }
    

    This code will remove the language filter from the posts/page query and then all entries (from all languages) will be shown in the dropdown.

    Regards,
    Peter

    in reply to: Google AdWords Tracking after Form has been submitted #214770

    Hi toberho!

    I’m not familiar with the google adwords tracking code but I guess this thread: https://kriesi.at/support/topic/syntax-error-when-adding-tracking-code-to-form-submit-button/ will help you.

    Regards,
    Peter

    in reply to: "Post_gallery" filter? #214615
    This reply has been marked as private.
    in reply to: Breadcrumbs for Home / Category / Postname #214578

    Hey Cum_Vincere!

    You can change the breadcrumb structure easily – open up wp-content/themes/enfold/includes/helper-template-logic.php and delete this code:

    
    		else if(get_post_type() === "post" && (is_category() || is_archive() || is_tag()))
    		{
    
    			$front = avia_get_option('frontpage');
    			$blog = avia_get_option('blogpage');
    
    			if($front && $blog)
    			{
    				$blog = '<a href="' . get_permalink( $blog ) . '" title="' . esc_attr( get_the_title( $blog ) ) . '">' . get_the_title( $blog ) . '</a>';
    				array_splice($trail, 1, 0, array($blog));
    			}
    
    		}
    

    Another possible solution would be to deselect the blog page (Enfold > Theme settings). Then you can use the layout builder to add a blog element to your “blog” page but Enfold won’t recognize it as blog page anymore and thus it will just display the categories in the post breadcrumb.

    Best regards,
    Peter

    in reply to: "Post_gallery" filter? #214570

    Hey!

    I still can’t modify the theme files. Please try to insert this code: https://kriesi.at/support/topic/post_gallery-filter/#post-213804 into your child theme functions.php file.

    Cheers!
    Peter

    in reply to: Can't move pages out from under their parents #214567
    This reply has been marked as private.
    in reply to: Archive & Woocommerce Siderbar Problem #214557

    Hi zanardelligolf!

    If you want to display the shop sidebar on product category pages open up sidebar.php and replace

    
                // general shop sidebars
                if ($avia_config['currently_viewing'] == 'shop' && dynamic_sidebar('Shop Overview Page') ) : $default_sidebar = false; endif;
    

    with

    
                if(is_product_category()) $avia_config['currently_viewing'] = 'shop';
                // general shop sidebars
                if ($avia_config['currently_viewing'] == 'shop' && dynamic_sidebar('Shop Overview Page') ) : $default_sidebar = false; endif;
    

    Best regards,
    Peter

    in reply to: Full-Width Easy Slider Not Cooperating with WPML #214553

    Hey!

    Please give me admin rights :)

    Cheers!
    Peter

    in reply to: Can't move pages out from under their parents #214523

    Hey!

    Please send it to (Email address hidden if logged out)

    Cheers!
    Peter

    in reply to: Error : undefined index #214522

    Hey!

    If even the default wordpress update class ( /var/www/02/62/71/celebrationevents.eu/www/wp-includes/update.php ) can’t connect to the wordpress.org server it’s probably a server configuration issue. Did you try to install the theme + wordpress on a different server/hoster?

    Regards,
    Peter

    in reply to: Can't move pages out from under their parents #214481

    Hi!

    Please create me an admin account and post the login credentials as private reply.

    Cheers!
    Peter

    in reply to: fatal error caused bij enfold #214480

    Hey!

    Please try to increase the allocated memory http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP and insert

    
    define( 'WP_MEMORY_LIMIT', '128M' );
    

    into your wp-config.php.

    I think the second issue is caused by the envato update api class. You’ve two options:

    1) Update the api file to the latest version – the code can be found here: https://github.com/envato/envato-wordpress-toolkit/blob/master/includes/class-envato-api.php – just delete the code in wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php and insert the updated code. I’m not sure if it will work because I can’t test the api.

    2) You can deactivate the update api – insert following code into the child or parent theme functions.php file – i.e. insert it at the very bottom of the file

    
    add_theme_support('avia_manual_updates_only');
    

    Best regards,
    Peter

    in reply to: Full-Width Easy Slider Not Cooperating with WPML #214479

    Hi MHM!

    Please try to deactivate all third party plugins except WPML – maybe a plugin messes up the post/page queries in the background. If the deactivation of all plugins solves the issue activate them one by one to find the culprit. If this doesn’t help you create us an admin account and post the login credentials as private reply.

    Regards,
    Peter

    in reply to: Error : undefined index #214426

    Hey!

    I think the issue is caused by the envato update api class. You’ve two options:

    1) Update the api file to the latest version – the code can be found here: https://github.com/envato/envato-wordpress-toolkit/blob/master/includes/class-envato-api.php – just delete the code in wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php and insert the updated code. I’m not sure if it will work because I can’t test the api.

    2) You can deactivate the update api – insert following code into the child or parent theme functions.php file – i.e. insert it at the very bottom of the file

    
    add_theme_support('avia_manual_updates_only');
    

    Best regards,
    Peter

    in reply to: Using oEmbed within Advanced Layout Editor #214394

    Hey!

    No, if you don’t know what causes this deactivate everything and activate all plugins one by one.

    Cheers!
    Peter

    in reply to: Graphics in mobile version of the theme #214390

    Hi kirkmc!

    You can include it in wp-content/themes/enfold/includes/loop-index.php below this code

    
                if(has_tag() && is_single() && !post_password_required())
                {
                    echo '<span class="blog-tags minor-meta">';
                    the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
                    echo '</span></span>';
                }
    

    Use echo to embed it into the php code or wrap your html code into php tags like

    
    ?>
    
    my code...
    
    <?php
    

    Best regards,
    Peter

    in reply to: no upload in mediathek with wordpress 3.8 #214388

    Hey!

    Great, please let us know if it still doesn’t work.

    Best regards,
    Peter

    in reply to: Using oEmbed within Advanced Layout Editor #214386

    Hi!

    I think some custom code or plugin causes a js error which also breaks the yoast video plugin

    
    Uncaught ReferenceError: analytics is not defined (index):484
    

    Cheers!
    Peter

Viewing 30 posts - 5,491 through 5,520 (of 9,352 total)