Forum Replies Created
-
AuthorPosts
-
Hey!
Great, glad you found it :)
Cheers!
PeterSeptember 21, 2014 at 10:16 am in reply to: Newsletter Integration Element (Mailchimp) List Building integration? #322613Hi Antonio!
No, this feature is not implemented yet. We concentrated our efforts on the “Event management system” implementation. However you can download free mailchimp plugins here: https://wordpress.org/plugins/search.php?q=mailchimp
Best regards,
PeterHi!
Great :)
Cheers!
PeterSeptember 21, 2014 at 9:33 am in reply to: Adding Text On Top and Bottom OUTSIDE Of Site Container #322604Hey!
Please follow Ismaels instructions here: https://kriesi.at/support/topic/adding-text-on-top-and-bottom-outside-of-site-container/#post-320900 and post a link to your website – we’ll investigate it with the developer tools.
Cheers!
PeterHi!
I’m pretty sure our avia builder media uploader is not compatible with http://wordpress.org/plugins/network-shared-media/ and you can’t use it with Enfold.
Best regards,
PeterHey avivitgolanschutz!
This CSRF_TOKEN value is not added by wordpress or our theme. You need to contact the server administrator/host and ask him to remove this token code. Probably you need to tweak the server configuration somehow.
Regards,
PeterHey!
I marked this thread for Kriesi and asked him to comment on this issue.
Cheers!
PeterHi slui!
1) Use this code to change the border color of the preview image container:
.main_color .thumbnail_container img, .main_color div.thumbnail_container{ border-color: #444; }
2) This code will change the style of the product name + price container:
#top .inner_product_header{ border-color: #444; }
3) This code will change the border of the buttons bellow the product name/price:
#top #wrap_all .avia_cart_buttons{ border-color: #444; }
Regards,
PeterHey!
1) Use this code to change the style of the title:
.togglecontainer .single_toggle:first-child .toggler, .togglecontainer .taglist + .single_toggle .toggler { font-family: 'Kreon', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 20px; font-weight: 600; line-height: 1.1em; }
3) Try this code instead:
#top #wrap_all .main_color .toggler.activeTitle { background-color: red; color: blue; }
Cheers!
PeterSeptember 21, 2014 at 8:56 am in reply to: Variable aus der team.php in anderem shortcode auslesen #322594Hey!
Nein, sollte eigentlich so funktionieren. Wenn es nicht geht müsst ihr einen Entwickler damit beauftragen, der sich den Code näher ansieht, debugged und dann eine Lösung findet.
Best regards,
PeterHey fwbecker!
Ja, dies ist ohne Probleme möglich. Löscht zuerst die Lizenz von der alten Webseite. Dann aktiviert dieselbe Lizenz auf der neuen Webseite.
Regards,
PeterHi Robyone925!
Yes, you can use plugins like: https://wordpress.org/plugins/bwp-minify/ and https://wordpress.org/plugins/wp-super-cache/ to improve the page speed. Kriesi also uses them on the demo website.
Regards,
PeterSeptember 20, 2014 at 3:12 pm in reply to: Website does not work correctly anymore after updating Enfold theme #322373Hi!
Great, glad it works now :)
Regards,
PeterHey!
Great, glad the code worked for you :)
Best regards,
PeterHey potentialindia!
We are not affiliated with any host provider and we can’t recommend a certain provider. Kriesi and I use a German server provider (All-Inkl Hosting) to host our websites, including the theme demo page, etc. and we would notice it immediately if our themes are incompatible with the server configuration of this host provider…
Cheers!
PeterSeptember 20, 2014 at 10:51 am in reply to: Display Date and Comment Count Only in Blog Feed #322294Hi indy1003!
Tbh I didn’t test the code but it should work . insert it at the end of enfold/functions.php or your child theme functions.php:
// add custom feed content function add_feed_content($content) { if(is_feed()) { global $post; $date = get_post_field('post_date', $post->ID); $comments = get_post_field('comment_count', $post->ID); if($comments > 1) { $comments .= ' comments'; }else if($comments == 1){ $comments .= ' comment'; }else{ $comments = 'No comments'; } if($date) $content .= '<p>Published: '.$date.'</p>'; if($comments) $content .= '<p>'.$comments.'</p>'; } return $content; } add_filter('the_excerpt_rss', 'add_feed_content'); add_filter('the_content', 'add_feed_content');
Cheers!
PeterHi Jesse!
The syntax error is triggered by a file which is not part of the theme code ( wp-admin/custom-header.php ) and tbh I’m not sure why it doesn’t work. I recommend to re-install the latest version of wordpress with ftp. You can download the latest version here: https://wordpress.org/download/
Cheers!
PeterHey victor!
Open up wp-content/themes/enfold/includes/helper-main-menu.php and replace:
if(!empty($nav) || apply_filters('avf_execute_avia_meta_header', false)) { echo "<nav class='sub_menu' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">"; echo $nav; do_action('avia_meta_header'); // Hook that can be used for plugins and theme extensions (currently: the wpml language selector) echo '</nav>'; } //phone/info text $phone = $headerS['header_phone_active'] != "" ? $headerS['phone'] : ""; $phone_class = !empty($nav) ? "with_nav" : ""; if($phone) { echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>"; }
with
//phone/info text $phone = $headerS['header_phone_active'] != "" ? $headerS['phone'] : ""; $phone_class = !empty($nav) ? "with_nav" : ""; if($phone) { echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>"; } if(!empty($nav) || apply_filters('avf_execute_avia_meta_header', false)) { echo "<nav class='sub_menu' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">"; echo $nav; do_action('avia_meta_header'); // Hook that can be used for plugins and theme extensions (currently: the wpml language selector) echo '</nav>'; }
Best regards,
PeterHi!
If you want to remove the default theme flags you just need to insert this code into the enfold/functions.php file:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }
Best regards,
PeterSeptember 20, 2014 at 10:18 am in reply to: Post Navigation – Woocommerce single products page #322274Hey!
The code I posted here: https://kriesi.at/support/topic/post-navigation-woocommerce-single-products-page/#post-322265 will only remove the next/prev post links from the product pages.
We don’t plan to fix this issue because we use the standard wordpress functions and in our opinion woocommerce should better integrate with wordpress. Thus it’s up to the WooCommerce devs to add proper support for the http://codex.wordpress.org/Function_Reference/next_post_link and http://codex.wordpress.org/Function_Reference/previous_post_link functions.
Best regards,
PeterHey!
I’m pretty sure it was the memory issue: https://kriesi.at/support/topic/wordpress-seo-crash/#post-317533
Cheers!
PeterHi!
Yes, I couldn’t get it to work too. I’ll pass this to Kriesi because I don’t have enough time to tinker around with the google maps api.
Best regards,
PeterSeptember 20, 2014 at 10:01 am in reply to: Post Navigation – Woocommerce single products page #322265Hey!
Unfortunately you can’t exclude products which are hidden from the catalog. We use standard wordpress functions to query the next/previous posts and these functions don’t care about the WooCommerce catalog settings. You can only remove the next/prev product links at all if you don’t want that the user can access product pages which are hidden from the catalog. You can use this code:
function category_specific_post_nav($settings) { if(is_product()) $settings['is_fullwidth'] = true; return $settings; } add_filter('avia_post_nav_settings','category_specific_post_nav', 10);
Cheers!
PeterHey!
1) Mir ist keine Lösung schnelle Lösung betreffend Zentrierung bekannt. Es geht sicher irgendwie, aber das müsste sich ein Freelancer ansehen, weil wir nur bei leichten und schnellen Anpassungen weiterhelfen können.
2) Wie kann ich denn das main menu zentrieren? Ich benutze den large header fixed shrinking ohne Titel/breadcrumbs?
Bitte richte mir einen Admin Account ein und ich sehe mir die Sache an. Ich weiß derzeit auch nicht, warum sich die breadcrumb auf das Main Menu auswirkt.
3) Die Farbe im Secondary Menu könnt ihr mit diesem Code:
#top #wrap_all .header_color .sub_menu ul li a{ color: #333; }
Wenn ihr auch die Hover Farbe verändert wollt, verwendet auch diesen Code:
#top #wrap_all .header_color .sub_menu ul li a:hover{ color: #333; }
4) Um den Unterstrich zu entfernen verwendet diesen Code:
#top #wrap_all .header_color .sub_menu ul li a:hover, #top #wrap_all .header_color .sub_menu ul li a, #top #wrap_all .header_color .sub_menu ul li{ text-decoration: none; }
Cheers!
PeterHey!
Please try this code instead – insert it at the bottom of your child theme functions.php or enfold/functions.php:
add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1); function avia_category_content_filter($current_post) { if(!is_single()) { global $more; $more = 0; $current_post['content'] = get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>'); } return $current_post; }
Regards,
PeterHey!
I’ll close this thread now. WooCommerce emails are definitely beyond the scope of our support forum…
Best regards,
PeterSeptember 20, 2014 at 8:53 am in reply to: When WPML Plug-in is Active My half of Pages Disappear #322240Hi!
I still think it’s a memory problem. If I check the server information (you can find it in the source code of your website in the head section) it still shows a memory limit of 64M which means your server does still not use 128M. Probably the server administrator does not allow you to increase the memory to 128M. I suggest to contact the host/server administrator and to ask them to increase the memory for you. Sometimes you need to upgrade the hosting plan if you need more memory…
Regards,
PeterSeptember 20, 2014 at 8:46 am in reply to: I want to show a drop down of flags/languages for WPML but get a row of flags #322236Hi!
Please create us an admin account and post the login credentials as private reply – I’ll look into it.
Cheers!
Peter -
AuthorPosts