Forum Replies Created
-
AuthorPosts
-
Hey!
1) Make sure no plugin breaks the media gallery – deactivate all plugins and check if the gallery starts to work. If yes activate them one by one to find the culprit.
2) If 1) doesn’t help try to increase the allocated php memory and set it to 128M.
3) Try to increase the php execution time if necessary.
Cheers!
PeterHey Carsten!
Yes, afaik you can order the categories with a plugin like: https://wordpress.org/plugins/taxonomy-terms-order/
Best regards,
PeterHi gharry79!
Ich werde Kriesi fragen, warum die Option entfernt wurde und ihm ggf bitten diese wieder hinzuzufügen. Als temporäre Lösung füge bitte diesen Code in das Quick CSS Feld ein:
#top.single-post .template-blog .blog-meta { display: none; }
Best regards,
PeterHey esemmel!
No, this feature is currently not supported. You can suggest it here: https://kriesi.at/support/enfold-feature-requests/ though.
Best regards,
PeterHey!
You can use this code to hide the post content and read more button:
.home .flex_column .template-blog .post .entry-content-wrapper { display: none; }
Cheers!
PeterHi chytry!
Maybe you need to load a different subset of the google font server – otherwise the headline font doesn’t support all characters or diacritics combinations.
Insert this code at the bottom of your child theme functions.php file:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); add_filter( 'avf_google_content_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext'; return $fonts; }
If you don’t use a child theme open up enfold/functions.php and replace this code at the very top
<?php
with
<?php add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); add_filter( 'avf_google_content_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Open Sans'] = 'Open Sans:400,600&subset=latin,latin-ext'; return $fonts; }
At least go to to the theme option page (Enfold > Theme Options) and re-save the theme settings.
Best regards,
PeterHey patriscia!
Afaik this should be possible. You can use the id of the tabs to change the color. I.e.:
#top #tab-id-1-container{ background: #333; }
will change the background color of tab 1. Replace 1 with 2 if you want to change the background color of tab 2, etc:
#top #tab-id-2-container{ background: #ff0000; }
You can also apply a custom css class to the tabs element: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ if you want to use multiple tab elements with different background colors.
Regards,
PeterHey!
Glad you solved the issue :)
Regards,
PeterHey TinyGiantStudios!
Can you please post a link to the page which loads the google api multiple times? I need to check which plugins and theme components load the api to answer the question if the filter will work for you.
Best regards,
PeterHey!
Ok, glad you found a solution.
Best regards,
PeterHi Klaus!
Die Schriftgröße kann mit diesem Code angepasst werden:
body { font-size: 12px; }
Jedoch benötigen einige Shortcodes bzw. Template Elemente speziellen Code mit genaueren CSS Selektoren. Falls daher der Code nicht funktioniert, gib uns bitte eine URL zu der Seite, wo die Schriftgröße angepasst werden soll. Den Code kann man in das Quick CSS bzw. die Child Theme style.css einfügen.
Best regards,
PeterHey kmue!
1) You can modify the post slider and add the “avia-smallarrow-slider” class to it – then the navigation button layout should change. Follow the instructions here http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and add “avia-smallarrow-slider” (without the quotes) into the Custom CSS class field.
2) You can hide the feature image with css code – insert it into the quick css field or child theme style.css file:
.avia-content-slider .slide-image { display: none !important; }
Cheers!
PeterHi!
Glad I could help you :)
Regards,
PeterHey!
Great, glad it works now :)
Best regards,
PeterAugust 21, 2014 at 2:34 pm in reply to: Can the following be done on client site using Enfold Theme #307364Hi!
You can use this css code to change the blog layout:
#top .fullsize .template-blog .blog-meta { float: left; } #top .fullsize .template-blog .post .entry-content-wrapper { margin-top: 20px; }
Regards,
PeterHey envato99!
Yes, you can activate the “custom css class” option: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then use a textblock element with a custom css class to change the styling of the textblock content/text. I.e. create a new textblock, insert your text into the editor field, then insert “mysmalltextclass” (without the quotes “”) into the “Custom CSS Class” field. Afterwards insert this code into the child theme style.css file (or into the quick css field on the Enfold option page):
.mysmalltextclass{ display: none; }
– the code will hide the text. You can also use this code if you just want to change the font size:
.mysmalltextclass{ font-size: 5px; }
Regards,
PeterHi!
Great, glad Günter could help you :)
Regards,
PeterHi pnacho!
No, afaik this is not possible. The wordpress search engine – even if you extend it with plugins like Relevanssi or SearchWP will always index/search all pages and not just the current page. It wouldn’t make much sense too because all browsers come with a search function (Ctrl + F) which can search the current page.
Best regards,
PeterAugust 21, 2014 at 2:08 pm in reply to: Inserting textarea in Code Block breaks Avia Builder #307353Hi ouranos3!
I’ll mark this thread for Kriesi. Afaik the textarea tag does not work because we use a textarea for the code input and probably you can’t wrap a textarea into a textarea without breaking the html structure. We reported this issue to Kriesi but I’m not sure if he already found a fix yet or if there’s no fix at all. I suggest to stick with the html snippet plugin for now if your code contains a textarea tag.
Cheers!
PeterHey!
It seems like WordPress doesn’t detect the page as “current page item” and because of the missing class the theme won’t add the underline to the menu links. I’m not sure what causes the issue though. Please create me an admin account and post the login credentials as private reply.
Regards,
PeterHi!
Yes, please insert this code into the enfold/functions.php or child theme functions.php file:
add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3); function avf_change_which_archive($output) { if(is_category()) { $output = __('Archive for:','avia_framework').' '.single_cat_title('',false); } return $output; }
Regards,
PeterHey designbyjm!
Tbh I’m not sure if it will fix the issue but you can try to replace all occurences of your http:// domain in the database with https:// – see https://kriesi.at/support/topic/installing-ssl-certificate-with-wordpress-https-plugin-and-css-problems/#post-302753
Regards,
PeterHey holger!
Der Layout Builder steht nur für Seiten und Portfolio – Einträge zur Verfügung und lässt sich nicht zB in Reiter/Akkordeons, etc. schachteln. Der Hintergrund ist va darin gegeben, dass wir nicht sicherstellen können, dass alle Shortcode mit allen anderen Shortcodes hamonieren bzw geschachtelt werden können und wir daher die Kreativität einschränken müssen. Ihr könnt den “Magic Wand” (Zauberstab-Icon des “Standard”-Editor) jedoch dazu benützen Shortcodes zu erstellen und diese dann auch in Reiter, etc. einfügen. Wenn ihr mehrere Shortcodes schnell erstellen wollt, empfehle ich euch zwei Fenster/Tabs im Browser zu öffnen, in dem einen Tab das “Advanced Template” zu bearbeiten und im andere Tab eine Seite mit dem Standardeditor zu öffnen, welche ihr für die Generierung der Shortcodes nützt. Dann könnet ihr schnell mit Copy/Paste die Shortcodes erstellen und in die Advanced Template Reiter, etc. kopieren.
Cheers!
PeterHi!
Sehr gut :)
Cheers!
PeterHi!
2) Bitte seht nach, ob die Browser Caches geleert wurden. Vielleicht könnt ihr die Änderungen nicht bemerken, da noch die alten Dateien im Cache sind.
Regards,
PeterHey!
Unfortunately this seems to be a conflict between WooCommerce and Yoast. Our theme just triggers it because we load the WooCommerce shortcode (Product Grid element which you use in your template). You can “fix” this issue by adding this code to the enfold/functions.php or child theme functions.php file:
add_action('after_theme_setup','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); }
Pages without the “Product grid” shortcode do not trigger this conflict – thus I recommend to add this code temporarily to the functions.php file when you want to save the meta description on this page and afterwards you can remove it.
Best regards,
PeterHey Madame_z!
Ich konnte die Ursache des Problems nicht finden, aber du kannst mit folgenden Code das Styling wiederherstellen:
#top .toggle_icon .hor_icon { width: 11px !important; } #top .toggle_icon { border: none !important; }
Diesen Code einfach in das Quick css Feld oder die Child Theme style.css einfügen.
Best regards,
PeterHi!
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 inside the dynamic_avia folder. Afterwards go to Enfold > Theme Options to regenerate the dynamic stylesheets (hit the green “Save all changes” button). Enfold uses the uploads folder because the permission is normally set to 755 or 777 and Enfold can normally create the “dynamic_avia” folder easily without any additional permission changes.
Best regards,
PeterHi!
1) Um die Verlinkgung zu entfernen verwende diesen Code:
.grid-loop-1 .avia-hover-fx { pointer-events: none; }
2) Um die Abstände zu entfernen, versuche diesen Code in das Quick CSS Feld einzufügen:
.avia-fullwidth-portfolio .grid-entry { width: 25.2%; }
Best regards,
PeterHey!
Please create me an admin account and post the login credentials as private reply – I’ll look into it.
Best regards,
Peter -
AuthorPosts