Viewing 30 results - 239,911 through 239,940 (of 243,949 total)
  • Author
    Search Results
  • #28326
    jakves
    Participant

    Hi,

    I have the LayerSlider: old jQuery issue. It’s very strange, because i’m using WordPress 3.6 and the Enfold version 2.0.1!

    Link: http://www.appartig.at

    thank you

    #136869

    Thanks for this fix, Ismael.

    #28325
    nelinda321
    Participant

    I absolutely love this theme, but this is the one problem I can’t seem to resolve. I have two websites using Enfold (drjenna.net and horsestreat.com). On the drjenna.net site I am having issues with the menu overlapping the logo as the window is made narrow and on iPad portrait. Horsestreat.com the menu completely disappears when viewing in iPad portrait mode. I’ve searched through this forum and tried some of the suggested CSS fixes as well as the modifying the .js file, and none have worked.

    Please help!

    #28323
    arementeria
    Participant

    Hello,

    I purchased and installed Enfold version 1.4 on WP 3.5.

    A few days ago update to WP 3.6 and Enfold started having problems, mainly with “Fullwidth Easy Slider” and some motion effects and transitions.

    You could tell me what to do to make Enfold work properly?

    If possible an explanation suitable for beginners.

    Thanks!

    Adrian

    #28322
    Ole
    Participant

    I am working with a child theme. How will this work with the new update feature? Just curious. All update features showes up in the Enfold Child, so next time I just hit update (prior to backing up everything ofc)?

    #134629

    well’ sorry for that but i hope that someone find me a solution. i bought a theme that i can’t use….

    The server is hosting by “Oxito” (france)

    The hosting plan is “premium” http://www.oxito.com/hebergement/premium/

    PHP version is 5.3

    WordPress :

    version 3.6 FR

    No plugin

    theme : Replet

    #136520

    I’ve tried doing that many times, in fact for each clean install, the first thing I did was select a predefined theme in Enfold and save changes – and each time it’s made this error.

    It appears the theme won’t access or create the dynamic_avia folder so I thought I’d copy it over and see if it made a difference and it hasn’t.

    Permissions are fine throughout the entire site structure, and I can’t seem to figure out why this is happening – is there perhaps a debug plugin I can install to track where this error occurs?

    #129854

    There isn’t a way to set it dynamically via css. The difference in color is because enfold has styles for the tables and the plugin doesn’t have a style for them.

    So the plugin data is: table {} while the theme has table{some styles}. In those cases, the plugin is a blank slate and the theme styles fill in that blank.

    What you would want to do is inspect the plugin with dev tools (Chrome>right click>inspect element) and for each css selector either style the element as you want it or clear out the theme styles by add the same properties but default values (almost the same thing as adding new styles completely).

    #136752

    I tried it on a separate page and it has the same problem. I did not change the border width though? Do you think this is causing the problem, and if so, how is this exactly done? :)

    Thanks a million!

    #134628

    If you could tell us a bit more about the server (host, plan, specs) we’ll look into a bit more. This is the first I’ve ever run across or heard of someone just not being able to install the theme at all.

    #125405

    Hi,

    as you’ve recommended, I have now only changed in functions-enfold.php and added this line there:

    <br />
    'show_home' => __( 'Atelier', 'avia_framework' ),<br />

    but this has no effect:

    #136751

    Hi Tali!

    First of all, humble thanks for your advice!

    It seems to work on the first click, but after one closes the form and tries to reopen the same form, it does not work.

    http://test2013.printlanti.com/painomaailmat/

    Here I have two links below the balls that should open forms. As said, both work on the first click, but a secondary click on the same link gets all scrambled.

    Sincerely,

    Sami

    #137111

    In reply to: Editor not Working

    Thank you Ismael.

    Still not working. I am running WP 3.6 and Enfold 2.0.1. I deactivated all plugins and added the line of code to wp-config.php but it still not working.

    Jose

    #136268

    In reply to: Icons in Enfold

    Thanks Ismael,

    I’ll give it a go!

    Andrew

    #134627

    hi,

    it didn’t change anything.

    i had to replace the .htacess by an old one. Now there is no more 500 error.

    It realy looks like the Enfold theme doesn’t want to work. So i’ll use Replete until someone find me a good solution.

    Regards,

    Xavier

    #136785

    Yes, you can modify the layout of the related posts in wp-contentthemesenfoldincludesrelated-posts.php. Eg if you want to replace the image with the post title replace

    $output .= "	<a href='".get_permalink($related_post->ID)."' class='relThumWrap noLightbox'>n";
    $output .= " <span class='related_image_wrap' data-avia-related-tooltip="". htmlspecialchars ( $related_post->post_title )."">";
    $output .= $image;
    $output .= " <span class='related-format-icon avia-font-entypo-fontello {$extra_class}'><span class='related-format-icon-inner'>".$avia_config['font_icons'][$format]."</span></span>";
    $output .= " </span>";
    $output .= " </a>";

    with

    $output .= "	<a href='".get_permalink($related_post->ID)."' class='relThumWrap noLightbox'>n";
    $output .= $related_post->post_title;
    $output .= " </a>";

    #135453

    Unfortunately we have no converting tool yet and the only solution is to modify the data directly in the database with tools like phpmyadmin. Access the wordpress database and click on the “wp_options” table. Then search for the data field with the “option_name” value “avia_options_enfold” and replace “enfold” with your child theme name. If the child theme name is “Enfold Child theme” the new “option_name” would be “avia_options_enfold_child_theme”.

    #135500

    In reply to: Breacrumps

    This is a technical limitation. WordPress doesn’t know which “portfolio grid page” is the parent page of a “single portfolio entry” because the portfolio grid is actually just a shortcode which is embedded into the content. Kriesi found a workaround and Enfold now stores the id of the portfolio grid page into a session. If this id is set the breadcrumb will list the portfolio grid page in the breadcrumb, otherwise not. So if the user first views the grid page the server will save the id into the session and as soon as the user views the single portfolio entry Enfold uses this session data to build the breadcrumb. On the other hand (if the user accesses the portfolio entry directly) it won’t save a session/id and the breadcrumb won’t show the portfolio grid page link.

    #136693

    Hi,

    Enfold uses get_the_time(‘d M Y’) in wp-contentthemesenfoldincludesloop-index.php to display the time. Try to replace it with

    get_the_time(get_option('date_format'))

    to use the default wordpress format. I’ll ask Kriesi to include this change in the next update. The widgets offer a filter to change the format. Insert the code at the bottom of functions.php:

    function change_avia_date_format($date, $function) {
    $date = get_the_time(get_option('date_format'));
    return $date;
    }
    add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);

    #136718

    I’m not sure what you mean with “sidebar manager” but if you want to remove the meta box option on the right side of the post editor screen which allows the user to select a certain widget area open up wp-contentthemesenfoldconfig-templatebuilderavia-template-builderconfigmeta.php and delete

    array(

    "slug" => "layout",
    "name" => "Sidebar Setting",
    "desc" => "Choose a custom sidebar for this entry",
    "id" => "sidebar",
    "type" => "select",
    "std" => "",
    "class" => "avia-style",
    "required" => array('layout','not','fullsize'),
    "subtype" => AviaHelper::get_registered_sidebars(array('Default Sidebars' => ""), array('Displayed Everywhere'))

    ),

    Hi,

    thanks, I just discovered, that a click on the red cross does not work, if the browser window is minimized to half of its width.

    I often work on a wide screen with Notepad++ for code editing in the one half of the screen and therefor minimize the Firefox window to the other half of a 24″ wide screen.

    Just discovered, that when I open the Firefox window bigger, then I can click the red cross successful.

    Hey!

    You don’t need to install layerSlider as a separate plugin. Enfold loads the latest version of the plugin automatically (4.6.0). Just make sure you’re using the latest version of the theme (v2.0.x).

    Best regards,

    Peter

    #136427

    In reply to: Ajax Gallery

    Hallo,

    1) Um ein Portfolio anzulegen bitte zuerst mehrere Portfolio Entries hinzufügen. Bei den “Ajax Portfolio Preview Settings” müsst ihr auf den “Add Preview Images” Button klicken um die Bildergalerie zu erstellen. Dann rechts daneben “Gallery” oder “Image List” auswählen. Das Beitragsbild wird als erstes Vorschaubild verwendet – dh der User muss zuerst dieses Bild anklicken, damit Enfold die Galerie mit ajax nachlädt und anzeigt. Für jede Galerie muss ein eigener “Portfolio Entry” angelegt werden und die “Ajax Portfolio Preview Settings” entsprechend gesetzt sein. Nicht vergessen, dass ale Portfiolio Entries zumindest einer Kategorie zugeordnet sein müssen.

    2) Dann zur Seite gehen, wo die Ajax Galerie angezeigt werden soll. Dort zum Layoput Builder wechseln und das “Portfolio” Element auswählen. Dann die entsprechende Kategorie in den Portfolio Optionen auswählen und bei “Link Handling” das Ajax Portfolio auswählen. Das Endergebnis kann dann so aussehen: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/ – es kommt natürlich auf die Bilder & die Darstellungsoptionen an (image List, Slideshow, etc.).

    Hey!

    I can’t reproduce this issue too but for now try to use another browser. I’m sure that the layerslider plugin authors will fix the issue if more users report it.

    Best regards,

    Peter

    #28026

    Topic: Logo Problem IE9

    in forum Enfold
    #137128

    Hi,

    Did you recently update to WordPress 3.6? Please download the latest version of the theme, Enfold 2.0.1.

    A link to your website will be helpful.

    Cheers,

    Ismael

    #136884

    Hey,

    I’m not sure where you get that scroll. Maybe a plugin is messing with the theme’s css. Please add this on your custom.css or Quick CSS:

    .four.units.single-product-main-image.alpha {
    overflow: hidden;
    }

    Regards,

    Ismael

    #137110

    In reply to: Editor not Working

    Hey,

    Do you have the latest version of Enfold, 2.0.1? Please upgrade WordPress to 3.6. If you have any plugins installed, please deactivate them first. Go to the WordPress root folder, look for wp-config.php then add this code:

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

    Regards,

    Ismael

    #137024

    Hey,

    Please upgrade your Enfold theme to version 2.0.1. This will fix the slider issues entirely.

    Cheers,

    Ismael

    #136360

    Do we ever need to import the WPXML file if we have already imported the SQL file?

    Once we purchase another license, what is the best way to clone the site under a different domain name and host ?

Viewing 30 results - 239,911 through 239,940 (of 243,949 total)