Viewing 30 results - 218,881 through 218,910 (of 243,835 total)
  • Author
    Search Results
  • #279074
    assaftoval
    Participant

    Hi,

    I need to create a chrome inline installation but at the moment the button element let me choose only links.

    when trying to add a simple text with a
    <form><input type=”button” value=”InstallNow” onClick=”chrome.webstore.install();”></form>

    the system deletes the onclick event

    Any idea how I can achieve this?

    we are using Enfold 2.6
    Thanks
    Yoav

    • This topic was modified 11 years, 7 months ago by assaftoval.
    #279071

    Hello
    1- For the first issue (Javascript conflict with function trigger_default_open()), here is the plugin autho response:

    ——
    No, anchors do not require href attributes since HTML5, and it is not essential. The ShiftNav toggle code is perfectly valid.
    Reference: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a

    href – This was the single required attribute for anchors defining a hypertext source link, but is no longer required in HTML5.

    ShiftNav does not break your theme code – your theme code throws an error because it is making assumptions about the elements on the page. This wouldn’t be a problem if it were only dealing with its own elements, but it is binding events to elements that it hasn’t produced, meaning it isn’t controlling the attributes. The theme code should not be assuming that an href is present, when it is not required.

    I read through your post in the Kriesi forum. Then I looked at the theme code in /wp-content/themes/enfold/js/shortcodes.js

    I think this code:

    [js]
    $('a').on('click',function(){
    var hash = $(this).attr('href').replace(/^.*?#/,'');
    if(hash) trigger_default_open('#'+hash);
    });
    [/js]

    should just be written like this:

    [js]
    $('a[href]').on('click',function(){
    var hash = $(this).attr('href').replace(/^.*?#/,'');
    if(hash) trigger_default_open('#'+hash);
    });
    [/js]
    

    That way it only attaches to anchors with href elements, and in the callback you can be sure the href exists. The solution is simple and efficient, and there’s no need to bind the callback to any anchor without an href.
    ——
    So to make it work I replace the A tag of my ShiftNav Menu by a SPAN, this is a workaround, and maybe you could tell to Kriesi about that… ?

    2/ “To be honest i think it would be better to set a fallback image, background video playback in mobiles is buggy right now.
    Should be great to also tell to Kriesi about that issue, don’t you think ?

    #279067
    assaftoval
    Participant

    Hi,
    I have a pricing table with 3 columns.
    the third column header text is orange and I need to change it to 3692D0.

    I have modified the custom.css, but sine it appears before the web-pricing-tables.css, those settings get overridden.

    Next attempt want to add the following line to the quick.css
    .orange .table-price {color:#3692D0;}
    But again this does not help,

    In general I cannot find any of the lines I am adding to the quick.css in the page (or in the dynamic_avia/enfold.css)

    I am using wordPress 3.9
    Enfold 2.6

    And help will be highly appreciated

    Yoav

    #279057
    FriViden
    Participant

    I want to update my enfold theme. I have made a child theme.
    Is the way to update to select “enfold child” and then select “Theme update”.

    Or will this action delete my Work?

    As a newcomer to programming and wordpress i have not yet the full understanding og how to update?

    Kind regards

    #279013

    In reply to: Transition Demo

    Hey!

    Are you referring to the slider in the homepage?
    http://kriesi.at/themes/enfold/

    Best regards,
    Josue

    #279012

    In reply to: Transition Demo

    #278986

    You need to put the debug code after this line (16) in functions.php:

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

    I couldn’t do it because the file wasn’t writable from the Dashboard.

    Best regards,
    Josue

    #278985

    Topic: Login problems Enfold

    in forum Enfold
    studioriquois
    Participant

    After the latest update of enfold i’m experiencing login problems.

    Anyone the same problems or solution. I already changed my password.

    Arno Smit

    #278983
    tiredagent
    Participant

    I’ve not run into this one before.

    Enfold/General Styling/General – background color changes have no effect. Should appear to be #222222

    Enfold/General Styling/Header – the header background color should be red but it shows white. I’ve tried changing all kinds of things and saving. I tried different browsers and get the same result. It’s simply not working for me.

    FYI in the General Styling demo pane does work.

    #278957

    Hi!

    Refer to this article:
    http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/

    You need to have the Polyvore logo as an icon font, you can use Fontello to generate the font file.

    Cheers!
    Josue

    #278932
    This reply has been marked as private.
    #278930

    Hola Jose,

    Has probado deshabilitar los plugins? tienes la ultima version de Enfold (2.8.1) / WordPress (3.9.1)?

    Saludos,
    Josue

    Eva
    Participant

    Just settling into the Enfold theme and getting the hang of what’s possible. Very happy so far!

    I have two questions:

    Firstly, how can I remove the preview images from the single post pages and from the main blog page? I would like the featured images to only show up in the “related posts” links at the bottom of the single post page.

    And secondly, I’d like to increase my blog column to around 800px so as to allow larger images in my posts. Also, the large size of preview image gives me a lovely full width image above my post, is it possible to have this option inside the actual blog post?

    Many thanks in advance,
    Eva

    • This topic was modified 11 years, 7 months ago by Eva.
    #278924
    JoseSoto
    Participant

    First of all. I´m sorri for my enghish. I´m spanish and my english is not goog.
    I have de lastest version of wP and the last version of enfold.
    I have to design my web, and I have a problem wiht de visual editor text.
    When I mark visual option, nothing display (I canuse inly the option text”
    I have spend many hours, and I haven´t found the solución.
    Nothind appear when a mark “visual” editr text.
    I´m very worried abot that.
    Please, can yo help me?
    (I´dont know to program)

    Thanks

    This reply has been marked as private.
    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, 7 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

Viewing 30 results - 218,881 through 218,910 (of 243,835 total)