Viewing 30 results - 240,211 through 240,240 (of 242,206 total)
  • Author
    Search Results
  • #127269

    Glad you were able to figure it out. If you happen to see this, what plugin was it? Always good to know a major conflict like that.

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #126830

    In reply to: Enfold won't install

    Hi Zannah,

    It really shouldn’t an issue unless you are also running a couple of other plugins or the server has a low threshold to begin with. WooCommerce by itself recommends going up to 128mb because of its extra strain and very very soon WordPress will be upping its requirements to fall in line with themes and plugins requiring more.

    I’ll ask Kriesi to put a note on the sales page on recommend hosting requirements just to make sure others are aware.

    If you do want to try some of the routes on increasing memory on your server this is a good article with the various means http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/ .

    All refunds are processed through Themeforest as we don’t actually have any connections with Evnato or Themeforest.

    Regards,

    Devin

    #127268

    Hi,

    it was one of the plugins, that caused the issue. It is OK now.

    Thanks

    #126781

    Hey Nick,

    Thanks for continuing to help me out. Okay, so here’s where we’re at…

    I’ve deleted the OptinSkin plugin completely from the site. However, images still aren’t showing up on the posts that have images in the featured image box in WordPress.

    It should be noted that I’ve been also dealing with a separate issue: Since I switched from Thesis to Enfold, and had been using Thesis’s custom image box, I now don’t have images on all the posts except for about 10 recent posts where I manually added them to the featured image box. Sorry, I should have told you this earlier.

    Anyway, if you can continue to help out that’d be amazing. The support I’ve received thus far has been top-notch, and I’ll definitely recommend Enfold to the masses.

    Thanks Nick!

    Okay I’ll do that, thanks Devin!

    #25532
    McGawain
    Participant

    Hi,

    after I have activated Enfold theme in the admin, the admin screen became blank, everything disappeared, while on the site the enfold theme is visibile activated. WP 3.5.2.

    On another domain of mine, (on the same server) it works fine, there was no problem after activating the theme.

    The same WP version is on both site.

    Thanks

    Agnes

    #25531
    sidewayset
    Participant

    Hello, First Of All Want To Say It Is Great Theme.

    I just need help with some minor CSS modification.

    My Website Is: http://www.paperbarktree.com.au/

    I need it to be Boxed Layout And Responsive, Which I Did, However I need to set custom Width and Height And Margins From Top,Bottom, Right, Left Corners. Reason Is That I need background picture to be fully visible.

    I am trying to achive website like: http://sunny-kids-wordpress-theme.dtbaker.net/

    And Will Use Same Background As Theirs, And Need To See Same Way on Enfold, Size And Ect.

    I also need background picture behind Boxed Layout Be Responsive And Get Resized With Website If Possible!

    As Now, Website Gets Bigger On Small Devices And Covers Background, Thanks

    Any Help Will Be Really Appreciated, Thanks

    #114694

    It would be nice to have an option for the accordion to automatically sort all items in alphabetic order (e.g. for a glossary).

    #25530
    dansacastell
    Participant

    Hello,

    Great job with the theme Enfold it’s a very good theme.

    I want to make you a question that I have not been able to find in the forum:

    I would like not to show or even eliminate the entire “Your are here” element that appears under the menu on every page (except the home).

    Is it possible?

    #126302

    In reply to: button in menu

    Hi,

    Ohh, I thought that was the design, lol.

    Ok in that case:

    1) replace the button code you are using with this (i trimmed some of the fat off it, and lot more can go i think, but ok for now):

    .menu #menu-item-2193 a {
    -webkit-backface-visibility:hidden;
    -webkit-perspective:1000px;
    background:#a1ce5e url(https://d7uu0v95k7d3j.cloudfront.net/wp-content/themes/enfold/images/layout/bg-button.png?6c6f23) repeat-x;
    border-bottom:1px solid #a1ce5e;
    border-bottom-left-radius:3px;
    border-bottom-right-radius:3px;
    border-image-outset:0;
    border-image-repeat:stretch;
    border-image-slice:100%;
    border-image-source:none;
    border-image-width:1;
    border-left:1px solid #a1ce5e;
    border-right:1px solid #a1ce5e;
    border-top:1px solid #a1ce5e;
    border-top-left-radius:3px;
    border-top-right-radius:3px;
    color:rgba(0,0,0,0.5);
    cursor:auto;
    font:normal normal 600 14px 12px 'Open Sans',HelveticaNeue,'Helvetica Neue',Helvetica,Arial,sans-serif;
    height:30px !important;
    line-height: 19px !important;
    margin-left:0;
    margin-right:0;
    min-width:90px;
    outline:rgba(0,0,0,0.5) none 0;
    padding:5px 16px 10px;
    text-align:center;
    text-decoration:none;
    text-shadow:rgba(255,255,255,0.09) 0 1px 0;
    top:-10px;
    vertical-align:text-top;
    zoom: 1
    }

    2) open up /js/avia.js and find block of code between lines 809-846 and replace it with this one below, they should look nearly identical but for 3 lines:

    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    logo = header.find('.logo img'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    element_button = $('.menu #menu-item-2193 a'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0, newTopMargin =0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    newTopMargin = 52;
    }
    else
    {
    newH = el_height/2;
    newTopMargin = 23;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    element_button.css({'margin-top': newTopMargin + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Ok now if you ever change the menu, when you go to a live server, you need to remember to edit line 815 which has the menu-id hardcoded in there (#menu-item-2193) and to change it, as well as change it in the css, since any new website will obviously have new ID numbers.


    Check you quick css, you have a block of css commented out, dont know if accidently or on purpose starting with this block below the button code –> /*blockquote {

    Thanks,

    Nick

    #127197

    Hey!

    You must remove the // – otherwise it’s just a php comment and the server will ignore it :)

    Use:

    define('WP_MEMORY_LIMIT', '128M');

    Regards,

    Peter

    #25524
    progenki
    Participant

    Hello,

    Ever since I installed enfold the search bar on the site’s header does not appear.

    progenki.com

    Weirdly so, it appears on my offline site. I replaced the files with the offline site and I still am not getting a search bar.

    What am I missing?

    #126963

    Hi,

    The Enfold theme works on WordPress 3.5 or higher. Please download the theme again on your themeforest account. It must be a corrupted file like Devin said.

    Regards,

    Ismael

    apovic53
    Participant

    Hello..

    I am using the “secondary menu” as a language menu. so when pressed to an other language, both page and menu should change language.

    I can switch the page language by creating a new page, but main menu remains the same.

    How can i use the other menu that i created in other language?

    Thanks

    by the way, the link is : http://www.exim.com.tr

    #114693

    2/5, 3/5 and 4/5 layout elements would be very very useful.

    #126180

    Thanks Kriesi.. I’ll look for it.

    And thank you for the great work. I’ve got a lot going on, but finessing my UI/UX so decisively on your framework is therapy.

    I’m using Enfold for my new site, and Replete for a large corporate site with a LOT going on. It’ll be the largest responsive site I’ve ever seen. And if they’ll let me, it’ll be stunning as well.

    Peace.

    Hi John,

    Your best bet is to contact Thesis and see if they have any plugins or script for migrating the custom field to the featured image. This is the big reason most theme authors use the standard featured image for functionality on posts and pages since its theme independent.

    Regards,

    Devin

    #126829

    In reply to: Enfold won't install

    At least, Enfold dev team could ‘ve alerted us in writing before purchase that this theme requires more ‘blah blah’ then we it would saved a hell lot of time by choosing another theme from you guys, init?

    Do they do refund ?

    #126828

    In reply to: Enfold won't install

    its an absolute pain, struggling the same as ‘slreagan’. loss of over 20 hours in digging these installation issues … finally emailed my host provider to increase the PHP limit. Lemme wait and see what they say.

    #25515

    Topic: Blog comments

    in forum Enfold
    jingle0
    Participant

    how do I turn off comments in the blog section of Enfold?

    thx

    Jingle

    #126827

    In reply to: Enfold won't install

    Thanks yorkie! :-) I just contacted Dreamhost to see what they say.

    jfrainee
    Participant

    I used to have Thesis 1.0 as my theme, and used their custom image box to store my images. Now, when I moved to Enfold, I noticed none of my images showed up on posts and I had to individually move each image to the featured image box.

    Because I have hundreds of posts, this would be a very time-consuming process.

    Do you have any suggestions on how I can do this in short order?

    Thank you so much for your help! It’s much appreciated!

    John Frainee

    #25506
    muholland
    Participant

    Great theme!

    I’m trying to change the h1, h2, h3, h4 tags to be a different color (red) however when I change the css anywhere it doesn’t update. I tried changing the css in the custom field within the enfold panel, I tried adding to the custom.css, changing the base.css and even shortcode.css and no matter what, it the header tags still stay grey. I know this should be a simple fix but it has taken me awhile to figure this out. Specifically on the homepage I have a Special Heading Shortcode H4 tag that I want to change red but cannot figure it out.

    #114692

    Requested in another topic:

    A search field that appears in the header on mobile devices

    Regards,

    Devin

    #127152

    Hi informium,

    You could add in a field for it that will only appear on mobile devices. It would need to be added into the header.php in its own new div and then styled to fit into the mobile layout.

    I’ll add the idea as a feature request in the Enfold feature request thread as well.

    Regards,

    Devin

    Hi FLSouthPaw,

    That error is a massive pain. It has been complained about a couple of times because it gets produced from lots of different criteria. So finding the root cause is kind of a shot in the dark.

    Some typical things I try are to make sure your uploads folders have the correct chmod permissions, your caching plugins have had their cache cleared before being disabled and that your server hasn’t recently changed anything.

    Regards,

    Devin

    #126826

    In reply to: Enfold won't install

    Hi All,

    No, you don’t *have* to install via FTP but it is the best way to ensure everything goes smoothly. In the video I use only free programs and the whole thing actually happens in less than 5 minutes.

    The theme is a bit bigger than a lot of of basic premium themes and if you are on a budget host they may have a low php execution fail time so unzipping and installing will take longer and when it does it fails.

    That is just a guess but it could explain why its failing to install. At that point its best and easiest to install via FTP. If you have no already, try just taking a look at the FTP video. I use all free to use tools in it and really walk through each step showing exactly how to do it.

    If you are getting the no style.css message it means you aren’t actually uploading the actual theme file. If you downloaded the entire folder from your downloads on Themeforest you’ll a Documentation folder, license, version.txt file and then a enfold.zip folder. You may or may not see the extension but it will be a zipped file.

    Its that zipped file that you want to actually upload or unzip and then upload via FTP. See the ‘Common WordPress Installation Issues’ here: http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990/support and click on the link that Envato references if you want more information on this step: http://support.envato.com/index.php?/Knowledgebase/Article/View/269

    Regards,

    Devin

    #126825

    In reply to: Enfold won't install

    I’m getting the missing style.css message. Any thoughts on that one?

    #127196

    Thanks Peter …

    I tried by inserting //define(‘WP_MEMORY_LIMIT’, ‘128M’);// inside wp-config.php but the problem stays the same.

    I just emailed my HOST to increase the PHP limit from the other end (in case they have restrictions).

    I’ll keep you posted once I get a reply.

    Cheers.

    #126824

    In reply to: Enfold won't install

    Sounds like a php issue, try upping the upload file size in php.ini – I think by default its only 2mb – some hosts may increase it.

    Other than that I’m out of ideas, might have to wait for one of the support guys here.

Viewing 30 results - 240,211 through 240,240 (of 242,206 total)