Forum Replies Created
-
AuthorPosts
-
Hey squaic!
Please try to use the Quick CSS field (on the Enfold > Theme Options page) instead. Personally I recommend to create a child theme and to add your custom styling code into the child theme style.css file: http://kriesi.at/documentation/enfold/using-a-child-theme/
Regards,
PeterHey Fiorelina!
Did you select the right menu from the dropdown next to the “Display the language switcher in the WP Menu” checkbox?
Cheers!
PeterHey Gurify!
Please insert this code into the enfold/functions.php or child theme functions.php file:
add_action('init','avia_remove_yoast_filter'); function avia_remove_yoast_filter() { remove_filter('wpseo_pre_analysis_post_content','avia_wpseo_pre_analysis_post_content_fix', 10, 1); remove_filter('wpseo_video_index_content','avia_wpseo_video_content_fix', 10, 2); }
Best regards,
PeterSeptember 5, 2014 at 10:05 am in reply to: Bug: Yoast SEO Version 1.5.6 in Avia Layout Builder Page #313880Hey!
Thanks for helping out jalmz.
Regards,
PeterSeptember 5, 2014 at 10:03 am in reply to: Enfold Theme- Theme options not showing in the dashboard #313879Hey!
Nevermind – I noticed you memory limit is still set to 40mb although Gunter: https://kriesi.at/support/topic/enfold-theme-theme-options-not-showing-in-the-dashboard/#post-312750 provided some code to increase it to 256MB. It seems like you can’t increase the memory with wordpress and you need to contact your host or server administrator. Ask him to set the php memory to 128MB or more.
Regards,
PeterSeptember 5, 2014 at 9:57 am in reply to: Enfold Theme- Theme options not showing in the dashboard #313877Hi!
Please try to insert this code:
define('SCRIPT_DEBUG', true);
into the wp-config.php file
Regards,
PeterHi!
Yes – insert this code into the enfold/functions.php or child theme functions.php file:
add_filter('avf_frontend_search_form_param', 'avia_deactivate_ajax_search',10,1); function avia_deactivate_ajax_search($params) { $params['ajax_disable'] = true; return $params; }
Cheers!
PeterSeptember 4, 2014 at 8:20 pm in reply to: Editor not working after upgrading to WordPress 4.0 #313568Hi revenueconduit!
Please update your theme to version 2.9.2. You can download the update for free from http://themeforest.net
Best regards,
PeterHey!
Open up wp-content/themes/enfold/js/avia.js and replace:
container.isotope({ layoutMode : 'fitRows', itemSelector : '.flex_column' , filter: '.'+selector}, function()
with
container.isotope({ isOriginLeft: false, layoutMode : 'fitRows', itemSelector : '.flex_column' , filter: '.'+selector}, function()
Best regards,
PeterHey!
I contacted Yoast and hopefully we can find a solution. A user posted a “downgrade guide” here: https://kriesi.at/support/topic/wordpress-seo-plugin-1-5-5-3-breaks-enfold-page-w/#post-308267 – the Yoast support team provided the instructions and the downgrade should work flawlessly.
Best regards,
PeterHi!
I had to change the slug of a post category ( http://shanetucker.com/wp-admin/edit-tags.php?action=edit&taxonomy=category&tag_ID=6&post_type=post ). I replaced “photography” with “photography-cat” and now the link works. You can replace “photography-cat” with another slug but you must not use “photography” because this slug is already used for your portfolio page.
Regards,
PeterSeptember 3, 2014 at 5:09 pm in reply to: Problem with "previous&next product button" and the order products are displayed #313006Hey Christian!
Try this code instead:
function category_specific_post_nav($settings) { if(is_product()) { $settings['taxonomy'] = "product_cat"; $settings['same_category'] = true; } return $settings; } add_filter('avia_post_nav_settings','category_specific_post_nav', 10);
Insert it into the enfold/functions.php or child theme functions.php file (at the very bottom).
Best regards,
PeterSeptember 3, 2014 at 4:59 pm in reply to: Specify image dimensions – GtMetrix – Layerslider blank.gif #313000Hi!
Open up wp-content/themes/enfold/config-layerslider/LayerSlider/includes/slider_markup_html.php and replace:
$data[] = '<img src="'.LS_ROOT_URL.'/static/img/blank.gif" data-src="'.$src.'" class="ls-bg" alt="Slide background" />';
with
$data[] = '<img src="'.LS_ROOT_URL.'/static/img/blank.gif" data-src="'.$src.'" height="1" width="1" class="ls-bg" alt="Slide background" />';
and:
$data[] = '<img src="'.LS_ROOT_URL.'/static/img/blank.gif" data-src="'.$src.'" class="ls-tn" alt="Slide thumbnail" />';
with
$data[] = '<img src="'.LS_ROOT_URL.'/static/img/blank.gif" data-src="'.$src.'" class="ls-tn" height="1" width="1" alt="Slide thumbnail" />';
Best regards,
PeterHi Ink_Eye!
1) Verwende diesen Code (zB im Quick CSS Feld) um die Linien zu entfernen:
#top.home.avia-blank #main .container_wrap:first-child, #top.home.avia-blank #main .container_wrap:last-child { border: none !important; }
2) Um den Hover Effect zu enfernen füge diesen Code in das Quick CSS Feld ein:
#top.home.avia-blank #main .container_wrap a .image-overlay { display: none !important; }
3) Das Glossy Header Menu lässt sich für das Submenü derzeit nicht verwenden. Vgl auch hierzu die Demo: http://kriesi.at/themes/enfold/shortcodes/images-with-hotspots/
Cheers!
PeterHi!
Glad you figured it out. The next Enfold version (version 3.0) will make it easy for you to change the width of the content box and the padding between the content and the surrounding box.
Cheers!
PeterSeptember 3, 2014 at 4:43 pm in reply to: Social sharing and printer friendly icons at the end of posts using ALB #312991Hi!
1) The [/av_four_fifth] code must be part of your (customized) code. If you’re not sure which function or template outputs this code please upload an unmodified version of the theme and customize the code step by step to find the culprit.
2) You could add a style attribute to the container like:
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { if(is_single()) { $content .= '<div class="container" style="max-width: 500px;">'; $content .= avia_social_share_links(array(), false); $content .= '</div>'; $content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>'; } return $content; }
You can replace 500px with any other positive px value if you want to change the width of the social icons box.
Cheers!
PeterHi Trender!
Yes – please study this article: http://red-team-design.com/firefox-doesnt-allow-cross-domain-fonts-by-default/
Best regards,
PeterHey!
2) You can try to use this plugin: https://wordpress.org/plugins/safe-redirect-manager/ to redirect any url which contains your domain to another url. It should also be possible to redirect http://mywebsite.com/?s= to http://mywebsite.com/?s=noresult
3) Yes, you can embed any widget area by using the dynamic_sidebar() function: http://codex.wordpress.org/Function_Reference/dynamic_sidebar
If the widget area is called “searchleft” use it like:
dynamic_sidebar("searchleft");
Kriesi uses the function in enfold/sidebar.php to display all sidebar widget areas.
Cheers!
PeterSeptember 3, 2014 at 4:24 pm in reply to: woocommerce shop page: %date% | site name , page title #312975Hi!
I fixed it. I noticed you used an advanced layout on the shop page ( http://blog.swiss-paracord.ch/wp-admin/post.php?post=15415&action=edit ) and this is not possible because the “shop” page template of woocommerce is not compatible with our advanced layout builder template. However you can use the standard editor with shortcoodes because woocommerce will display the page content at the top of the shop template.
Cheers!
PeterHi scottybowl!
Tbh I didn’t test the code with the latest version of Enfold and Events Calendar on my test server but you can try to insert it into the enfold/functions.php or child theme functions.php file:
if(!function_exists('avia_modify_event_breadcrumb')) { function avia_modify_event_breadcrumb($trail) { if(get_query_var('post_type') == 'tribe_events') { $newtrail = array('<a href="#">Events</a>'); array_unshift($newtrail, $trail[0]); if(is_single()) $newtrail['trail_end'] = $trail['trail_end']; $trail = $newtrail; } return $trail; } add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb'); }
Cheers!
PeterHey glaucofmc!
Duplicate of https://kriesi.at/support/topic/session_start-function-session-start/ – closed.
Regards,
PeterHey Marton!
If you want to modify the text manual open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact.php and search for following line:
$elements['avia_age'] = array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are human by solving the equation','avia_framework' ));
Cheers!
PeterHi glaucofmc!
It’s probably a server configuration issue. One possible reason could be that the server can’t write to the sessions folder. I recommend to contact the server administrator or host and to ask him to fix the session permissions. If they can’t help you you can try to deactivate all theme sessions with this code (add it to the enfold/functions.php or child theme functions.php file):
add_theme_support('avia_no_session_support');
but I wouldn’t recommend it because it may break the portfolio breadcrumbs which use sessions to store the browser history.
Best regards,
PeterHi!
Ok, I’ll leave this thread open.
Cheers!
PeterHi netztaucher!
Please create me an admin account – I’ll look into it.
Cheers!
PeterHey!
Actually there’s no need to downgrade to Yoast 1.5.5. Try to update to 1.5.6 and if it still doesn’t work insert this code into the enfold/functions.php orchild theme functions.php file:
add_action('init','avia_remove_yoast_filter'); function avia_remove_yoast_filter() { remove_filter('wpseo_pre_analysis_post_content','avia_wpseo_pre_analysis_post_content_fix', 10, 1); remove_filter('wpseo_video_index_content','avia_wpseo_video_content_fix', 10, 2); }
Regards,
PeterSeptember 2, 2014 at 5:01 pm in reply to: side post navigation – Next page tab looking strange #312415Hi!
You can try to insert this code:
.avia-post-nav .entry-image img { height: auto; width: auto; }
into the quick css field. It will make sure that the original thumbnail is used and the browser doesn’t resize it with css. A php script resizes the thumbnails on your server anyway (i.e. on here: http://shutterliving.com/typography/ the left thumbnail url is: http://i2.wp.com/shutterliving.com/wp-content/uploads/2012/11/Jamie-A-Cowan-08.jpg?resize=80%2C80 and the ?resize=80%2C80 parameter obviously resizes the image to 80x80px).
Regards,
PeterHey!
You can also remove the tags by editing wp-content/themes/enfold/includes/helper-social-media.php – open up the file and replace:
$replace['title'] = !isset($this->post_data['title']) ? get_the_title() : $this->post_data['title'];
with
$replace['title'] = !isset($this->post_data['title']) ? wp_strip_all_tags(get_the_title()) : $this->post_data['title'];
We’ll add a filter to helper-social-media.php with the next update – then you can overwrite the “$replace[‘title’]” value with a child theme if necessary.
Regards,
PeterHey!
I’m sorry but that’s not easily possible. This would require a major modification of the post template and we can’t assist with such a customization (it’s beyond the scope of our support forum: https://kriesi.at/support/register/#av_section_2 ). I recommend to hire a freelancer here: Envato Studio or here: Werkpress
Best regards,
PeterHi Reto!
Ich würde den Lizenzschlüssel nicht auf 4 Domains aktivieren. Soweit ich weiß geht Envato nun restriktiv gegen User vor, welche einfache Lizenzen auf mehreren (Sub)Domain aktivieren. Ihr benötigt daher mehrere Lizenzen, wenn ihr den Auto-Updater verwenden wollt.
Regards,
Peter -
AuthorPosts