Viewing 30 results - 238,711 through 238,740 (of 243,765 total)
  • Author
    Search Results
  • #140877

    Hey,

    Please try to install WordPress again, make sure it is 3.6. Download the latest version of the theme, Enfold 2.1. Increase wordpress php memory limit. Edit wp-config.php, add this code:

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

    Regards,

    Ismael

    #140351

    Thanks, Devin. It corrected the problem on that page, but I’m still having the same issue here:

    http://reallife247.org/message-archives/

    I am using TubePress plugin there, but I don’t see it throwing any errors. Could you take a look?

    Really appreciate the help!

    learningherbs
    Participant

    Hey there,

    On my site, I have Enfold 2.1 installed on a WP 3.6 installation. I’m using a customized child theme of Enfold.

    I moved the page.php file from the /enfold/ theme folder into my child theme folder and renamed it, adding the commented PHP code at the beginning to turn it into a Template that can be used for individual pages via the WP editor Page Attributes dropdown.

    The problem is that every time I use this new Page Template, the page is broken.

    Here is what the page should look like: http://herbmentor.com/EnfoldEditorBug2-Intended.jpg

    Here is what it looks like when broken: http://herbmentor.com/EnfoldEditorBug2-Bug.jpg

    Somehow, the page background div has covered up the main content area – as it appears somewhere along the line, one or more divs were closed prematurely. The HTML code reveals that the broken pages are all properly generating the content, but it’s covered up by that missplaced background image.

    I started to run some tests, thinking that I had messed something up in my page Template’s code. Turn’s out, whenever I remove the included page loop template, the problem disappeared. Though, so did all the content, obviously.

    I tested many other ways, including trying to recreate the entire page from scratch in the Advanced Layout Builder, and that’s when I noticed the fun part that I need your help with.

    This is the new page I created from scratch: http://herbmentor.com/EnfoldEditorBug2-Test.jpg

    Content shows up fine so far, though I’m just using a 1/2 column & text box shortcode. So I added a few others. All of them worked fine. Until I got to the Color Box layout shortcode. Every time I added one of these shortcodes to the layout, the page would break in the exact same way as above.

    It seems like something in the Color Box code doesn’t translate well on pages using a custom page Template, and I can’t figure out why.

    You still have an admin account (kriesi.dude) to log into this site (you’ll need to, as it’s a private membership site) from my last ticket (https://kriesi.at/support/topic/javascript-conflict-on-addedit-posts-pages). Let me know if you need me to send you the credentials again.

    #140797

    Hi,

    The demo site is not using the latest version of Enfold yet.

    Regards,

    Josue

    #140834

    In reply to: Enfold theme old one

    Ok, re-downloaded it again and added it and this time it came up as 2.1 maybe its because I was using it with WordPress Instant and building it on my computer, it can be glitchy sometimes. Thanks for your help.

    #29564
    mmi
    Participant

    hy

    i want yo ask you if i can find somewhere, the demo code for home page v1 like is on: http://kriesi.at/themes/enfold/

    thnak you

    #140833

    In reply to: Enfold theme old one

    Had another look and it said themeforest-4519990-enfold-responsive-multipurpose-theme, is that meant to be the new one?

    I will just continue building my site with the old version and hope that it wont change anything much when I do get round to getting the newer version! lol

    If someone could send me the proper link to my registered email address when I bought it that would be great as the one I was sent just takes me to Themeforest, so I first downloaded the one under my account which I assumed should be the latest one but it was not, then the one where it says download here under the support tab.

    Cant see anywhere else to get it – strange. I know I must be doing something wrong.

    #140630

    In reply to: tabs error

    Hi,

    Are you using the latest version of Enfold? if no, please update, if the problem persist can you create an administrator account and send me it to avia.josue (at) gmail.com so i can check it personally?

    Regards,

    Josue

    #140988

    Hi,

    The embedding code isn’t generated by Enfold but WordPress itself.

    Regards,

    Josue

    #140998

    In reply to: Disable uppercase

    Hi,

    Please try adding following code to Quick CSS in Enfold theme options under Styling

    body { text-transform:lowercase!important; }

    Regards,

    Yigit

    #140917

    It was working before the update !!!!

    and I navigated, all the files are there, but my theme name has changed from VIVO2013 to enfold again.

    #140990

    In reply to: Font Size

    Hi,

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

    body { font-size: 18px!important; }

    Regards,

    Yigit

    #114991

    How can I update my version of Enfold with the pt_BR language files…

    Right now I only see de_DE.mo and de_DE.po.

    PT_BR is my WP language…but where can I get the pt_BR files for Enfold.

    I saw that they are already included…but I don`t have them in my version.

    Thank you in advance for your help.

    David

    #29559
    BenBlair
    Participant

    Hi,

    Iv just updated my WP to version 3.6.1

    My enfold theme now is not showing the advanced page template editor.

    Can you please advise me on how to fix this issue.

    Im a WordPress novice so keep it simple :)

    Thanks

    Ben

    #140986

    Here is something else I noticed.

    I narrowed down the problem to being related to using a child-theme for enfold.

    My child theme is extremely basic. Just an empty functions.php file and my style.css file for the child theme. When I deactivate the child theme and use the base Enfold theme by itself the duplication does not occur – very very strange behavior.

    #29544
    groupedesmeules
    Participant

    Hello,

    we’re working on our second website using Enfold template. On our new website we added the WPML plugin wich seems to cause issues with permalink (we didn’t have WPML installed on our last website and this issue didn’t happen.)

    You can see the issue live at: http://www.gocaravan.ca/modeles/ when you click one of the portfolio entry.

    If you could point me in the right direction to fix this issue it would be greatly appreciated

    Thanks for the support.

    #140914

    Hi,

    I found a way to add an id to each table (table_1, table_2, table_3, etc), here is how:

    Open /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table.php, and search for this block of code (line 197):

    foreach($sorted_rows as $ul_k => $ul){

    $output .= "<div class='pricing-table-wrap'>";

    Replace it with:

    $i = 0;

    foreach($sorted_rows as $ul_k => $ul){

    $i++;

    $output .= "<div class='pricing-table-wrap' id='table_$i'>";

    Remember that this type of customization would be erased if you update the theme, before updating make a backup of the theme.

    Regards,

    Josue

    #29542
    nachogfa
    Participant

    Hello,

    I tried to change the Enfold theme folder name following these instructions but the theme won’t show again:

    http://roywebdesign.net/change-wordpress-theme-folder-name/

    I hope you can help me with this, best regards.

    #140412

    Hi John,

    1. Uncomment / restore the line you deleted, and change the content of the variable $title in line 9:

    $title = __('Blog - Latest News', 'avia_framework');

    You can change “Blog – Latest News” for whatever you want to.

    2. Yes, this will be wiped when you update Enfold, try using a child theme to preserve changes.

    Regards,

    Josue

    #140659

    Hi,

    In your WordPress directory please go to Enfold > Js and open Shortcodes.js and search for “Iconlist shortcode javascript” ( should be in line 605 ) and comment out or delete all the code untill “Section Link Main Menu controler for one page sites”.

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

    .avia_transform .avia-icon-list .iconlist_icon { opacity: 1!important; -webkit-transform: scale(1)!important; transform: scale(1)!important;
    -ms-transform: scale(1)!important; }

    I’m not sure if this is the best way to do it but does the trick.

    Regards,

    Yigit

    #139867

    BUT… your enfold demo does work correctly (I think it squashes the logo a bit, but it resizes)…. I haven’t really done any changes on the theme except for creating a child theme with nothing in it at this moment…..

    #139803

    Hi Devin,

    Now all deactivated.

    Thanks,

    #140867

    Hi Andreas,

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

    #top .thumbnail_container img { margin: 0 auto!important; width: 170px; height: 257px; }

    Regards,

    Yigit

    #137089

    In reply to: Font Stack

    Hi,

    Not through wp-include but you should go to wp-content > themes > Enfold > Includes > Admin and register-admin-options.php file is there

    Regards,

    Yigit

    #140863

    Hi,

    In your WordPress theme directory please go to Enfold and open Search.php file and search for “bellow” and change it.

    Regards,

    Yigit

    #133690

    In reply to: NextGen Pro

    Hey!

    Update – see: https://kriesi.at/support/topic/how-to-use-nextgen-gallery-with-enfold-and-other-kriesi-themes – Emfold now supports NextGen 2.0.x and Nextgen Pro.

    Best regards,

    Peter

    #140896

    In reply to: Disable logo resizing

    Hi,

    In your WordPress theme directory please go to Enfold > Js and open Avia.js file and find following code

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

    and change it to

    if(st < el_height)
    {
    newH = el_height - st;
    header.removeClass('header-scrolled');
    }
    else
    {
    newH = el_height;
    header.addClass('header-scrolled');
    }

    Regards,

    Yigit

    #29532
    mrlambert33
    Participant

    Hey guys,

    Love Enfold and the smooth layout. I had a couple of questions. First, does the theme react well with advertisement plugins and would you recommend a specific one? Secondly, the same question for geomapping plugins? I’m doing a travel site and want the ability to offer advertisement space as well as map locations I have been. Thanks!

    Matt

    #140855

    Hi,

    Please try adding following code to Quick CSS in Enfold theme options under Styling

    body#top.page-id-2627.content { padding-top: 30px; }

    .page-id-2627 div.avia_textblock {margin-left: -30px;}

    Regards,

    Yigit

    #140350

    Try adding the following to your Quick CSS (located in the styling tab of the theme options) or the child style.css:

    .container_wrap.fullsize {
    overflow-x: hidden;
    }

    Regrds,

    Devin

Viewing 30 results - 238,711 through 238,740 (of 243,765 total)