Viewing 30 results - 241,801 through 241,830 (of 244,025 total)
  • Author
    Search Results
  • #25913
    kurenev
    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–ru_RU

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

    The same WP version is on both site.

    Plugins are missing..

    http://sila.nichost.ru/

    http://sila.nichost.ru/info.php

    Thanks

    Andrey

    #128588

    Unfortunately, that’s not the solution. :(

    First, I haven’t changed anything about the theme or any code whatsoever since adding all 8 test images in a row. So there’s no reason why they should be regenarated. All thumbnails were added with the exact same dimensions. If they were different, they would also be different in the portfolio grid (they are set to no scaling). Yet in the grid they are all exactly the same, so why change in the AJAX preview?

    Second, I already tried regenarating the thumbnails with that plugin, to no avail.

    Third, the dimensions in the AJAX preview seem totally random. If I put text in the AJAX preview section, then the image is scaled to about 2/3 page width and the text area to 1/3 width, as seen on the Enfold demo site. If I enter nothing or only one or two words in it, then the image is scaled to about 1/4 page width and the text area to 3/4 width. Yet, in this last case the image is not strictly 1/4 of the page width, but sometimes more and sometimes less.

    To show you an example, see this link: http://goo.gl/p0PNC

    Clicking on the first logo will show you the correct dimensions of that logo in the AJAX preview, but once you start navigating through other logos you will notice the change in dimensions between each logo. Completely random, it seems, though I personally assume it has something to do with the amount of text (longer texts or titles force the image to become bigger, smaller texts or titles force it to become smaller). For example the HML logo is small in preview, and it has only 3 letters. The Horst Pöppel logo is bigger, as the name is also bigger (name is even forced on two lines, why?).

    Thanks in advance.

    And one other question about the AJAX preview, but not related to the above issue:

    Is there a way to set the “Slideshow” function in the AJAX preview properties as standard instead of “Gallery”, please? It’s an immense job to manually change this for hundreds of items.

    #127305

    Hi Devin, Ismael, Dude,

    Devin’s last response confused me a bit because it was a bit general in nature. I am very close to understanding this. Let me restate. I’ll be very clear. Currently, I have a tumblr icon linked to my apple certification site with a blue background.

    This is exactly what I want, no more no less:

    1. Normal State: grey apple icon on enfold white? background.

    2. Hover State: white apple icon on dark grey background.

    Am I correct in understanding that I do this?:

    1. Normal State: In Photoshop, create a 64px x 64px SQUARE png file (grey apple on an enfold white background)

    2. Hover State: In Photoshop, create a 64px x 64px SQUARE png file (white apple on an enfold dark grey background)

    Is this the specific and correct procedure for what I want? Is the enfold background perfectly white? FFFFFF?

    Also, will 64px x 64px be enough to make this retina resolution?

    Thank you for your time

    #128651

    Hi,

    Download the latest version of Enfold again, which 1.7. Install it on WordPress 3.5 or higher. Increase the wordpress php memory limit.

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Ismael

    #128205

    Hi,

    Download the latest version of Enfold again, which 1.7. Install it on WordPress 3.5 or higher. Increase the wordpress php memory limit.

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Ismael

    #128535

    I get following js error:

    "thisheading" is undefined - avia.js, line 753

    However I can’t find this code in the latest version of Enfold (1.7.1). Please update your theme to the latest version (you can download the update from themeforest.net) and the error should be fixed too.

    #127847

    In reply to: Add Animation to Logo

    You can add the code to enfold/js/avia.js – replace

    $(document).ready(function()
    {

    with

    $(document).ready(function()
    {
    $('#header_main strong.logo').fadeIn('slow');

    and insert following code into the quick css field to hide the logo:

    #header_main strong.logo{ display: none; }

    #128521

    In reply to: Warning message

    Do you use the “avf_slideshow_title” filter to change the title somehow? If yes please make sure that the return value is a string and not an array.

    If not open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesslideshow.php and try to replace

    if(trim($title) != "")   $title 	= "<h2 class='avia-caption-title'>".trim(apply_filters('avf_slideshow_title', $title))."</h2>";

    with

    if(trim($title) != "" && is_string($title))   $title 	= "<h2 class='avia-caption-title'>".trim(apply_filters('avf_slideshow_title', $title))."</h2>";
    if(trim($title) != "" && is_array($title)) $title = "<h2 class='avia-caption-title'>".implode(",", apply_filters('avf_slideshow_title', $title))."</h2>";

    st4s
    Participant

    Is there a way to remove the default sidebar in the woocommerce single product page so the page will display as it does in the enfold Live Preview?

    Thanks for your help.

    #128490

    I can not tell you how to integrate the login form itself – the code depends on your application. However the search form code can be found in functions-enfold.php

    /* AJAX SEARCH */
    if(!function_exists('avia_append_search_nav'))
    {
    //first append search item to main menu
    add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );

    function avia_append_search_nav ( $items, $args )
    {
    if ($args->theme_location == 'avia')
    {
    global $avia_config;
    ob_start();
    get_search_form();
    $form = htmlspecialchars(ob_get_clean()) ;

    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="'.$form.'">'.$avia_config['font_icons']['search'].'</a></li>';
    }
    return $items;
    }
    }

    The first code block:

    ob_start();
    get_search_form();
    $form = htmlspecialchars(ob_get_clean()) ;

    generates the form and stores it into the $form variable, the second code block

    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="'.$form.'">'.$avia_config['font_icons']['search'].'</a></li>';

    adds the search icon ($avia_config) to the main menu and adds the $form variable to the tooltip content.

    1) Yes, you could use a css media query to hide the caption – eg insert following code into the quick css field

    @media only screen and (max-width: 1000px) {
    .avia-caption {
    display: none !important;
    }
    }

    You can change the max-width value if you want to include/exclude different screen resolutions. At the moment screens with a screen resolution of up to 1000px won’t display the captions.

    2) I noticed that the “jump distance” depends on the content length of the tab/accordion. Probably the expanded content shifts the other content elements down and this will also cause the view port to shift down. I’ll tag this thread for Kriesi and ask him to look into it.

    3) Try following css code to fix the issue:

    .template-page .entry-content h1, .template-page .entry-content h2, .template-page .entry-content h3, .template-page .entry-content h4, .template-page .entry-content h5, .template-page .entry-content h6 {
    word-wrap: break-word;
    }

    4) No, unfortunately this is not easily possible. You’d break the twelve column grid layout if you change the content width or margins and you’d need to completely rewrite the columns definitions in css/grid.css.

    5) Open up functions-enfold.php and delete

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    #25921
    CasperBlackwell
    Participant

    Howdy,

    I’m using home-v7-one-page-portfolio from the dummy data.

    I can not figure out where to edit/change the fixed background images in the “about” section (white kitchen/couches picture) and the picture in the “what others say about us” section (iPad with Enfold site on it).

    Please advise.

    Cheers,

    Casper

    Hi,

    I tagged this thread for Kriesi. Afaik all his demo websites run on a wordpress network/multisite installation and I’d be surprised if Enfold doesn’t work properly with an multisite environment. Please create me a wordpress admin account and send me the login data and more details about the issue to: (Email address hidden if logged out) – I’ll look into it.

    #128039

    Hey!

    Great :)

    Best regards,

    Peter

    #116482

    In reply to: Enfold Showcase

    http://www.northern-studios.com – I am still in the process of rolling everything out, right now, the focus is my tutorial pagesm then the articles, then the rest :)

    #25909

    Topic: Additional License

    in forum Enfold
    lorenzo09
    Participant

    I just had a client purchase the theme and they sent me their 2-emails they got. How do I get the license for their download. The links are opening my previous Enfold download.

    #25908
    jdarko82
    Participant

    Every time I install this theme I get this error Fatal error: fatal flex scanner internal error–end of buffer missed in /home2/amazon36/public_html/wp-content/themes/enfold/includes/loop-sti.php on line 1 this has now happened twice. Is there any way you can help me? Thanks in advance.

    #25907
    formateins
    Participant

    Hey Guys,

    please have a look at the ajax search (beside menu): http://goo.gl/RtefM

    If you switch the language to dutch or english, the result will always use the german strings (try to search for a page title). Did I miss something???

    a) I do use a proper configured WPML.

    b) I do use PO/MO-Files (WordPress itself, Dutch translation from another Enfold user)

    c) Tried to mess around with string translation and also checked with Codestyling Localisation.

    Any help is appreciated!

    #114709

    Lots of great ideas! Thanks for all the ideas everyone I know Kriesi is actively reading the topic and adding things as he is able so keep it up :)

    Regards,

    Devin

    #128310

    In reply to: Enfold Graphics Query

    Thanks Devin.

    With the Testimonial Slider, is there any way to save entered fields….I entered many fields, then by accident deleted part of the page and had to start again….as there is no testimonials section outside of generating this option within a page, I couldn’t figure out if fields could be saved?.

    Secondly, I am working on this site: http://www.naturaloutlook.com. when you select the navigation, the page flashes grey (I presume the colur load for the footer). Is it possible to keep the footer grey but have the page load white, so when you click navigation and move between pages, it looks cleaner?. I tried altering the CSS Styles in the Enfold dashboard option, maybe I am not doing something correctly?.

    Thankyou kind sir.

    Gary

    Holubik
    Participant

    First let me say that the Enfold Theme is TOP NOTCH high quality stuff. I don’t think I have ever run across a theme that is this well done. I appreciate all the hard work that has been put into it in order to make my life easier and more profitable. Thank You!

    Now… I have a client that needs the “additional header with social icons” to be the primary menu on every page, but needs the current main navigation area to be adaptive or conditional to separate pages but keep the same style and format currently being used.

    Example:

    example.com/push would have one menu in the main menu area)

    example.com/pull would have a different menu in the main menu area)

    example.com/shove would have yet another menu in the main menu area

    example.com/yank would have yet another menu in the main menu area

    Tough, i know…

    Your suggestions on how to effectively and quickly handle this matter with your theme so nothing else is effected?

    Im perfectly comfortable with editing the .php files but do not know enough to customize it to my needs. Can you please point me in the right direction?

    #126652

    Hi,

    Is it the top half or the bottom half? On what tablet android or ipad or win 8? What version of the theme… it would be just easier if we can see the code. Please look on the demo site, kriesi.at/themes/enfold if you can see same problem using a tablet on there with the layer slider.

    Thanks,

    Nick

    #128122

    Hello, the extra spacing is okay, the problem is the logic:

    We have a problem with the tabs theme enfold, this error is caused when using the “Logic” of QUFORM, he simply disappears from the tab (in 1.6 it was on the menu tab) in the current version (V: 1.7) it is in “hidden”.

    http://prntscr.com/1e80m1

    http://prntscr.com/1e80kl

    http://prntscr.com/1e80n6

    #128472

    Hi Mkieling,

    In your backend at Enfold->footer first add any text you like to the “copyright” field, then add [nolink] at the end of your custom text . Eg:
    Copyright 2013 MyCompany [nolink]

    or

    Copyright 2013 <a href="#link">MyCompany</a> [nolink]

    Regards,

    Devin

    • This reply was modified 12 years, 2 months ago by Kriesi.
    #25895

    Topic: Support for IE

    in forum Enfold
    FayeMcC
    Participant

    Hi

    I have seen from other threads that enfold isn’t behaving when viewed with IE. I am seeing similar problems with the site I am building http://ec2-54-227-60-144.compute-1.amazonaws.com

    The home page looks fine with Safari but when viewed with IE 8 looks awful if the user has it running in compatibility mode. If this is off, it looks fine. Also I have noticed that your demo site share a similar problem as mine with icon boxes. At the bottom of your hime page the orange circles that should appear are missing.

    Please suggest fixes ASAP.

    Thanks

    Faye

    I do have a plug in “Catalog Visibility Options” that does this and works perfectly for the logged in/ logged off stuff and it can replace the standard Woo Buttons… but the clincher has to do with the avia cart icons… Since Enfold uses its own Add to cart/Show Details icons… these are not modified by that… I can totally remove them:

    .avia_cart_buttons {

    display: none;

    }

    and this semi-solves the problem but now the add to cart/show details are gone when logged in the only place the add to cart button appears is on the product details page… would like the avia cart buttons to pop back up when logged on somehow below the product listings again…

    Thanks,

    MLL

    I am already using 1.7. The reason why you see 1.6 in the source code is because I’m using a child theme in which I added Version nr 1.6 and haven’t changed the number to 1.7 since I updated Enfold to the latest version.

    #128071

    We’ll include this feature in the next version. For now open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesimage.php, delete the entire code within the file and copy/paste this code: https://gist.github.com/InoPlugs/ec2b8ea44ee1cf40ae1a into the file. Then save it and you’ll see a new option on the “element” screen.

    #114708

    Definitely vote for Campaign Monitor ;)

    Thanks!

    Regards,

    jasmine

    #128533

    In reply to: RSS Feed styling issue

    I’m sorry but Enfold doesn’t modify the default wordpress rss feed and we also don’t style it. Personally I’m not aware of any themes which “hack” into the default wordpress feed – simply because it would be bad practice and it’s up to the rss reader software to display the rss feed in a neat way.

    I compared the rss feeds of the 4 most popular themes and no theme adds custom styling code to the rss feed:

    http://theme-fusion.com/avada/feed/

    http://kriesi.at/themes/enfold/feed/

    http://themenectar.com/demo/salient/feed/rss/

    http://dreamthemedesign.com/themes/u-design/?feed=rss

    I only found one plugin: http://wordpress.org/plugins/feed-styler/ but I doubt it works with WP3.5+ because it was released in 2007.

Viewing 30 results - 241,801 through 241,830 (of 244,025 total)