Forum Replies Created

Viewing 30 posts - 2,251 through 2,280 (of 9,352 total)
  • Author
    Posts
  • in reply to: gallery unable to select Images #307748

    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!
    Peter

    in reply to: sorting portfolio categories #307746

    Hey Carsten!

    Yes, afaik you can order the categories with a plugin like: https://wordpress.org/plugins/taxonomy-terms-order/

    Best regards,
    Peter

    in reply to: Foto bei Blog Post #307744

    Hi 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,
    Peter

    in reply to: Share this entry buttons #307663

    Hey esemmel!

    No, this feature is currently not supported. You can suggest it here: https://kriesi.at/support/enfold-feature-requests/ though.

    Best regards,
    Peter

    in reply to: A couple questions #307662

    Hey!

    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!
    Peter

    in reply to: Problem with diacritics #307647

    Hi 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,
    Peter

    in reply to: Tabs #307640

    Hey 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,
    Peter

    in reply to: Front Page Setting #307636

    Hey!

    Glad you solved the issue :)

    Regards,
    Peter

    in reply to: Disable Google Maps API Call in Backend #307634

    Hey 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,
    Peter

    in reply to: Tinymce not working when moving site to HTTPS #307631

    Hey!

    Ok, glad you found a solution.

    Best regards,
    Peter

    in reply to: Fließtext vergrößern #307630

    Hi 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,
    Peter

    in reply to: Slider Navigation #307381

    Hey 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!
    Peter

    in reply to: SEO small / invisible text? #307375

    Hi!

    Glad I could help you :)

    Regards,
    Peter

    in reply to: WooCommerce & WPML #307369

    Hey!

    Great, glad it works now :)

    Best regards,
    Peter

    Hi!

    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,
    Peter

    in reply to: SEO small / invisible text? #307363

    Hey 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,
    Peter

    in reply to: Changing Blog Title #307359

    Hi!

    Great, glad Günter could help you :)

    Regards,
    Peter

    in reply to: Search widget that search only in current page? #307358

    Hi 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,
    Peter

    in reply to: Inserting textarea in Code Block breaks Avia Builder #307353

    Hi 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!
    Peter

    in reply to: Main Menu not working when using slugs twice, WPML #307351

    Hey!

    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,
    Peter

    in reply to: Creating custom sidebars for categories #307350

    Hi!

    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,
    Peter

    in reply to: Tinymce not working when moving site to HTTPS #307347

    Hey 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,
    Peter

    in reply to: AVIA Layout Architekt in Reiter einbinden #307341

    Hey 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!
    Peter

    in reply to: Akkordeon-CSS Problem #307335

    Hi!

    Sehr gut :)

    Cheers!
    Peter

    in reply to: Portfolio Grid #307334

    Hi!

    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,
    Peter

    in reply to: Conflict with enfold and seo yeast woo commerce #307331

    Hey!

    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,
    Peter

    in reply to: Akkordeon-CSS Problem #307319

    Hey 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,
    Peter

    in reply to: Theme Options have no effects #307279

    Hi!

    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,
    Peter

    in reply to: Portfolio Grid #307272

    Hi!

    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,
    Peter

    in reply to: WooCommerce & WPML #307270

    Hey!

    Please create me an admin account and post the login credentials as private reply – I’ll look into it.

    Best regards,
    Peter

Viewing 30 posts - 2,251 through 2,280 (of 9,352 total)