Viewing 30 results - 226,381 through 226,410 (of 243,782 total)
  • Author
    Search Results
  • #234159

    Hi vcoronel!

    We did a quick test with Enfold and revolution slider and we didn’t notice any incompatibility issues. However we can’t guarantee that both play nice together.

    Regards,
    Peter

    #234155

    Hi Marco!

    Can you post a link to your product/shop page please? Afaik Enfold doesn’t display a tooltip at all and all product images have an alt text and thus it should be displayed if a tooltip pops up.

    Best regards,
    Peter

    Hi dentaparks!

    Probably there was an error when the database saved the settings and now the styling script can’t process the options. I recommend to delete the theme option database and to re-configure the settings. If you have a database backup you can also restore this backup to save some time. Use a tool like phpmyadmin to edit your database entries and open the wp_options table. Then search for an option called “avia_options_enfold” and delete it. Then you should be able to access the admin area and to re-configure the theme options.

    Cheers!
    Peter

    Hey!

    Please try to change the theme folder name. I noticed the url path is a bit weird

    
    http://robinhq.com/wp-content/themes/enfold-2.5.4/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot
    

    and maybe the folder name enfold-2.5.4 breaks it. Try to rename the theme folder to enfold.

    Regards,
    Peter

    #234152

    Topic: enfold broken template

    in forum Enfold
    Husky570
    Participant

    Just installed Enfold on both an existing and a clean install and on both occasion the site has lost all it’s css.
    I have installed it via zip file now four times but still the same happens.

    Any ideas?

    http://wwww.mbdesign.uk.com/des/

    #234150

    Hi davidsantas!

    Please check if this is a theme issue. Switch to the default WordPress theme (TwentyThirteen or TwentyTwelve) and check if the cart starts to work afterwards. If yes, it’s an issue connected to the Enfold theme. Ifg not the WooCommerce plugin doesn’t work properly on your server. You can also try to increase the allocated memory to 128M: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    Cheers!
    Peter

    #234146

    Hey Dominik!

    Kriesi used this css code:

    
    #pre-sale-question form {
    border-radius: 6px;
    padding: 8px;
    position: relative;
    border: 1px #e1e1e1 solid;
    background: #D1D1D1;
    background: -moz-repeating-linear-gradient(-45deg, #000 , #000 30px, #fff 30px, #fff 40px, #42A0BD 40px, #42A0BD 70px,#fff 70px, #fff 80px);
    background: -webkit-repeating-linear-gradient(-45deg, #000 , #000 30px, #fff 30px, #fff 40px, #42A0BD 40px, #42A0BD 70px,#fff 70px, #fff 80px);
    background: -o-repeating-linear-gradient(-45deg, #000 , #000 30px, #fff 30px, #fff 40px, #42A0BD 40px, #42A0BD 70px,#fff 70px, #fff 80px);
    background: repeating-linear-gradient(-45deg, #000 , #000 30px, #fff 30px, #fff 40px, #42A0BD 40px, #42A0BD 70px,#fff 70px, #fff 80px);
    }
    

    to create the style. Just place the form into a color section and insert “pre-sale-question” into the custom id field: http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png

    Best regards,
    Peter

    #234142

    Hi!

    Please try to replace the .be short url with a standard youtube.com url and check if it fixes the issue. We’ll release a new update (Enfold 2.6) next week which should fix some video related issues. It will also introduce a “fallback image” feature for devices which can’t play the video(s). These devices will then show an image instead of a video and imo this is a graceful fallback.

    Best regards,
    Peter

    Hi!

    We’ll release a new update (Enfold 2.6) next week. It will introduce a “fallback image” feature for devices which can’t play the video(s). These devices will then show an image instead of a video and imo this is a graceful fallback.

    Regards,
    Peter

    #234139

    Hi ceubri!

    Open up wp-content/themes/enfold/framework/php/class-framework-widgets.php and replace:

    
    				the_excerpt();
    				echo "</div>";
    

    with

    
    				get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>');
    				echo "</div>";
    

    Regards,
    Peter

    #234138

    Hi asarran!

    Yes, the can right click on an image and download the file. However Enfold does not come with a special download script (i.e. with a script which packs the images into a zip file and provides a download link to the zip file, etc.).

    Best regards,
    Peter

    #234136

    Hey evtilsley!

    You can use the theme option panel (Enfold > Theme options) to insert your analytics code. You don’t need to add the script tags but you must paste in the entire tracking code and not only the google analytics id.

    Best regards,
    Peter

    #234130

    Hey!

    Julien90 – Enfold selbst ist bei dir schon übersetzt. Das erkennt man daran, dass zB die Breadcrumb oder die Suchoption auf Deutsch sind. Die Inhalte (inkl Kontaktformular) welche ihr mit dem Dummy Data Button importiert sind immer auf Englisch und lassen sich leider im Vorfeld nicht übersetzen. Um das Kontaktformular zu übersetzen geht zu dieser Seite: http://s517268118.online.de/?page_id=1167 und klickt auf “Seite bearbeiten”. Dann könnt ihr die Texte, Beschriftungen der Formularfelder und den Button Text wie gewünscht abändern und zB auf deutsche Beschriftungen umstellen.

    Cheers!
    Peter

    #234129

    Hey!

    I’ll add both fields to the masonry grid with the next update. For now you can fix it by replacing this line in: wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php

    
    $this->loop[$key]['date'] 			= "<span class='av-masonry-date meta-color'>".get_the_time($date_format, $id)."</span>";
    

    with

    
    $this->loop[$key]['date'] 			= "<span class='av-masonry-date meta-color updated'>".get_the_time($date_format, $id)."</span>";
                    $author = get_the_author_meta('display_name', $entry->post_author);
                    $this->loop[$key]['author'] 		= "<span class='av-masonry-author meta-color vcard author'><span class='fn'>". __('by','avia_framework') .' '. $author."</span></span>";
    

    Then replace:

    
                        $this->loop[$key]['text_after'] .= $this->loop[$key]['date'];
    

    with

    
                        $this->loop[$key]['text_after'] .= $this->loop[$key]['date'];
                        $this->loop[$key]['text_after'] .= '<span class="av-masonry-text-sep text-sep-author">/</span>';
                        $this->loop[$key]['text_after'] .= $this->loop[$key]['author'];
    

    and insert this code into the quick css field:

    
    .av-masonry-date, .av-masonry-text-sep, .av-masonry-author{font-size: 11px;}
    .av-masonry-text-sep{padding: 0 5px;}
    

    Regards,
    Peter

    #234128

    Hi,
    Is it possible to download the enfold 2.5.0 version again? This version was fine with firefox and iExplorer. I need a solution for this broken fontface icons.

    Thanks Thomas

    #234125

    In reply to: Mobile Theme

    Hey Philip!

    Enfold is already responsive and you don’t need to install a special plugin or theme for mobile devices. If you really want to host a “mobile” website I recommend to use a plugin like: https://wordpress.org/plugins/simple-mobile-url-redirect/ to redirect your users to your mobile optimized website.

    Cheers!
    Peter

    #234123

    Hi vcoronel!

    Only the theme option panel (Enfold > Theme Options) uses the thickbox script. We didn’t replace it yet because it works as expected and WP3.8 still supports it (thickbox is not deprecated). Note that the template/layout builder already uses the new script and you can use the new media window for your galleries, etc

    Best regards,
    Peter

    #234122

    Topic: Mobile Theme

    in forum Enfold
    GadgetSpeed
    Participant

    Is their a way to optimize the Enfold them for Mobile Devices.

    When I try and use some of the WP Mobile packages they avia code actually appears in some pages.

    Thanks

    #234117
    vcoronel
    Participant

    Why the way it looks when I insert media on your theme looks outdated compared to my other themes (3clicks, kallyas, jupiter). Please explain. Probably it is something silly but I need to find out.

    See snapshot here: http://victorcoronel.com/download/outdated.jpg

    Thank you.

    #234116

    Topic: enfold > preheader

    in forum Enfold
    vcoronel
    Participant

    How do I made a preheader (I see you treat it as Fixed Header with Social Icons) that collapses and expands like http://tepesinc.com/ ????

    Thank you

    #234115
    vcoronel
    Participant

    I want to change the icon (circle and arrow: http://bchomeusa.com/brittocharette/portfolio/) to a rounded corner customized icon I generated in photoshop. How do I do that?

    Thank you.

    #234113
    vcoronel
    Participant

    My wants his logo larger on the header. Can you provide the css and where to put it so the header is 350px tall to allow the logo bigger? also, where is the retina display logo size entered?

    Thank you.

    #234111

    Topic: Enfold > Map size

    in forum Enfold
    vcoronel
    Participant

    I need to enlarge the google map in a way that it is displayed all across the screen. Just the way Kallyas allows me to do it here: http://victorcoronel.com/galapesca/pages-2/contact-us/

    Thank you.

    #234101

    Additionally, on kriesi’s forum, it appears the avia user widget in the sidebar is something that should be part of enfold, but it isn’t. How do we add that functionality?

    #234100
    themeforesttony
    Participant

    I want to to create two main content sections on the Home page so I can set each with different styles. I am using the 3 column with blog layout as the basis and am trying to achieve a look you can see on the comp I posted here: http://idg-partners.com/client_review/enfold/
    Can you tell me if there is a simple way to do this or do I need to create a new template?
    Thanks
    BTW – AMAZING theme!

    #234099

    How did kriesi set his forum width?
    If you take a look at mine – http://codelessme.com/weightlossrebels/forums/ it is more narrow. I need it to be the width that Kriesi has his.

    zerozendesign
    Participant

    Hey guys,

    How do you wrap the breadcrumbs under the title like the support forums here?

    sandboxes
    Participant

    Hi

    I like this front page but want to stick with enfold and. Achieve this affect can you help?
    http://themewich.com/previews/?product=aware#extranews

    I want a grid like. This in the top,of the page with grid images having change of image via face and on click going to blog posts – also with texts in images overlay

    Also I want it have two columns on frnt with blog posts sorted by tags inside with a drop,down that loads only the selects tags in the page without reload. Can it be dine in enfold?
    http://themewich.com/previews/?product=aware#extranews

    Hey Ismael
    I just checked under the Enfold “Theme Update” and it’s verified I’m running the latest version

    #234090

    In reply to: update download link

    This reply has been marked as private.
Viewing 30 results - 226,381 through 226,410 (of 243,782 total)