Viewing 30 results - 225,211 through 225,240 (of 244,323 total)
  • Author
    Search Results
  • #243238

    Thanks Dude. Actually I took this up with Mailpoet too and thye came back to me last night admitting that their latest release had a bug and I should delete the wysija newsletters folder using ftp then re-install mailpoet plugin from wordpress.

    I’ve done this and now Mailpoet is ok – i.e. I am now able to edit my pages again in Enfold.

    Best wishes,

    Derek

    #243235

    In reply to: Enfold extremly slow

    Thanks Peter. I have removed polylang now – I suppose you could see that? So now WPML is what I should rely on – right?
    The translations show fine now on both languages.

    However the site is still awful slow. I have run the site through https://developers.google.com/speed/pagespeed/insights/ – and many things has to be done. Do you have any suggestions how to do this besides optimizing the images? I have installed W3 Total Cache – do you think it can help out speeding up the loading time?

    Regards,
    Eva

    #243225
    This reply has been marked as private.
    #243223

    In reply to: Enfold extremly slow

    Hey!

    I just replaced

    
    if(defined('ICL_SITEPRESS_VERSION') && defined('ICL_LANGUAGE_CODE'))
    

    with

    
    if(defined('ICL_LANGUAGE_CODE'))
    

    The reason is that polylang claims to support WPML functions (see: http://polylang.wordpress.com/documentation/documentation-for-developers/compatibility-with-the-wpml-api/ ) and I thought that it might work with Enfold out of the box because we also rely on the WPML api. But unfortunately it does not work and it seems like additional work would be required to make the plugin/theme fully compatible.

    Cheers!
    Peter

    #243222

    Hi!

    Did you try the “Datepicker” element: http://www.clipular.com/c/4949742886846464.png?k=TL4PjAR-Tcv4PtfuqAg_BltnjFI ? Kriesi also uses it on the demo page: http://kriesi.at/themes/enfold/shortcodes/contact-forms/

    Cheers!
    Peter

    #243221

    Hi Anja!

    It’s a slide background image: http://www.clipular.com/c/4973811883573248.png?k=s_N_mtFGyEli78kC_1BWdIL2VMQ – it does not affect the entire slider like the “Global Settings” background but just one slide. You can’t find it in the media gallery because wordpress won’t import it as media attachment when you import the slider/theme demo data. If you want to add the image to your media gallery you can download the image here: http://kriesi.at/themes/wp-content/themes/enfold/config-layerslider/LayerSlider/avia-samples/slide1_Layer_1.png and then upload it by using the media gallery uploader.

    Regards,
    Peter

    #243214

    Hey bleepstudio!

    In enfold/functions.php search for:

    
    'cart' 			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue859'),
    

    and replace ue859 with any other char code. You can use the icon shortcode “char selector”: http://www.screenr.com/MYsN to get the character code.

    Best regards,
    Peter

    #243213

    Hi!

    Open up wp-content/themes/enfold/includes/loop-search.php and replace:

    
    $post_format 	= get_post_format() ? get_post_format() : 'standard';
    

    with

    
    	$current_post = array();
    	$current_post['the_id']	   	= get_the_ID();
    	$current_post['post_format'] = get_post_format() ? get_post_format() : 'standard';
    	$current_post['content'] 	= get_the_excerpt();
    	$current_post['content'] 	= empty($current_post['content']) ? strip_shortcodes( get_the_content() ) : $current_post['content'];
    	$current_post['title']   	= get_the_title();
    	$current_post	= apply_filters( 'post-format-'.$current_post['post_format'], $current_post );
    	extract($current_post);
    

    and replace:

    
    echo "<h2 class='post-title entry-title'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".get_the_title()."</a></h2>";
    

    with

    
    echo "<h2 class='post-title entry-title'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".$title."</a></h2>";
    

    Best regards,
    Peter

    #243209

    In reply to: Enfold extremly slow

    Thank you, I figured it out.
    Regards,
    Eva

    #243208

    Hi abedia!

    IE8 doesn’t support a lot of modern css which is why there will be cases that it doesn’t look quite right. The header background should still show however so if you can provide a link to the site we’ll see whats going on.

    The width is dependent on the browser support media queries which IE8 does not. You can use a plugin to try and force IE8 to use media queries as a hack: http://wordpress.org/plugins/respondjs/

    Regards,
    Devin

    #243207

    In reply to: Enfold extremly slow

    Hi!

    You can replace the whole contents of that file in that case or re-upload the theme files to overwrite them entirely (same thing an update does).

    Best regards,
    Devin

    #243206

    Hey!

    Yes. Use this code:

    
    add_filter('avf_option_page_init', 'add_option_tab'), 10, 1); //Adds option page to Enfold theme option panel
        function add_option_tab($avia_pages)
        {
            $avia_pages[] = array( 'slug' => 'mysettings', 'parent'=>'avia', 'icon'=>"hammer_screwdriver.png", 'title'=>__('My Tab','avia_framework'));
            return $avia_pages;
        }
    

    to add a new option tab and this code:

    
    add_filter('avf_option_page_data_init', 'add_option_to_settings_page', 10, 1); //Adds options to the "Custom Post Types" option page
        function add_option_to_settings_page($avia_elements)
        {
            $avia_elements[] =  array(
                        "slug"  => "mysettings",
                        "name"  => __("Custom Message",'avia_framework'),
                        "desc"  => __("Please enter the message that you would like to dispay to your visitors.",'avia_framework'),
                        "id"    => "message",
                        "type"  => "textarea",
                        "std"   => ""
                        );
    
            return $avia_elements;
        }
    

    to add new options to this tab. If you want to add options to an existing tab replace “mysettings” with the slug of the tab you want to modify.

    Cheers!
    Peter

    #243202

    Hey Chris!

    Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons.php and replace:

    
    $output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
    

    with

    
    $output .= "<a href='{$link}' class='avia-button some_class ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
    

    and instead of some_class insert your class. If you don’t want to modify the parent theme copy the wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons.php file to your child theme and follow the instructions here: https://kriesi.at/support/topic/add-elements-to-visual-composer/

    Best regards,
    Peter

    #243197

    In reply to: Entypo in widget title

    Hey Shallnotbe!

    Please try to insert this code at the very bottom of enfold/functions.php or the child theme functions.php file:

    
    function widget_title_shortcode($output)
    {
        return do_shortcode($output);
    }
    add_filter('widget_title', 'widget_title_shortcode');
    

    Best regards,
    Peter

    #243192

    In reply to: Woocommerce image size

    Hi Alisa!

    You can re-size the main product image with:

    
    .template-shop .single-product-main-image .images a {
    max-width: 245px;
    }
    

    Insert the css code into the quick css field (Enfold > Styling) or into your child theme style.css.

    Cheers!
    Peter

    Hi codepantry!

    You can use the “Custom ID” field: http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png to add a custom id to each color section. You can use this id to apply some custom style code to the text within this section. I.e. if you insert “portfolio” into the field you can style your text with:

    
    #top #portfolio img{
    float:left;
    }
    
    #top #portfolio p{
    float:right;
    }
    

    This is just an example – obviously you can use the #portfolio selector to determine the position of divs, etc. too.

    Best regards,
    Peter

    #243179

    Hey!

    Open up wp-content/themes/enfold/includes/loop-index.php and delete:

    
                        if ( get_comments_number() != "0" || comments_open() ){
    
                        echo "<span class='comment-container minor-meta'>";
                        comments_popup_link(  "0 ".__('Comments','avia_framework'),
                                              "1 ".__('Comment' ,'avia_framework'),
                                              "% ".__('Comments','avia_framework'),'comments-link',
                                              "".__('Comments Disabled','avia_framework'));
                        echo "</span>";
                        echo "<span class='text-sep text-sep-comment'>/</span>";
                        }
    

    Then replace:

    
     echo '</footer>';
    

    with

    
                        if ( get_comments_number() != "0" || comments_open() ){
    
                        echo "<span class='comment-container minor-meta'>";
                        comments_popup_link(  "0 ".__('Comments','avia_framework'),
                                              "1 ".__('Comment' ,'avia_framework'),
                                              "% ".__('Comments','avia_framework'),'comments-link',
                                              "".__('Comments Disabled','avia_framework'));
                        echo "</span>";
                        }
    
     echo '</footer>';
    

    Cheers!
    Peter

    #243170

    David, thanks for your reply.
    Simply try this: create a button within the latest Enfold release. Is it all good? I always added button without issues. Now, I have troubles to do it. Cannot say why. In Italian we usually say: “Boooh!” :) ***EDIT*** Now, I’m having troubles in creating buttons with manual link in posts.
    Regarding the link website.url/path/manually, I’m not expecting anything, I just was saying button shortcodes seems to be buggy, since I fulfill every part of it and the link appears to be like that.
    Concerning copy/paste wordpress link… you’re right, at the moment it’s not possible to link a media. But… I think community should fix this part. :)

    Hey!

    Please give us a link to the actual website. We really need to see it live. Did you use any special plugins for the comment area? Another user reported the same issue with the small preview image but it has been fix on the latest update of Enfold.

    Regards,
    Ismael

    ttem
    Participant

    I was able to combine and minify most of the theme’s css although the child theme style.css and the /dynamic_avia/enfold-childtheme.css file which contains the theme styling customizations are causing some style quirks when minified and combined.

    Any tips on getting those files to work with W3TC?

    #243153

    Hi lewisedavis!

    Do you have other plugins installed? Maybe, you’re using the url with the toggle id? Something like this:

    http://localhost/kriesi/enfold/?page_id=2880#toggle-id-1
    

    We tested this on our end and the toggle containers closed as expected when the value is set to zero. Please give us a link to the page with the issue.

    Cheers!
    Ismael

    #243152

    1) I do have the latest version of Enfold,
    2) Default Enfold setting is “display only title”,
    3) Edited page and under Layout I did select “display only title”,
    4) In all instances I “cleared the CACHE” repeatedly and checked it out on two other browsers (nothing showing there either), and
    5) I do NOT have an CSS that would interfere with or hide the title-container on the About page

    Still the Title bar does not show. Any thoughts?

    #243143

    In reply to: Login | Signup | etc

    Josue,

    Please see this screenshot.

    Login | Signup

    How can we add this to the top nav bar?

    thanks,

    #243136

    Hey bmneimark!

    Do you have the latest version of Enfold? You can edit the page then look for Layout > Title Bar Settings > select Display Titlebar and breadcrumbs. Make sure that you didn’t add any css to hide the title-container.

    Cheers!
    Ismael

    #243127
    richardruddle
    Participant

    I really like the testimonial functionality but am looking to extend it to the sidebar to display a random testimonial. As I have researched, this doesn’t seem possible. It would be great to leverage the content entered as testimonials and propagate it throughout the site. Do you know of any other way to do this within the Enfold theme framework?

    #243120

    Hi ksakkos!

    Your 1st and 2nd assumptions are correct, this is the way images work on enfold theme, they have some custom css properties, that allows them to behave correctly when you have a responsive site, basically what this does is the following, e.g. Your containers is 300 x 400, you can place an image in there 600 x 800, and it will look and behave correctly, the good thing about doing this is that you already have a retina ready image since you have the double of the container size ( 2px x a single 1px ).

    One of the downsides of doing these ( placing a bigger image inside an smaller container ), is that the browser needs to recalculate the image proportions, hence will take more time to render those on your page, ( you will start experiencing some delays once you have a decent amount of images on a single page.

    So if you know that you won’t have an excessive amount of images, you could place a bigger image and not having to worry about window sizes.

    TL;TR Yes you can use the biggest image that you have available.

    Hope this answer your questions.

    Regards,
    David

    #243114

    Hello Björn,

    Have you tried disabling all third-party plugins to see if it gets fixed?

    Regards,
    Josue

    #243112

    Hi!

    Yes, i did see the problem, unfortunately i couldn’t figure out. It appears to be an isolated case with your server, i tried reproducing the issue in another setup exactly as yours (on my host) and the Catalan characters worked as expected, please take a look:
    http://bit.ly/1gzHzN4

    The only difference that comes to my mind would be the subdomain and the domain name. As a temporary solution you could use images as text, like we do here.

    Best regards,
    Josue

    #243111

    Hi!

    No, i did see the issue. Just to make sure we are using the latest latest version of Enfold please update yours to 2.6.2.

    Best regards,
    Josue

    #243106
    3DdesktopsUK
    Participant

    Hi team,

    I’ve read a few posts on here already but am still stumped. ( https://kriesi.at/support/topic/enfold-layerslider-is-not-centered-on-ipad-mini/)

    I’ve checked all my settings but still see my slides off to the left on ipad.

    Any help to the correct global slider settings would be greatly appreciated.

    here’s the site :
    http://www.risinghigh.net
    thanks alot in advance

    • This topic was modified 11 years, 11 months ago by 3DdesktopsUK.
Viewing 30 results - 225,211 through 225,240 (of 244,323 total)