Forum Replies Created
-
AuthorPosts
-
Hi!
If you’re using WPML this article http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/ will help you.
Best regards,
PeterHey!
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!
PeterHi!
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!
PeterJanuary 25, 2014 at 12:45 pm in reply to: Header and Breadcrumb not displaying in Woocommerce shop page #214789Hey Neil M!
Please create us an admin account – we’ll look into it.
Regards,
PeterJanuary 25, 2014 at 12:44 pm in reply to: theme causing modal login to scroll page down a little #214788Hey!
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,
PeterJanuary 25, 2014 at 12:35 pm in reply to: serious editor issue and product slider malfunction. #214786Hey!
I deactivated the “YITH WooCommerce Ajax Navigation” plugin and the slider works now.
Regards,
PeterHey!
@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!
PeterHey 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,
PeterHey!
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!
PeterHey!
Kein Problem :)
Best regards,
PeterHey!
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,
PeterHey!
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,
PeterHey!
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,
PeterJanuary 25, 2014 at 11:23 am in reply to: Google AdWords Tracking after Form has been submitted #214770Hi 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,
PeterThis reply has been marked as private.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,
PeterHey!
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!
PeterThis reply has been marked as private.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,
PeterHey!
Please give me admin rights :)
Cheers!
PeterHey!
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,
PeterHi!
Please create me an admin account and post the login credentials as private reply.
Cheers!
PeterHey!
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,
PeterHi 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,
PeterHey!
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,
PeterHey!
No, if you don’t know what causes this deactivate everything and activate all plugins one by one.
Cheers!
PeterHi 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,
PeterHey!
Great, please let us know if it still doesn’t work.
Best regards,
PeterHi!
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 -
AuthorPosts