Forum Replies Created
-
AuthorPosts
-
March 13, 2014 at 10:18 am in reply to: BBPress page for a topic looks different from the demo #236785
Hi!
Please try to re-install bbpress. I noticed that there’s a stray li tag after the bbp-body element (also see http://validator.w3.org/check?uri=http%3A%2F%2Fnatureslens.co.uk%2Fforums%2Ftopic%2Fwelcome%2F&charset=%28detect+automatically%29&doctype=Inline&group=0 )
`
<li class=”bbp-body”>
<li>
`
and this li breaks the template. I’m not sure where this li tag comes from though because the theme does not change the bbpress output.Cheers!
PeterHey brycenagels!
Maybe the language cookie is missing. Try to clear your browser cache & delete cookies and then go to the editor page to translate it. See: https://kriesi.at/support/topic/wpml-homepage-blog-post-not-working/#post-230549
Also make sure that the products and product categories are translated properly (with: http://wordpress.org/plugins/woocommerce-multilingual/ ).
Cheers!
PeterHey Raph!
1) Maybe Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file and go to Enfold > Theme Options to regenerate the dynamic stylesheet (hit the green “Save all changes” button).
2) Yes, we’ll fix this with the next update. For now see: https://kriesi.at/support/topic/wpml-language-switcher-disappeared-after-upgrading-enfold/#post-236236
Best regards,
PeterHi!
https://kriesi.at/support/topic/enfold-update-errors-help/
I’ll close this thread now to avoid cross postings. If your issue is not resolved please create a new thread.
Best regards,
PeterHey!
1) To resize the logo try this code:
@media only screen and (max-width: 767px) { .responsive .mobile_slide_out .logo img{ width: 300px; } }
Obviously you can replace 300px with any other custom value. You can also define new media queries if (max-width: 767px) does not give you proper results for all screen sizes.
2) Yes, we’ll fix this with the next update. For now see: https://kriesi.at/support/topic/wpml-language-switcher-disappeared-after-upgrading-enfold/#post-236236
Best regards,
PeterMarch 13, 2014 at 9:53 am in reply to: WPML language switcher disappeared after upgrading Enfold #236772Hi!
Glad it works now :)
Best regards,
PeterHi!
I strongly recommend to use ftp to update the theme. It’s the best solution because you can make a backup of your old theme files first and you can be sure that the ftp client overwrites all files.
Cheers!
PeterHey!
Ah ok, now I understand the what you’re trying to achieve. You can use this code:
if(!function_exists('avia_exclude_taxonomy_from_query')) { function avia_exclude_taxonomy_from_query($query, $params) { if(!empty($query['tax_query'][0]['terms']) && !empty($query['tax_query'][0]['taxonomy'])) { $query['tax_query'][1]['taxonomy'] = 'featured'; $query['tax_query'][1]['operator']= 'NOT IN'; } return $query; } add_filter('avia_masonry_entries_query', 'avia_exclude_taxonomy_from_query', 10, 2); add_filter('avia_post_grid_query', 'avia_exclude_taxonomy_from_query', 10, 2); add_filter('avia_post_slide_query', 'avia_exclude_taxonomy_from_query', 10, 2); }
Place it into the parent or child theme functions.php and replace “featured” with your taxonomy name.
Regards,
PeterHallo,
leider sind wir derzeit etwas überfordert, da wir einerseits durch das 2.6 Update mehr Anfragen hereinbekommen und andererseits ein Mitarbeiter derzeit ausfällt. Ich hoffe, dass sich dbzgl bald eine Lösung findet. Wenn ihr eine schnelle Anwort wollt fragt bitte in Englisch, da ich der einzige deutschsprachige Mitarbeiter bin und daher eine Antwort länger benötigen kann.1) Seit 2.6 gibt es eine Option, welche euch erlaubt die Header Höhe anzupassen: http://www.clipular.com/c/4563914599694336.png?k=sXeFVpmd8TZqRKcKKe7Ah5qhmlQ – habt ihr schon probiert die Höhe zu ändern und somit die Skalierung des Logos zu verhindern?
2) Ihr könnt die Größe mit CSS Code an die Bildschirm auflösungen anpassen. ZB für Ipads und Smartphones mit:
@media only screen and (max-width: 989px) and (min-width: 768px) .responsive .mobile_slide_out .logo img { width: 300px; } } @media only screen and (max-width: 767px) .responsive .mobile_slide_out .logo img { width: 150px; } }
Anstelle von 300px und 150px gebt eure gewünschte Logo Größe ein.
3) Ja, der Browser blockiert die Slider Dateien, da diese über https:// geladen werden, aber ihr über kein vertrauenswürdiges Zertifikat verfügt. Stellt sicher das ihr entweder ein valides Zertifikat habt (dieses kann man sich zB bei Hostern registrieren lassen), oder ladet alle Resourcen nur von der http Adresse. Derzeit habe ihr aber eine Mischung von beidem und der Browser blocckiert die https:// url mit folgendem Fehler:
Failed to load resource: net::ERR_INSECURE_RESPONSE https://www.habermann-gmbh.com/wordpress/wp-content/themes/enfold/config-layerslider/LayerSlider/avia-samples/slide1_Layer_1.png
4) Die einzige Lösung (welche mir jetzt einfällt) wäre statt dem Logo den Balken + das Logo als Hintergrundsbild für das Menü zu setzen. Dann könntet ihr mit :
.html_header_top.html_header_sticky.html_large #header_main .container{ background-size: contain; background-image: url(https://website.com/meinlogo.jpg); }
sicherstellen, dass dieses Hintergrundsbild sich immer der Bildschirmgröße anpasst und ihr könntet zB die Balkenform mit Photoshop anpassen. Natürlich müsst ihr http://website.com/meinlogo.jpg mit der url zu eurem Bild ersetzen.
Best regards,
PeterHi zalzy!
It seems like you add the languages to the menu. Please go to the WPML settings screen and deactivate the “Display the language switcher in the WP Menu” option.
Cheers!
PeterMarch 13, 2014 at 9:13 am in reply to: Problem with ICON box which is too deep in any browsers #236759Hi!
It seems like you set a minimum height (100%) for the color section. If you don’t want to push the icon to the bottom try to set the minimum height value to 50%.
Best regards,
PeterHi!
Try to insert this css code into the quick css field to change the color
#top #wrap_all a.more-link{ color: #eb23eb; }
You can change the color value if necessary. You can also set a different color for each language. Just use the language switcher on the theme option page and insert the code into the quick css field – each language will generate a separate dynamic stylesheet based on the quick css content.
Cheers!
PeterMarch 13, 2014 at 9:00 am in reply to: "Erweiterter Layout-Editor" Button fehlt bei Beiträgen, auf Seiten ist er da #236757Hi!
Nein, da der Advanced Layout Editor nicht mit den Post Formaten kompatibel wäre. Derzeit ist daher keine Unterstützung angedacht.
Best regards,
PeterHi!
The shop overview/catalog page does not support an overlay. It can just display another product image and the rating – see: http://kriesi.at/themes/enfold/shop/ . If you really need an overlay for the catalog/shop page please hire a freelancer who can help you to implement the effect.
Can you post a link to your single product page (where you can see the “E803″ code). I’ll check why it doesn’t display an icon.
Best regards,
PeterHi!
Ich werde diesen Thread für Kriesi markieren und ihn bitten sich die Update AP anzusehen. Um die Update Nachrichten temporär zu deaktivieren fügt bitte folgenden Code in die Child Theme functions.php ein:
add_theme_support('avia_manual_updates_only');
Cheers!
PeterHey medienvirus!
Siehe http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/
Regards,
PeterHi salai_com!
Please update Enfold to version 2.6.1. I recommend to use ftp: https://vimeo.com/channels/aviathemes/67209750 for the update.
Regards,
PeterMarch 13, 2014 at 8:36 am in reply to: Enfold Portfolio Categories Not Showing in Sorting Menu #236745Hi!
Go to Appearance > Menus and click on the “Screen Options” tab in the top right corner. Then tick the checkbox next to “Portfolio Categories” to activate them.
Best regards,
PeterHi!
You can show the post title instead of the “Blog – Latest news” text. Insert this code at the very bottom of enfold/functions.php:
add_filter('avf_title_args', 'fix_blog_page_title', 10, 2); function fix_blog_page_title($args,$id) { $args['title'] = get_the_title($id); $args['link'] = get_permalink($id); return $args; }
to replace the default title.
Best regards,
PeterMarch 13, 2014 at 8:26 am in reply to: Post Slider: need to show full story and button content element #236732Hey!
Please post the credentials here and use the “Set as private reply” checkbox to mark the post as private.
Regards,
PeterMarch 13, 2014 at 8:25 am in reply to: Layer Slider and animated Galerie with pictures donot work #236730Hey!
Maybe try to update Enfold to version 2.6.1. It comes with a new LayerSlider version (LayerSlider 5.x) and hopefully this new LayerSlider version is compatible with Nextgen 2.x.
Cheers!
PeterHi!
Go to Appearance > Menus and click on the “Screen Options” tab in the top right corner. Then tick the checkbox next to “Portfolio items” to activate them.
Best regards,
PeterHi!
Yes, please create me an admin account and post the login credentials as private reply.
Cheers!
PeterHey!
@intosuwo – it seems like your header options are outdated. Enfold 2.6.1 comes with a new header settings panel but your theme still shows the old options. Please download the latest version of Enfold from themeforest.net and install the theme files with ftp: https://vimeo.com/channels/aviathemes/67209750 . Make sure that the ftp client overwrites all old theme files.Gee Are Pabst – great :)
Cheers!
PeterHey!
Yes, you can select multiple categories :)
Best regards,
PeterMarch 12, 2014 at 11:10 am in reply to: Language flags from WPML at the top header right disappeared after update #236237Hey!
I’ll ask Kriesi to fix the issue. I already sent him a patch. For now open up wp-content/themes/enfold/includes/helper-main-menu.php and replace:
if(!empty($nav))
with
if(!empty($nav) || empty($nav))
and make sure the top menu is active. The next update will enable you to display the menu in the main navigation if the secondary menu is deactivated.
Best regards,
PeterMarch 12, 2014 at 11:10 am in reply to: WPML language switcher disappeared after upgrading Enfold #236236Hi!
I’ll ask Kriesi to fix the issue. I already sent him a patch. For now open up wp-content/themes/enfold/includes/helper-main-menu.php and replace:
if(!empty($nav))
with
if(!empty($nav) || empty($nav))
and make sure the top menu is active. The next update will enable you to display the menu in the main navigation if the secondary menu is deactivated.
Cheers!
PeterHey!
I fixed it again. I’ll ask Kriesi to include this fix in the next update – then you don’t need to modify the file on your own :)
Regards,
PeterHey simonac!
Bitte versuche die neue Version 2.6.1 mittels ftp ( https://vimeo.com/channels/aviathemes/67209750 ) zu installieren. Diese sollte das Problem beheben, da auch die Versionsnummer höher ist.
Best regards,
PeterHey!
I recommend to try a different internet connection. Some users reported a similar bug when they used Vodafone LTE or another wireless internet provider. The maps started to work when they viewed it on a PC/Mac with a cable broadband connection…
Best regards,
Peter -
AuthorPosts