Viewing 30 results - 222,571 through 222,600 (of 244,373 total)
  • Author
    Search Results
  • #257601
    adrianwackernah
    Participant

    Ich suche schon lange nach Möglichkeiten, das endlich mein Feature Image im Beitrag als Vorschaubild von Facebook genommen wird. Hatte das auch mal ein Plugin bei Marketpress gefunden, dem richtigen Bild die für FB nötigen Metatags hinzufügte. Doch inzwischen klappt das nur noch rudimentär. Auch wenn ich in Enfold 2.7 in einem Beitrag ein Sharing zu FB anklicke, wird fast nie das Feature Image genommen. Was muss ich tun, damit das Bild endlich zu FB rüberkommt? Habt ihr da eine Idee? Wie ist das mit dem og:image meta tag? Ist das noch gültig?

    #257598
    coeval
    Participant

    Hey there,

    I have another question :)
    I installed the Enfold Update and in my blog appears a new text box „Share this entry“ (H5).
    I searched in the comments.php, but couldn’t find this sentence.
    Is there a chance to remove this sentence as well?

    The social network icons have this nice hover effects, that says „share with Facebook, twitter, & co“.
    I think there is no need for the headline „share this entry” above these items.

    Yours,
    Danny

    #257597

    Hi Roberto!

    Thank you for pointing out the element clearly :) Please add following code to Quick CSS in Enfold theme options under General Styling tab

    body .av-special-heading.blockquote .special-heading-border {
    display: block;
    }

    Cheers!
    Yigit

    #257594

    In reply to: Widget border

    Hey Leggereacolori!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    .avia_widget_section {
    border: 1px solid #e2e2e2;
    padding: 10px;
    }
    .widgettitle {
    background-color: red;
    }

    Best regards,
    Yigit

    #257589

    In reply to: iPad Air

    Hey Finlando!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo {
    margin-left: 35%;
    }}

    I could not reproduce overlapping issue. Have you fixed it already?

    Best regards,
    Yigit

    #257582

    Hey Fred!

    Please switch your advance layout builder to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. Try to copy the shortcodes on another page. Let us know if it works.

    Regards,
    Ismael

    #257574
    ulrici
    Participant

    I want to know, what should I do to update Enfold with a Child-Theme. Is there any tutorial? I want to update my Enfod-Theme from 2.5.2 to 2.7 . I use a Child-Theme. In my Theme Options, there is an option “Theme Update” it works with a Themeforest API Key. Now there is a notic “Update Available! A new Version (2.7) of your Parent Theme (Enfold) is available! You are using Version 2.5.2.Do you want to update?“, can I update my actual Enfold-Theme with Child-Theme by this way?

    thanks ulrici

    #257563
    Stefan
    Participant

    We did have a problem regarding the fonts and the breadcrumb navigation.

    1. If you use a smartphone, you will not see the breadcrumb navigation, just test kriesi.at .-)
    2. The fonts wrapped ugly at Tablets or Smartphones, just try a contact form with phone number (two columns).

    #257559

    It appears that the bug is not ENFOLd related.
    It is due to mu host (Orange / Oleane). I had to show them that even a new wordpress install with ENFOLD dummy data is ok on other hosts and bugged on their servers.
    One guy modified “something” on my files to make the website look ok.
    I need to call them to know what is that “something”. If I have the information I’ll give it here, please do not close conversation yet.

    Anyway ENFOLD was not bugged ans is still the best theme ever :)

    #257555

    Hey!

    Did you solve the issue? The sidebar displays fine on my end: http://www.screenr.com/y4hN

    Cheers!
    Peter

    #257551

    In reply to: Enfold tables

    I tried that one tablepress but there was a problem with pagination.

    I moved to theme option with tables and it works nice.
    Few questions:

    1. Is there a way to give visitor a chance to sort culums by hedings?
    2. align text vertically?

    #257550

    In reply to: Edit frontpage

    Hey oeconomedicus!

    Versuche vielleicht nochmals das Theme mittels ftp zu installieren: https://vimeo.com/channels/aviathemes/67209750
    Anschließend gehe zu Enfold > Theme Options und speichere die Einstellungen erneut.

    Regards,
    Peter

    #257549

    In reply to: Enfold tables

    Hi netarc!

    I recommend to use an advanced table plugin for this task. Maybe: http://tablepress.org/ will do what you want.

    Cheers!
    Peter

    #257548

    In reply to: Menue Error

    Hey welti!

    Bitte aktualisiere Enfold auf Version 2.7. Falls der Fehler noch immer besteht versuche alle Plugins zu deaktivieren- vielleicht ist ein Plugin noch nicht zur Gänze mit WP3.9 kompatibel. Falls dies noch immer nicht hilft versuche den allocated memory auf 128M zu setzen: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    Wenn dies den Fehler noch immer nicht behebt erstelle uns bitte einen Admin Account und sende uns die Login Daten als “Private Reply”.

    Best regards,
    Peter

    #257546

    Topic: Remove featured image

    in forum Enfold
    Pedro
    Participant

    Hi,

    I’ve checked the new featured for remove the featured image on single post. But this only works on posts. If I want to remove this featured image on CPT I checked that the code is on functions-enfold.php

    So I copy my code and change the name of the functions to avoid problems with the original functions. So this is the code that I have in my functions child-theme file:

    /* 
    Add a checkbox to the featured image metabox 
    */
    if(!function_exists('theme_featured_image_meta'))
    {
    	add_filter( 'admin_post_thumbnail_html', 'theme_featured_image_meta');
    	
    	function theme_featured_image_meta( $content ) 
    	{
    		global $post_type;
    	
    		if($post_type == "meeting")
    		{
    		    $text = __( "Don't display image on single post", 'avia_framework' );
    		    $id = '_avia_hide_featured_image';
    		    $value = esc_attr( get_post_meta( $post->ID, $id, true ) );
    		    $selected = !empty($value) ? "checked='checked'" : "";
    		    
    		    $label = '<label for="' . $id . '" class="selectit"><input '.$selected.' name="' . $id . '" type="checkbox" id="' . $id . '" value="1" > ' . $text .'</label>';
    		    return $content .= $label;
    		}
    		
    		return $content;
    	}
    }
    
    /* 
    Make sure the checkbox above is saved properly 
    */
    if(!function_exists('add_feature_image_checkbox'))
    {	
    	add_filter( 'avf_builder_elements', 'add_feature_image_checkbox');
    
    	function add_feature_image_checkbox($elements)
    	{	
    			$elements[] =  array(
    		        "slug"  => "layout",
    		        "id"    => "_avia_hide_featured_image",
    		        "type"  => "fake",
    		    );
    	   
    		return $elements;
    	}
    }

    The thing is the function to save the checkbox doesn’t work. What should I do? Thanks

    #257545

    Hey!

    You need to rewrite/change major parts of the fullwidth blog layout css code in wp-content/themes/enfold/css/layout.css – search for all rules with the selector “.fullsize .template-blog” and comment out the code. Then check the results. Afterwards add some style rules to get the desired layout.

    Regards,
    Peter

    #257536

    Hi!

    No, unfortunately I’m not familiar with buddypress and I don’t know how you can replace the image with a bigger thumbnail.

    Cheers!
    Peter

    #257530

    Hey Yigit,

    Great! That works fine.

    Still have some questions and sorry for my bad English.

    1) Body font enlarge with “body {font-size: 15px;}” in quick css increases not everything. For exemple Enfold latest news widget and commentary under Leave a Reply remain small font.
    2) Enfold theme make categories and tags clickable in the text. How can I remove this feature?
    3) Bold words are the same color as my links. How can I make the bold words in the same color as normal text?
    4) When I set my blog page by the enfold theme options, he no longer cuts off automatically by 55 words. Can I at this feature back?
    5) How can I give the heading tags a different color?
    6) The H2 and H3 tags are a little bit to large for my, how can I set a smaller font? (the H1 is smaller than the H2 now, can you see what font the H1 tags are by default?)

    Thanks for the time.

    Regards,
    Miikey

    #257527

    Hi grassrootsEE52!

    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 inside the dynamic_avia folder and go to Enfold > Theme Options to regenerate the dynamic stylesheet (hit the green “Save all changes” button).

    Cheers!
    Peter

    #257525

    In reply to: Icon Box css anpassen

    Hi philipp81!

    Ja, siehe: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ – einfach eine Klasse in das CSS Feld einfügen und diese dann für die Style-Anpassungen verwenden.

    Cheers!
    Peter

    #257519

    Hey!

    Yes, the theme options (Enfold > Theme Options) are not translatable at the moment. Thank you for the French translation!

    Regards,
    Peter

    #257518
    uychkinnear
    Participant

    I have made a couple of layer sliders to widget column size because in other themes you can display layer sliders in a widget. Can I do this with Enfold? If so how, I tried tried to paste the layer slider shortcode into the text widget but it didn’t work. Cheers Kinnear

    #257514

    In reply to: Lost magic wand

    Hey!

    Please update to Enfold 2.7. If it doesn’t help try to deactivate all third party plugins – maybe a plugin is incompatible with WP3.9.

    Cheers!
    Peter

    #257512

    Hey!

    Insert this code into the enfold/functions.php file or into the child theme functions.php file:

    
    add_theme_support('avia_no_session_support');
    
    

    It will deactivate the breadcrumb session and should fix the warning message.

    Best regards,
    Peter

    #257501

    Here is an example in video screencast. On this page, I completely rebuilt it. On another installation I had started, but wasn’t using yet, on a completely different server/hosting company, I added a new page. Added the elements and saved. Then moved an element and edited another text box, then saved again. You will then see how a large portion of the page disappears at the bottom. The only thing that is the same is the two pie chart images I used. Could it be a corrupted image? How can I debug it and see why it is crashing.

    http://screencast.com/t/fpCDv9ARyn0

    Thanks for any help you can give.

    -Fred

    jenlioness
    Participant

    Hi,

    I am using Enfold for this site: http://unearthedartsmn.com
    They are selling art classes and I used the code below from another site (added to the functions.php) to change the “In Stock” to “Seats available” however it doesn’t say how many are available per inventory number. Is there a way for it to say how many seats are available and then adjust downward as the seats are sold? Would it work for both simple and variable products? Some classes have multiple session dates with the inventory being controlled at the variation level.

    add_filter( ‘woocommerce_product_description_heading’, create_function( ”, ‘return “”;’ ) );
    add_filter( ‘woocommerce_stock_html’, create_function( ”, ‘return “<p class=\”stock\”>Seats available</p>”;’ ) );

    add_filter( ‘woocommerce_out_of_stock_flash’, create_function( ”, ‘return “<p class=\”out-of-stock\”>No seats available</p>”;’ ) );

    Thanks for any help you can provide on this issue,
    Jennifer

    #257492

    Topic closed, glad you figured it out.

    #257490

    In reply to: Enfold child

    Hola,

    Las fotos que has adjuntado no se muestran, trata de subirlas a Dropbox o Imgur.

    Saludos,
    Josue

    #257488

    Hey!

    Try updating both WordPress and Enfold to their respective latest version, it may get fixed.

    Best regards,
    Josue

    #257485

    Hi!

    Well, the code is not being added to the enfold.css file (this is where Quick CSS should be), try adding it to custom.css.

    Regards,
    Josue

Viewing 30 results - 222,571 through 222,600 (of 244,373 total)