Viewing 30 results - 227,341 through 227,370 (of 244,358 total)
  • Author
    Search Results
  • Thanks a lot Peter! That solved it :-)

    #232130

    Ismael,

    That didn’t answer my question which was how do I add Georgia font to the dropdown list of Heading fonts in Enfold. i.e. what is the exact code I need to use and where do I add it?

    Regards,

    Derek

    #232128
    honesty1993
    Participant

    Hello, I may have to change the folder name from themes/enfold to themes/anewname
    Would you please suggest how to do this safely? Thanks.

    #232120

    This has now been resolved and found to be an issue with the hosting set up of the database.

    I changed my YouTube video to Public instead of Private and it started working in Enfold. Still not sure why direct linking does not work.
    Wendy

    #232105

    Hi!

    1) Yes – see: http://stackoverflow.com/questions/11817950/what-is-data-serialization – the important thing for you is that you can’t manipulate text stored as serialized data without changing some other values. I.e. if you replace:

    
    s:5:"hello" 
    

    with

    
    s:5:"hello world"
    

    the data wouldn’t be valid because php just searches for 5 characters and the text string “hello world” now has 11 characters. If you replace all occurrences of “world” with “hello world” in your database you also must make sure that the character count will reflect the change and increase/decrease the value accordingly. In this case

    
    s:11:"hello world"
    

    would be correct. The migrate script will take care of this issue.

    2) Yes, Enfold generates a dynamic stylesheet. However it does not store the options in the stylesheet but in the database and the stylesheet is just the output. The stylesheet will have the name of the current selected theme – if you activate a child theme you can delete the dynamic stylesheet of the enfold parent theme (enfold.css).

    Cheers!
    Peter

    #232103

    In reply to: Enfold Showcase

    @kkax: The CSS transforms of the homepage are not a part of Enfold?

    Hi!

    Use this filter code and add it to the bottom of your child themes functions.php to change the date/time format:

    
    function change_avia_date_format($date, $function) {
      if(!empty($function) && $function != 'avia_get_comment_list') $date = get_option('date_format');
      return $date;
    }
    add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
    

    The code will remove the time and return the date only.

    Regards,
    Peter

    #232101

    Thanks Ismael,

    I think I like the idea of an external plugin better. Just to think of all the changes we would have to do again if we decide to update to the latest enfold version makes me horrified.

    But what code version do you think is more suitable – the one I’ve found (from about 3 years ago) or the one you posted?

    Thanks.

    #232098

    In reply to: Menu broken

    Hey!

    @primdog – for a quick fix please open up enfold/js/avia.js and replace:

    
    		
    		$.avia_utilities.avia_ajax_call();
            
    

    with

    
    		$.avia_utilities.avia_ajax_call();
            
            $('body').attr("id", "top");
    

    Best regards,
    Peter

    #232093

    In reply to: Enfold Showcase

    Hi!

    @ProconsoleRepaid: Good job! I need my PC repaired. Too bad you’re only servicing consoles.


    @kkax
    : The awesomeness is overflowing on that one. Nice website. :)

    Best regards,
    Ismael

    #232085
    modelity
    Participant

    Hey,

    I would like to report the same problem as reported

    This code will not work under https:
    ` if( get_option(‘avia_stylesheet_exists’.$safe_name) == ‘true’ )
    {
    $avia_upload_dir = wp_upload_dir();
    $avia_dyn_stylesheet_url = $avia_upload_dir[‘baseurl’] . ‘/dynamic_avia/’.$safe_name.’.css’;
    wp_register_style( ‘avia-dynamic’, $avia_dyn_stylesheet_url, array(), ‘1’, ‘screen’ );
    wp_enqueue_style( ‘avia-dynamic’);
    }

    We are using version 2.4.5, but I’ve checked – the same code appears in version 2.5.2 from February.

    Please advise.

    Thanks,
    Lior.

    #232077

    In reply to: Fullwidth Easy Slider

    Hey!

    Please download the latest version of Enfold, version 2.5.4. It includes a better youtube integration script. You can check the Enfold change log. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Regards,
    Ismael

    #232073

    In reply to: Background Texture

    Hey cdh002!

    You can add background images on Enfold > Styling > Background Image. You can apply different background images for Header, Main Content, Alternate Content etc.

    Regards,
    Ismael

    #232066

    Hi Ismael,

    That CSS code does not work.

    I would like the form fields in the order form at the right here:
    http://www.finalsmoke.net/order-form-1/

    to look like the original (before Enfold) here:
    http://www.quithere.com/fsmokewp/order-form/

    Because Enfold has overwritten the defaults for tables and input fields, the table holding the order form has a white background, instead of being transparent, the td cells are too spaced out, and the form fields are too large and without borders.

    Below is my original CSS for input fields, and select fields. Is there a way to use these styles in Enfold, along with an unstyled table?

    ——————————–
    input.fsfield {
    border: 1px solid rgb(0, 0, 0);
    color: #000;
    line-height: normal;
    padding: 2px;
    background: rgb(255,255,255,0.5);
    font-size: 13px;
    font-family: Verdana, Arial;
    margin: none;
    }

    select.fsselect {
    border: 1px solid rgba(0, 0, 0);
    color: #000;
    line-height: normal;
    padding: 2px;
    background: rgb(255,255,255);
    font-size: 13px;
    font-family: Verdana, Arial;
    margin: none;
    }
    —————————–

    Thanks,
    Scott

    #232065

    Hi,
    I told you before but I want to say it again.

    This support is incredible ! The quality and responsiveness is unique.

    Thanks a million times for your amazing help. Enfold is the best theme I have ever worked with (there are a lot) and its support is by very far the BEST I have ever seen!

    Hi!

    Please edit the page then switch to Advance Layout Builder. You can find the Color Section element under Layout Elements panel. Insert one color section then configure it. Insert a background image, refer to the screenshot above. Set the Background Attachment to fixed or parallax. Please try to experiment to get better results. You can watch these videos to learn more about the theme: http://vimeo.com/channels/aviathemes/

    Regards,
    Ismael

    #232054

    Hi!

    You can only add Google fonts for the heading dropdown on Enfold > Styling. Please change the heading font using Quick CSS or custom.css.

    Regards,
    Ismael

    #232042

    Hi yongjlee0120!

    Can you please give us a link to the website? Did you add any plugin prior to the issue? Please download the latest version of the Enfold theme. Update it via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    Hi Josue, Thanks for your quick reply and suggestion regarding the Color Section. I’m not familiar with how to create a Color Section element. I tried to figure out how to do it, but I’ve failed. Would you mind giving me the steps to get to the place where I can create the color section that you illustrated above?
    Thanks very much.

    #232034

    Hello Josue
    Yes i know CF7 but:
    – I wanted to keep it simple
    – I like Enfold form because of the auto reply parameters and the css styling
    I don’t think it is a big deal to add multiple Email recipients to Enfold forms, don’t you think?

    #232023
    yongjlee0120
    Participant

    Some reason, categories menu on portfolio has been disappeared. It’s my 2nd time the categories menu (sort menu ) is gone. I would appreciate a help on how to resolve the issue!

    Thanks,

    #232018
    markofwits
    Participant

    I’m trying to override Enfold’s CSS for tables and input fields, on this page: http://www.finalsmoke.net/order-form-1/

    using these styles in my custom style.css file…

    input.fsfield {
    border-width: 1px;
    border-color: black;
    width: 20px;
    color: #000;
    line-height: normal;
    background: rgb(255,255,255);
    font-size: 13px;
    font-family:”Times New Roman”,Georgia,Serif;
    margin: none;
    }

    .fstable table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    border-collapse: True;
    background: none;
    }

    However, my table (which has id=’fstable’) still has a white background (should be transparent), and my form fields (which use class=’fsfield’) are too wide and have the wrong font.

    The above page is using a template in a child theme. The template contains the table and form fields which are not responding to my custom css in styles.css.

    Please advise.

    Hi Jane!

    That’s a color section with a fixed background image, these are the settings:

    Regards,
    Josue

    #232004

    Hi!

    You’d need to use a plugin for that, this one works good with Enfold:
    https://wordpress.org/plugins/contact-form-7/

    Best regards,
    Josue

    jswebdev
    Participant

    I want to create a page like the one shown in the Enfold demo when you select Pages > Fullscreen Slider. Would you provide me with some details on how to do this? I especially like how the living room images appear in the background when you scroll down the page and the tablet below “What others say about us” (sort of like a parallax effect)
    Thanks in advance for your help with this.

    #231994

    In reply to: Hooks List/Map

    Hey Viterbi!

    To hook on a single post content, refer to this:
    http://wordpress.stackexchange.com/questions/56884/how-to-only-hook-on-single-php-after-content

    As far as i know, there isn’t a list to all theme hooks but i think that’s a valid request, feel free to request it here:
    https://kriesi.at/support/topic/enfold-feature-requests/

    Regards,
    Josue

    #231977

    In reply to: sidebar/widget issues

    Hi there,
    This seems to work fine for custom sidebar order – but what about Sidebar Pages – this is still being displayed above the Displayed Everywhere widget.
    As an aside, I’m using Enfold Child, so I’ve simply made the modification to sidebar.php in this theme folder & uploaded, I presume this will overwrite the sidebar.php in the parent theme folder?
    Thanks,
    Jas

    #231976

    Hi Yigit,

    Currently running WooCommerce v2.1.2 and Enfold v2.5.4.

    #231964

    Hey mattmorse!

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

    .html_stretched #wrap_all {
    background-color: white;
    }
    .page-id-2703 #main > div { border: none !important; }

    Regards,
    Yigit

Viewing 30 results - 227,341 through 227,370 (of 244,358 total)