Forum Replies Created
-
AuthorPosts
-
September 16, 2014 at 6:52 pm in reply to: avia_post_nav function not cycling categories even when set to "true" #320063
Hey!
If you want to restrict the categories for products too you need to use a slightly modified version of the code:
function category_specific_post_nav($settings) { $settings['same_category'] = true; if(is_product()) { $settings['taxonomy'] = "product_cat"; } return $settings; } add_filter('avia_post_nav_settings','category_specific_post_nav', 10);
Cheers!
PeterHi!
I just noticed you’re taking about the preview controls. You can’t restrict these controls to a certain category. The ajax preview slider will display all entries of the portfolio page regardless of their category(ies). You can only restrict the categories for the next/prev controls on the single portfolio entry pages (the controls are demonstrated here: http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-slider-3/ ) and these controls don’t work on your website at the moment because you set the post status to “private”. We use two standard wordpress functions ( http://codex.wordpress.org/Function_Reference/next_post_link and http://codex.wordpress.org/Function_Reference/previous_post_link ) and it seems like wordpress removes “private” posts from the next/previous post queries.
Cheers!
PeterSeptember 16, 2014 at 6:42 pm in reply to: When WPML Plug-in is Active My half of Pages Disappear #320046Hey!
Please increase the allocated php memory and set it to 128M. You’re using 64MB at the moment which is probably not enough if you want to use Enfold, WPML.
Open up wp-config.php and replace:
<?php
with
<?php define( 'WP_MEMORY_LIMIT', '128M' );
Regards,
PeterHi!
I updated the documentation entry and modified the code. Thanks for the hint.
Best regards,
PeterSeptember 14, 2014 at 10:48 am in reply to: Portfolio items with redirects in search results #318829Hi!
Please add this code to the enfold/functions.php or child theme functions.php file to remove the portfolio post type from the search results:
function remove_post_type_page_from_search() { global $wp_post_types; $wp_post_types['portfolio']->exclude_from_search = true; } add_action('init', 'remove_post_type_page_from_search');
Cheers!
PeterHi!
Yes you can deactivate LayerSlider and delete the folder. Open up enfold/functions.php and delete:
if(!current_theme_supports('deactivate_layerslider')) require_once( 'config-layerslider/config.php' );//layerslider plugin
and then delete the enfold/config-layerslider folder. You can also use a child theme and add this code to the child theme functions.php:
add_theme_support('deactivate_layerslider');
to prevent Enfold from loading the layerslider files.
Regards,
PeterSeptember 14, 2014 at 10:43 am in reply to: Variable aus der team.php in anderem shortcode auslesen #318827Hey!
Ich würde einfach einen neuen Wert anlegen – ZB um den Wert in team.php zu speichern verwendet:
global $avia_config; $avia_config['team_shortcode_job_value'] = $job;
und in postslider.php lest ihr den Wert dann mit:
global $avia_config; $job = $avia_config['team_shortcode_job_value'];
wieder aus. $job enthält dann den gewünschten Wert.
Cheers!
PeterHey verwunderbar!
Did you test Woocommerce 2.2.2 with the default TwentyThirteen theme? Please switch from Enfold to Twentythirteen and check if the issue persists. If yes it’s a plugin bug and we can’t help you. You need to report the issue here: http://www.woothemes.com/support/
Cheers!
PeterHi Jonn!
Unzip the zip file, click on the “wpclone_backup” folder and use the database.sql file to restore the database. Normally the server administrator/host provides tools like phpmyadmin which help you to export or import data into the database and to restore existing backups from sql files.
Regards,
PeterSeptember 13, 2014 at 11:46 am in reply to: updated to wordpress 4.0 and now I can't edit any of my pages!! #318473Hi!
Ok, I’ll close this thread now.
Best regards,
PeterHi mlabayru!
Insert this code into the child theme functions.php file.
if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100); function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); wp_dequeue_script('avia-default'); //register js wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, true); wp_enqueue_script( 'avia-default-child' ); }
and place your modified js file into the child theme folder (enfold-child/js/avia.js)
Best regards,
PeterHey!
The html5shiv.js script is required to view modern html5 websites with older browsers like IE7 or IE8. It’s a common script which is also used by the Genesis or WooThemes and it’s not a malware. Everything I can say is that it’s required and that Google webmaster reports a false positive in this case. If you need more information you can study the project page here: https://github.com/aFarkas/html5shiv
Regards,
PeterHey czar!
Glad you found a solution :)
Cheers!
PeterHi jalmz!
Our map does not support this map type selection. You can suggest this feature here: https://kriesi.at/support/enfold-feature-requests/ and if more users request it we’ll look into it. You can also try to use third party plugins like: http://www.wpgmaps.com/
Best regards,
PeterHey!
Insert this code into the quick css field:
.main_menu ul:first-child > li a { font-size: 20px; }
and change the font size value if necessary.
Regards,
PeterSeptember 13, 2014 at 11:26 am in reply to: Conflict between Enfold theme, Yoast SEO and Store Locator #318462Hey!
Ok, then we need to wait for the store locator developers to fix the incompatibility issue.
Regards,
PeterHi advocatusneo!
1) Die Höhe kann mit folgenden CSS Code angepasst werden:
#top #wrap_all #header_meta { min-height: 30px; }
30px kann man durch einen höheren Wert ersetzen – dann wird auch der Secondary Menu Balken größer.
2) Vertikal zentrieren könnt ihr das Menü mit:
#top .sub_menu>ul { margin-top: 10px; }
wobei der px Wert entsprechend der Höhe welche ihr bei 1) wählt angepasst werden muss. Eine horizontale Zentrierung ist derzeit nicht einfach möglich. Ihr könnt euch in den Theme Optionen aussuchen, ob das Menü links oder rechts angezeigt werden soll.
3) Wenn ihr die Schrift dünner anzeigen wollt fügt diesen Code in das Quick CSS Feld ein.
.sub_menu>ul>li>a, .sub_menu>div>ul>li>a { font-weight: normal; }
Die Hintergrundsfarbe kkönnt ihr mit folgenden Code anpassen.
#top #wrap_all .header_color .container_wrap_meta{ background: #333; }
Wollt ihr den Hintergrund semi transparent machen empfielt sich ein rgba Farbwert – ZB:
#top #wrap_all .header_color .container_wrap_meta{ background: rgba(51, 51, 51, 0.5); }
Dieses Tool: http://hex2rgba.devoth.com/ hilft euch dabei jeden beliebigen hex-Farbwert in einen rgba Farbwert umzuwandeln.
Best regards,
PeterHey!
Please create us an admin account – we’ll look into it.
Regards,
PeterHi!
Enfold sollte mit 5.4 und 5.5 einwandferei funktionieren. Ich selbst hoste mit All-Inkl Hosting mit PHP 5.5.16 und MySql 5.6.17. Meine Websites verwenden alle entweder Enfold oder Propulsion.
Regards,
PeterHey!
Great, glad the code helped you :)
Best regards,
PeterSeptember 13, 2014 at 10:59 am in reply to: Conflict between Enfold theme, Yoast SEO and Store Locator #318453Hey Jaap!
Please try to increase the allocated php memory and set it to 128M. Open up wp-config.php and below the php tag:
<?php
insert this code:
define('WP_MEMORY_LIMIT', '128M');
Regards,
PeterSeptember 13, 2014 at 10:50 am in reply to: Broken theme after to WP 4.0 and Enfold 2.9.2 i can't use my default editor #318451Hi!
Please try to deactivate all browser extensions – maybe an extension breaks the editor for you. I just tested your website/editor with Chrome 37 and Firefox on Win8 and I didn’t notice any errors. I.e. I edited the “Hello World” post: http://www.sebastianoferrari.com/hello-world/
Cheers!
PeterHey!
Please increase the allocated php memory and set it to 128M. You’re using 64MB which is probably not enough if you want to use Enfold, WPML.
Cheers!
PeterHey!
Thanks for the update DavyE. I’ll ask Kriesi to look into it.
Regards,
PeterSeptember 13, 2014 at 10:34 am in reply to: When WPML Plug-in is Active My half of Pages Disappear #318445Hey!
I switched to the child theme and did not notice any issues. Please try to clear the browser cache. If you still have problems please describe which styles don’t work.
Regards,
PeterHey HIO2014!
I don’t think this is an WordPress seo issue but you’re just running out of php memory. At the moment the limit is set to 64MB which is not enough if you want to use additional plugins like wordpress seo. I recommend to increase the memory to 128M. See: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
Best regards,
PeterHey ThomasNorden!
No, unfortunately not. Our scroll to function requires a color section to calculate the “scroll to” position properly.
Cheers!
PeterHi!
Great, glad it works now :)
Best regards,
PeterHey!
I don’t think this is an WordPress seo issue but you’re just running out of php memory. At the moment the limit is set to 64MB which is not enough if you want to use additional plugins like wordpress seo. I recommend to increase the memory to 128M. See: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
Cheers!
Peter -
AuthorPosts