Viewing 30 results - 219,481 through 219,510 (of 244,419 total)
  • Author
    Search Results
  • This reply has been marked as private.
    #278875

    In reply to: Enfold does not work

    Hey pops369!

    I’m not sure what you mean with “the colors never change to what Ive selected”. Do you mean the colors don’t change at all or the color change but not to the selected values? One possible reason could be that Enfold can’t regenerate the dynamic stylesheet on your server. You can try to deactivate the dynamic stylesheet generation by adding this code:

    
    add_action('after_setup_theme','avia_remove_dynamic_stylesheet');
    function avia_remove_dynamic_stylesheet(){
    global $avia;
    $avia_safe_name = avia_backend_safe_string($avia->base_data['prefix']);
    update_option( 'avia_stylesheet_dir_writable'.$avia_safe_name, 'false' );
    update_option( 'avia_stylesheet_exists'.$avia_safe_name, 'false' );
    }
    

    at the very bottom of enfold/functions.php or the child theme functions.php file.

    If you want to ask for a refund you can contact Envato: http://support.envato.com/ but you need to work with the theme author first to resolve the issue. Otherwise they won’t issue a refund.

    Regards,
    Peter

    #278872

    Topic: Enfold does not work

    in forum Enfold
    pops369
    Participant

    I just spent 3 hours trying to create a main page in the colors of my choice. Cant do it, the colors never change to what Ive selected.

    Who do I talk to for a refund?

    #278871
    nurdwurks
    Participant

    Hi Guys,

    Thanks for all the help and advice so far.

    Thought it would be better to lump a load of questions into 1 help thread rather than post them individually.

    1. Is it possible to hide the page title on the left when I select to show the bread crumbs?

    2. I have set up 4 different portfolio’s at the moment. When you are on the portfolio page there are tabs to the left and right of the page that take you to the next item. At the moment they work back to front, so the left tab takes you to the next item, and the right tab takes you the the previous item. Is there any way of changing this?

    Also with these portfolio tabs is there a way of setting them up so that they only cycle through the specific portfolio category that’s been selected. So if you have a portfolio that’s all videos then these tabs will only cycle through the video portfolio pages etc? At the moment I have 4 different portfolio galleries and the tabs allow the user to jump to a different portfolio which they may not want to see.

    3. How can I amend the search results page? I have looked through everything and I can’t seem to see how its possible. At the moment its displaying a standard enfold template and I would like to customise this as its displaying elements that I don’t want to feature on the search page.

    4. On special headings is there any way of preventing the “&” character from displaying in a different colour / font and italic?

    5. Portfolio pages come up as a 404 unless I change the permalinks structure – which means that the portfolio pages have SEO friendly urls but all other pages are changed to page id’s – is there a work around to ensure that all pages can feature SEO friendly URLS?

    6. Is there a way of changing the colour of the list icons to something other than the default grey?

    7. Is there a way of preventing the gallery from automatically scaling the images to fill the columns? I have a gallery of 2 images which I would like to have displayed centrally – however it stretches the images out to fill the the empty 2 columns. There is a selection to choose the image size but that appears to be overwritten by the theme to expand the images.

    8. A short while ago when I looked at the Enfold theme prior to purchase, the coloured selector that sits under the nav menu had a pointer on it which looks like its been removed. Is there a simple way of adding this? The basic line can sometimes look a little lost with the images that are going to be used in the main slider so this additional pointer should help it stand out.

    9. On the standalone icons – is there a way of changing the size of the ring that surrounds the Icon? At the moment you can tailor the icon size but the surrounding ring remains the same size. They are a little oversized and I would like to reduce them down a bit.

    10. Is it possible to set up a roll over colour for the list and standalone icons?

    11. Is it possible to change the font size and weight for the menu text?

    12. Where can I find the setting that turns the accordion slider on/off for mobile / tablet?

    Thanks

    James

    • This topic was modified 11 years, 9 months ago by nurdwurks.

    Hi wgpubs!

    Yes, a user reported his host doesn’t allow to send emails from a different tld in the past and the only possible fix is to change the sender email. You can use this code to change the sender address – insert it at the bottom of child theme functions.php or enfold/functions.php and replace (Email address hidden if logged out) with your yahoo email address.

    
    add_filter('avf_form_from', 'avia_change_from', 10, 3);
    function avia_change_from($from,$new_post,$params){
    $from = ' (Email address hidden if logged out) ';
    return $from;
    }
    

    Best regards,
    Peter

    #278868

    In reply to: Open SQL DB Queries

    Peter
    I appreciate your help thus far. I have purchased 4 Enfold themes and plan to use them on ALL our sites (more to come). I hope that there is a way to get this fixed. It is the best theme we’ve come across and really has made our sites look awesome. Any help you provide is very much appreciated.
    j

    #278856

    Hi!

    Tbh I think this is a plugin bug. The author uses an anchor element without href attribute (which is essential for the anchor) and the missing href value breaks our code. I recommend to contact the author and to ask him to use another element like a span, div or p tag or to add href=”#” to the anchor element. If you want to modify the theme files instead open up wp-content/themes/enfold/js/shortcodes.js and replace:

    
                		var hash = $(this).attr('href').replace(/^.*?#/,'');
                		if(hash) trigger_default_open('#'+hash););
    

    with

    
                var hash = $(this).attr('href');
                if(typeof hash != "undefined" && hash)
                {
                    hash = hash.replace(/^.*?#/,'');
                    trigger_default_open('#'+hash);
                }
    

    Regards,
    Peter

    Hey!

    You can customize the markup with the existing hooks – i.e. I published some code here: http://kriesi.at/documentation/enfold/customize-schema-org-markup/

    Regards,
    Peter

    #278847

    Topic: Transition Demo

    in forum Enfold
    nriver5541
    Participant

    In your transition demo for enfold I noticed below the header section theirs additional images below when you scroll up and down the images also scroll up and down how do I insert the image behind icon text etc. like in the demo. Not the transition in the header the images below
    Thanks in advance

    #278841

    Hey opareklov!

    Füge diesen Code in die Child Theme functions.php ein:

    
    add_filter( 'avf_google_heading_font', 'avia_add_google_font');
    add_filter( 'avf_google_content_font', 'avia_add_google_font');
    function avia_add_google_font($fonts)
    {
    $fonts['Exo 2'] = 'Exo 2:500';
    return $fonts;
    }
    

    und gehe anschließend zu Enfold > Theme Options > Styling um den Font auszuwählen. Dann speichere die Optionen und Enfold sollte den Exo Font laden.

    Best regards,
    Peter

    #278832

    In reply to: Icon box css

    #278829

    Hey David!

    Please update the theme to the latest version (2.8.1).

    Best regards,
    Josue

    #278826
    jordannick
    Participant

    Just in the midst of building a new website with Enfold – an amazing theme – and have a slideshow that includes a video. It looks perfect in Safari but when I tested it in Firefox there’s a big black rectangle pushing the video down the page.

    Hi,

    Are you using the latest version of Enfold? can you post the link to your website please?

    Regards,
    Josue

    #278796

    In reply to: Logo – modify size

    Hey JulieDesigns2!

    Thank you for using the theme.

    Upload the logo image then insert the full size. Go to Enfold > Header Layout > Header layout panel. Choose custom px value on the Header Size option. Adjust the height to 312px to accommodate the full size of the logo.

    Best regards,
    Ismael

    wgpubs
    Participant

    Hi there,

    I’m having problems with the Google maps widget within the Enfold theme.

    I’ve added some text in the “Info Bubble Content” section, but it does not correctly display when you click on the map marker. The bottom part of the bubble (the ‘V’) shows up in the top-left part of the map instead of above the marker, and the entire bubble is not displayed.

    Thanks – wg

    #278790

    Hi clientflo!

    Thank you for visiting the support forum!

    Please go to Enfold > Advanced Styling then edit the Main Menu Links element.

    Regards,
    Ismael

    #278785

    Hi MadrimNero!

    Thank you for the info.

    Please download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Also, 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’lll be able to see the actual shortcode below the builder.

    Regards,
    Ismael

    Banfe
    Participant

    I just activated Enfold theme for my website. Why is a link for every page on my current website showing up on my landing page (home page)?

    #278779

    This is my first time using the forum and I apologize as I do not know where to post this question. I uploaded the Enfold theme using an ftp and following all of the steps in the video. However, the “Import Dummy Data” button is not there. Any suggestions on what I need to do?

    I did follow all of the steps in the video.

    Thank you,

    Joe

    #278778
    zjohnson79
    Participant

    Hi Everyone,

    I am having an issue with the enfold theme. When i try to add an additional link or item to my menu, it “breaks” and doesnt display the correct submenu structure. I am using bluehost as my hosting service.

    I’m not sure if this is an issue with enfold or with the mega menu plugin(which came with enfold). I have not downloaded the plugin separately.

    Do you have any input on how best to fix this issue? I have attached a link to our website below:
    http://www.knoxricksen.com

    #278774
    blaisen
    Participant

    Enfold theme: I would like the main nav text to be a different color than the sub-menu text. The current sub-menu coloration is fine as is.

    When I added – #avia-menu .avia-menu-text {color: #006BA4;} to the CSS, it obviously colors both since .avia-menu-text is the class for both. I’ve not found a compound path that works to separate the two. Can you help?

    #278772
    opareklov
    Participant

    Hallo ich habe das Enfold Theme upgedatet und bekomme
    kein neuen Google Font installiert.
    Den Link habe ich im Header eingesetzt und CSS im Custom CSS.
    Funktioniert aber nicht. Was ist da falsch?

    Danke für die Hilfe.

    Gruß Volker

    #278771
    freshwebsitesla
    Participant

    Hi Guys,

    Need some help with adding some text content to the enfold header area.

    Using Transparent Header with Centered Logo and Menu Below.
    Social Icons in the Header Right Area.

    I would like to move the social Icons to the area on the left and add a tagline or phone number to the same area on the right.

    Is this possible and east to accomplish?

    Thanks gain for your help.

    Mike
    Screen Shot

    #278751

    In reply to: Open SQL DB Queries

    This reply has been marked as private.
    #278750

    In reply to: Open SQL DB Queries

    This reply has been marked as private.
    #278723

    Topic: Open SQL DB Queries

    in forum Enfold
    welswebmaster
    Participant

    Our host provider reported (see link to screen capture provided by WPengine) open SQL database queries caused by the Enfold theme. This is caused slowness on our site. Please provide a solution and/or configuration setting tips that would help with performance. I have the latest version of Enfold. Let me know what other information would be helpful to you.
    Thank you!

    #278721
    MadrimNero
    Participant

    Hi Support,

    I have now created two Text Block elements on pages and added content to them, saved them and then reopened them to have all the content missing in the Text Block editor. It simply says “Click here to add your own text.” The content is still visible in the Avia Layout Builder but not in the Text Block editor. This means it can’t be modified. I am currently using Enfold 2.7.1 on WordPress 3.9.1.

    Is there a fix for this or should I assume anything put into a Text Block can go missing at any point?

    Screen shots show content in Avia Layout Builder and it missing in the Text Block.

    Content in Avia Layout Builder
    Content missing from Text Block

    Thanks.

    #278719

    Topic: Promo Box in IE 8

    in forum Enfold
    mgould
    Participant

    I am using Enfold for the following site: http://www.atlassteelruledie.com/ In IE 8 two of the promo boxes on the home page are stretched out of proportion – specifically the photos in the boxes. I’ve tried recreating them, but with the same result. How can I get these to stop being stretched?

    Thank you!

    nerkasa
    Participant

    Hei guys,

    Just one question – does Enfold offer multiple layers in the same div without having to get dirty with advanced css coding ? I’d like to have a black semi-transparent .png image covering my whole color section. Then, in this color section div, on the top of the semi-transparent image layer I want to place other content elements.

    Cheers from a happy owner of four Enfold themes,
    nerkasa

Viewing 30 results - 219,481 through 219,510 (of 244,419 total)