Viewing 30 results - 236,281 through 236,310 (of 244,363 total)
  • Author
    Search Results
  • #178866

    Hey Michae1!

    It loads properly on my end. Maybe a slow internet connection? Please try it again. :)

    http://kriesi.at/themes/enfold/shortcodes/masonry-gallery/

    Best regards,
    Ismael

    #178854
    #178853

    Hey!

    Can you please disable SEO Yeost then update the page?

    Cheers!
    Ismael

    #178840
    jazbird
    Participant

    hi,

    not sure if this is possible… but i have a form i’m building and i would like to create subheadings & add text in between form elements. Is there a way to do that with the enfold default editor or do i need a plugin?

    thanks

    jaz

    #178829

    I have IE8 installed native on a computer here and once again you are experiencing issues the vast majority of the 10k users of the theme are not.

    With a clean install of the theme the issues you are getting are just not happening which is why I wanted to originally see how your set up was from the back end and then try and figure out where the difference is and what might be causing the issues.

    #178810
    jazbird
    Participant

    hi,

    I have never done this before and need to go live tomorrow.
    I have seen a few explanations on the web but wondering if u guys have any documentation on the easiest (fool proof) way to do this – and anything specific to the Enfold theme.

    i want to move:
    http://bikinibootcamp.com/dev

    to:
    http://bikinibootcamp.com

    the current site is live so want minimum downtime if possible…

    thanks!

    any help appreciated…

    jaz

    #178802

    I’m really liking how well-thought-out the masonry elements were (I’m not surprised Kriesi nailed it yet again though), but they have prompted me to suggest going back and improving some of the older elements at some point soon.

    For example, the masonry options include things for activating an overlay or not, displaying the title on hover, gap space between items, etc., and the portfolio element has none of that. Similarly, the content and logo sliders have transition options, options for the type of controls, and a place for a heading, and the post slider does not. Both of those neglected older elements are probably more major and are probably used more than the new ones, but they have hardly been improved since the start. I’d bet anything that you guys are already aware of this, but I personally think it would be best to make everything more coherent sooner rather than later.

    It also seems like Kriesi’s aesthetic choices have become noticeably more refined in the past six months or so (the classy look of the masonry layout is on a level above the normal portfolio grid, and they don’t really look like they belong to the same theme), so it might be a good idea to go back and review the design of some older elements with fresh eyes.

    Regarding the actual masonry elements, I wonder if it’s really necessary to force them to be full width. I modified things a little, shrunk it down to half width, and it seemed to work okay, except for the fact that the columns got too narrow. But, they could be responsive at the element level with this cool library. It’s not like masonry layouts work without JavaScript anyway.

    Also, I think using tags to make a masonry element wider or taller is awkward. Meta box options would be better, because they help make the user aware of the purpose, rather than have them discover the option and how to do it in a modal window and then go back and use a standard WordPress feature for something other than its intended purpose. More importantly, though, because it affects the front end and what a viewer sees. The Enfold demo has “landscape” and “portrait” tags listed in blog posts when they would probably have nothing to do with the content if it was a real site, and it could affect things like tag clouds too.

    All in all, I think it would have been better to make masonry layouts an option for the blog and portfolio elements instead of having to choose options from one or the other, but I can think of a few reasons why this would be tricky, so it’s fine. It does look like one unified blog/portfolio/masonry flexible element could work pretty well on the next theme.

    Sorry I wrote so much! I’m really verbose and I couldn’t figure out how to cut it down.

    #178779

    Hey boost2business!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired

    span.vert_icon, span.hor_icon { border-color: red; }

    Cheers!
    Yigit

    #178777

    Hey!
    Here you go: https://gist.github.com/Kriesi/7092409
    Regards,
    Kriesi

    #178775

    Hey!

    In your WordPress theme directory you should go to wp-content\themes\enfold\config-woocommerce folder and config.php is inside that folder

    Regards,
    Yigit

    #178774
    allegrabillings
    Participant

    reference for where this is coming from.
    http://www.blastam.com/blog/index.php/2013/03/how-to-track-downloads-in-google-analytics-v2/
    Hey guys this may be above tech support, but maybe not for you gurus. What I want to do is track outbound links, and download actions and such with my google analytics account. I found this script above that automates the process but I am not quite sure how to add a js script to the enfold theme. What I did was simply add the new script below my google analytics script in the child them backend. when I inspect a page I see the script referenced in the head after my normal google analytics script and if I am reading right you guys are referencing a newer jquery library than this needs. you have 1.10.2 or something. Can you look at my site and see if you know why this might not be working. my site is http://www.jackandaddi.com

    the documentation is straight forward. just be sure to include the jQuery library reference in your section before the call to the tracking code. example <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js&#8221; type=”text/javascript”></script>

    For those who have a lot of links and would like to dynamically detect clicks on links to file downloads, we have provided updated code below. As before, this code requires the jQuery JavaScript library to be set before the code. It can be placed in its own .js file and should be placed in the <head> of your pages.

    <script type="text/javascript">
    if (typeof jQuery != 'undefined') {
    jQuery(document).ready(function($) {
    var filetypes = /\.(zip|exe|dmg|pdf|doc.*|xls.*|ppt.*|mp3|txt|rar|wma|mov|avi|wmv|flv|wav)$/i;
    var baseHref = '';
    if (jQuery('base').attr('href') != undefined) baseHref = jQuery('base').attr('href');
    
    jQuery('a').on('click', function(event) {
    var el = jQuery(this);
    var track = true;
    var href = (typeof(el.attr('href')) != 'undefined' ) ? el.attr('href') :"";
    var isThisDomain = href.match(document.domain.split('.').reverse()[1] + '.' + document.domain.split('.').reverse()[0]);
    if (!href.match(/^javascript:/i)) {
    var elEv = []; elEv.value=0, elEv.non_i=false;
    if (href.match(/^mailto\:/i)) {
    elEv.category = "email";
    elEv.action = "click";
    elEv.label = href.replace(/^mailto\:/i, '');
    elEv.loc = href;
    }
    else if (href.match(filetypes)) {
    var extension = (/[.]/.exec(href)) ? /[^.]+$/.exec(href) : undefined;
    elEv.category = "download";
    elEv.action = "click-" + extension[0];
    elEv.label = href.replace(/ /g,"-");
    elEv.loc = baseHref + href;
    }
    else if (href.match(/^https?\:/i) && !isThisDomain) {
    elEv.category = "external";
    elEv.action = "click";
    elEv.label = href.replace(/^https?\:\/\//i, '');
    elEv.non_i = true;
    elEv.loc = href;
    }
    else if (href.match(/^tel\:/i)) {
    elEv.category = "telephone";
    elEv.action = "click";
    elEv.label = href.replace(/^tel\:/i, '');
    elEv.loc = href;
    }
    else track = false;
    
    if (track) {
    _gaq.push(['_trackEvent', elEv.category.toLowerCase(), elEv.action.toLowerCase(), elEv.label.toLowerCase(), elEv.value, elEv.non_i]);
    if ( el.attr('target') == undefined || el.attr('target').toLowerCase() != '_blank') {
    setTimeout(function() { location.href = elEv.loc; }, 400);
    return false;
    }
    }
    }
    });
    });
    }
    </script>
    #178772

    Hi!


    @ahnell
    Thanks a lot!

    Best regards,
    Yigit

    Hi petzeus!

    I previously contacted Kriesi about it and “it should be solved when users “re-save” the styling options of the backend, since it will regenerate the stylesheet with new rules for the html5 elements” was his answer. So please re-saving and let us know if it does not work

    Best regards,
    Yigit

    #178768

    New translation for Swedish. Not all is covered, but all front end is covered. And much better than the current Swedish translation that has a lot of Germen in it.

    http://blandat.ahnell.se/Enfold_sv_SE.zip

    #178767
    BrandonBarringer
    Participant

    Hello.
    I am having a problem with a child theme I have created with enfold. None of my changes are showing up when using the “styling” tab in the theme options. Also when changing the blog template from something like “multi-author” to “grid layout” no changes are shown either.
    Can you help me?

    #178763

    Hey pcastell!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired

    .av_dropcap1 { font-size: 50px; }

    Best regards,
    Yigit

    I looked at all of your responses to these errors and your answers seems to fall back on “It’s a host problem”. I have never had this problem with another theme off of theme forest. So please look into this instead of defaulting this back to a host problem, because it shouldn’t be a host problem. If your theme worked before, it should work again. I enabled Avada on this same install..everything worked like a charm.

    For a quick fix. I commented out this file enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    /** function extra_assets()
    {
    if(!is_admin() && !session_id()) session_start();
    }
    */

    • This reply was modified 12 years, 4 months ago by samharry.

    /portfolio.php on line 27

    The error is referencing this line

    if(!is_admin() && !session_id()) session_start();

    There might be a problem with this logic…

    Read here..
    http://stackoverflow.com/questions/6865957/php-logic-for-session-id-and-session-start

    #178737

    Hi sdaly18!

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

    .side-container-comment-inner { display: none; }

    Best regards,
    Yigit

    samharry
    Participant

    Warning: session_start() [function.session-start]: open(/tmp/sess_0aa8aed9c9dcabd4cca3e3b9ef69a99f, O_RDWR) failed: Permission denied (13) in /home/vrsveric/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    I only get this message on your theme. I have installed plenty of sites with no problem. I even kept this configuration and changed the theme to avada…no errors. It has nothing to do with the install or tmp folders permission. It has everything to do with this theme. Just type the title of this topic into Google and see how many sites come up with this error. It happens and then clears itself, and then it happens again. It’s off an on. If I clear the cache it works and then comes right back. You need to look in to this.I can’t move forward on the projects with this problem.

    Your old version on the seam server work fine.

    Version 1.7 on wp 3.5.2 works fine
    Version 2.0.1 on wp 3.6.1 fails
    Version 2.4 on wp 3.6.1 fails

    I can email you the production site if you want.

    • This topic was modified 12 years, 4 months ago by samharry.
    #178734
    hfug
    Participant

    Hi,

    I just got an e-mail today saying the theme has been updated so I unzipped and uploaded the new Enfold theme using FTP.
    After doing this on the new post I don’t get the advanced layout. On the pages that Enfold created you get the advanced layout open.

    How do I get the advanced layout option back?
    Thank,
    Johnny

    #178727

    Hey!

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

    .responsive #top .avia-post-nav {
    display: block;
    }

    Best regards,
    Yigit

    #178725

    Hi ashojaei!

    You are currently using Enfold version 1.7. Recently version 2.4 was released and it has many bug fixes and improvements. Please update Enfold as well as your WordPress. To update Enfold, you should login on ThemeForest with the account you have purchased Enfold with and simply download Enfold in Downloads section
    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Yigit

    #178697

    Topic: Masonry Options?

    in forum Enfold
    creative.collab
    Participant

    I just updated to 2.4 (on a test environment) and I can’t for the life of me find any of the new masonry options; and I don’t know if I’m just blind as a bat right now or what. If I check the different portfolio pages (from previous Enfold data import) there is no template for Masonry and if I look through the Enfold theme options there doesn’t appear to be a section that allows me to set this option either (checked under General Settings -> Blog Style etc.).

    I tried re-importing the data after my update to Enfold 2.4 but it doesn’t import the new masonry pages from the demo so how do we set up our portfolios/blog with the Masonry effect?

    #178690

    Hi Mannbej!

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

    .big-preview {
    display: block;
    padding: 0 50px 10px 0px;
    }

    Regards,
    Yigit

    #178685

    Hey!

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

    .tabcontainer { margin-top: 0; }

    Regards,
    Yigit

    #178669

    Hi!

    Responsive layout is turned off on your website right now. You can turn it on in Enfold theme options > General Settings > Responsive Layout

    Cheers!
    Yigit

    #178668

    Hi DrPrem!

    Please update Enfold to version 2.4 which was released yesterday. In new version there ability to choose blog style and blog single page style differently in theme options page
    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Yigit

    #178665
    Sandy
    Participant

    I’ve added the YouTube url to the Video section in the Enfold website. Naturally, YouTube logo displays and unwanted ‘related’ videos are recommended by YouTube when the video play ends. Adding the standard “modestbranding” “equals” 1 and “rel” “equals” 0 parameters result in the video not displaying at all, instead the code displays on the website. Please explain how to add these basic controls to the video.

    #178664
    Sandy
    Participant

    I’ve added the YouTube url to the Video section in the Enfold website. Naturally, YouTube logo displays and unwanted ‘related’ videos are recommended by YouTube when the video play ends. Adding the standard modestbranding “equals” 1 and rel “equals” 0 parameters result in the video not displaying at all, instead the code displays on the website. Please explain how to add these basic controls to the video.

Viewing 30 results - 236,281 through 236,310 (of 244,363 total)