Viewing 30 results - 239,611 through 239,640 (of 241,748 total)
  • Author
    Search Results
  • #114952

    HI,

    I would be also interested in the French translation.

    How can I download it?

    Thank you for your help.

    Regards.

    Bernard

    #127897

    Hi,

    1.) Is this the Post slider? Download Enfold 1.7, you can select more options for “Title and Excerpt”.

    2.) Glad you figure this out.

    3.) You’re twitter widget looks ok.

    4.) – – – –

    5.) You can create a New Shop Page, select “No sidebar”, insert the woocommerce shortcodes. Select this page as the default shop page on Woocommerece > Settings > Pages > Shop Base Page.

    6.) You can set a minimum height on your custom.css or Quick CSS

    .pricing-table li {
    min-height: 80px;
    }

    7.) Edit footer.php, find this code

    <span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>

    Replace it with:

    <span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>

    <?php $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => ''); avia_social_media_icons($social_args); ?>

    8.) Please give us a screenshot because I can’t see the issue. Thanks.

    Regards,

    Ismael

    #128156

    Hi,

    The topics are group together by theme. You can use the search box.

    Regards,

    Ismael

    #128153

    Hi,

    You can visit odesk or freelancer. :)

    Regards,

    Ismael

    #127852

    Hi,

    You can make the logo smaller for that screen size while making the font smaller as well. Not much else you can do if you have that many menu items. Can ofcourse force the mobile menu earlier for that screen size as well. Here is the css code , please add it to your css/custom.css or to Quick CSS located in Enfold > Theme Options > Layout Styling… the text area at the bottom of the page:

    http://www.clipular.com/c?9716021=yrkbqE9ieSXtdawm-vanJgl77ek&f=.png

    @media only screen and (min-width:768px) and (max-width:989px) {
    .logo {
    width:230px;
    right:110px;
    position:relative;
    }
    .main_menu {
    right:-70px;
    }
    .logo {
    float:left;
    position:absolute;
    bottom:-10px
    }
    .container {
    position:relative;
    right: 30px
    }
    }

    Thanks,

    Nick

    #25770
    Chenan
    Participant

    Looking for a serious, skilled designer to customize Enfold for a small business.Please leave a msg if you are interested.

    Thanks,

    Chenan

    #25766
    medical1
    Participant

    Warning: Missing argument 1 for get_post(), called in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in/home/content/45/8955845/html/wp-includes/post.php on line 371

    Warning: Missing argument 1 for get_post(), called in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in/home/content/45/8955845/html/wp-includes/post.php on line 371

    Fatal error: Call to undefined function wp_get_theme() in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1168

    It will not show me a preview just the error message above in the pop-up window once installed.

    #128108

    In reply to: Upgrade to 3.5.2

    btw my enfold version is the last one, i Just installed two days ago.

    #127303

    Ismael, Ok almost there!

    Just to be clear. I was assuming that I needed to use an “apple shaped” icon png on a transparency, one in white, one in grey.

    It seems now you are telling me that I need an apple icon on a square grey background for the normal state.

    And an apple icon on a square black background for the hover state.

    SO both icons I make in photoshop should be square with the apple in the center.

    Am I understanding correctly?

    Thank you, Jasmer

    omni-web
    Participant

    Hi Guys,

    Need some help here please,

    Having trouble positioning the submit button in-line.

    There is a lot of info about this on your support forums which I’ve read, I’ve also tried my themes support forum among others.

    I’m very new to web development so forgive me if I’ve missed something.

    I would like to position the button inline & closer to the text input.

    The theme is responsive so the submit button needs to stay aligned at various page sizes.

    So far I have managed to re-position the submit button inline but can’t align the button.

    Live Page: http://my-boiler.info/

    An image of what I’m trying to do – http://my-boiler.info/re-position-submit-button.png

    I’ve tried floating the footer to the right and using margin to target the button which works when viewing on a normal browser but not when resizing the page.

    The theme I’m using is Enfold responsive.

    The code I’m using –

    * FORM BODY contains the main form content*/

    body #gform_wrapper_1 .gform_body {

    }

    /*Postcode input*/

    #gform_wrapper_1 .gform_body .gform_fields .gfield input[type=text] {

    position:relative;

    width:140px;

    height:50px;

    font-size:25px;

    }

    body #gform_wrapper_1 .gform_footer {

    display: inline-block;

    }

    /*Submit button*/

    body #gform_wrapper_1 .gform_footer input[type=submit] {

    margin:0px 0px 0px 0px;

    }

    Some selectors are empty, I’ve just included above to give an idea of what I’ve tried.

    Thanks,

    #128037

    Kriesi uses a session to store the portfolio page (which then links to the portfolio single entry). In your case the portfolio page is: http://www.vizspecialeffects.nl/special-effects/projects/ and wehen I click on “Dove..” the breacrumb shows “Home / special-effects / commercial projects / Dove MEN + CARE” which is imo correct. If you want to display the portfolio slug instead open up wp-contentthemesenfoldincludeshelper-template-logic.php and replace

    if(get_post_type() === "portfolio")
    {
    $page = "";
    $front = avia_get_option('frontpage');

    if(session_id() && !empty($_SESSION['avia_portfolio']))
    {
    $page = $_SESSION['avia_portfolio'];
    }

    if(!$page || $page == $front)
    {
    $args = array( 'post_type' => 'page', 'meta_query' => array(
    array( 'key' => '_avia_builder_shortcode_tree', 'value' => 'av_portfolio', 'compare' => 'LIKE' ) ) );

    $query = new WP_Query( $args );

    if($query->post_count == 1)
    {
    $page = $query->posts[0]->ID;
    }
    else if($query->post_count > 1)
    {
    foreach($query->posts as $entry)
    {
    if ($front != $entry->ID)
    {
    $page = $entry->ID;
    break;
    }
    }
    }
    }

    if($page)
    {
    if($page == $front)
    {
    $newtrail[0] = $trail[0];
    $newtrail['trail_end'] = $trail['trail_end'];
    $trail = $newtrail;
    }
    else
    {
    $newtrail = avia_breadcrumbs_get_parents( $page, '' );
    array_unshift($newtrail, $trail[0]);
    $newtrail['trail_end'] = $trail['trail_end'];
    $trail = $newtrail;
    }

    }
    }

    with

    if(get_post_type() === "portfolio")
    {
    $slugRule = avia_get_option('portfolio-slug');

    if($slugRule)
    {
    $newtrail[0] = $trail[0];
    $newtrail[1] = '<a href="http://mywebsite.com" title="Projects">'.$slugRule.'</a>';
    $newtrail['trail_end'] = $trail['trail_end'];
    $trail = $newtrail;

    }
    }

    and replace “http://mywebsite.com&#8221; with the url you want to use for the “Projects” breadcrumb item…

    #127336

    Hi Dude and thank’s

    I’ve done what you suggested.

    1) define(‘WP_MEMORY_LIMIT’, ‘128M’);

    2) Checked the folder permission, it was 755

    Had to publish the site, so here’s the new link to the test page http://www.akab-lsp.com/test-advslider/

    Fatal error is still showing.

    In setting up the page I used Advanced Layout Editor and choose Media Elements, Advanced Layer Slider and Enfold – beautiful theme ever

    And added a textblock with dummy text below

    Layout No sidebar

    Header Settings Don’t display the header

    Footer Settings Default layout

    Here is another page: http://www.akab-lsp.com/test-advslider2/

    In setting up this page I used Advanced Layout Editor and choose Media Elements, Advanced Layer Slider and Enfold – beautiful theme ever. Made no other changes.

    Pease any other suggestion will be welcome, Advanced Layer Slider is one of the more beautiful features of Enfold theme

    Lucia

    #25751
    #25714
    McGawain
    Participant

    Hi,

    I use Enfold theme with the latest WP version. In the Admin / Products, when I select a category from the drop down menü above the products, than click Filter, any products are visible, despite of the category include more products. When I try filter products once more, WP says: WordPress Error: invalid post type, out of the error message the screen is blank.

    I turned off all my plugins, but no changes.

    I have never seen this type of error, please help me!

    Best Regards: Agnes

    #127945

    Hi,

    Do you have WordPress 3.5 or higher installed? Are you trying to Import the dummy data on Enfold > Theme Options > Import Dummy data?

    Deactivate the Envato WordPress Toolkit.

    Regards,

    Ismael

    Hi,

    On Enfold > Styling > Use stretched or boxed layout?, select Stretch Layout.

    Regards,

    Ismael

    #127985

    Ismael,

    We reinstall a new insallation a with some tests points and we detect the problem, buy we can´t resolve it. The problem is that the theme and the plugin are using one class with the same name in CSS (inn LESS ). This class is for the drop menu.

    This class came from bootstrap. I don´t know if tis class was modified for enfold or plug in.

    In resume the problem is the CSS/LESS between Plugin and them. And the theme “wins” the plugin so the plug in dropmenu does´t work properly

    #25746

    Topic: Image not found

    in forum Enfold
    ayush_x
    Participant

    When I upload my image on the Media->library and click on edit it shows “Image data does not exist. Please re-upload the image.”

    Please help as this was working few days before.

    I tried deactivating and reactivating all plugins and found this problem to arise when I activate enfold theme only.

    I have made a complete new installation of wordpress to reconfirm this problem.

    I am also unable to import dummy data or via wordpress import.

    I can mail my admin id and password

    RDHL.in

    please help.

    #127984

    Ismael,

    I have an picture of the local installation but I don´t know how to send you an image in the this forum (MD?)

    #127983
    #127860

    Hi,

    open up wp-contentthemesenfoldframeworkphpclass-framework-widgets.php and replace

    var myOptions = {
    zoom:".$zoom.",
    mapTypeControl:true,
    mapTypeId:google.maps.MapTypeId.".$type.",
    mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    navigationControl:true,
    navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
    center:latlng
    };

    with

    var myOptions = {
    scrollwheel: false,
    zoom:".$zoom.",
    mapTypeControl:true,
    mapTypeId:google.maps.MapTypeId.".$type.",
    mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    navigationControl:true,
    navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
    center:latlng
    };

    #114698

    Add Xing to Social media icon list.

    I can’s find it on the accepted list, but Kriesi annpounced already here: https://kriesi.at/support/topic/xing-icon

    When is it coming?

    Boris

    #127880

    In reply to: .po file compatibility

    Hi,

    They have different framework so the .po files for Abundance or Replete will not work perfectly on Enfold. You can visit this link: https://kriesi.at/support/topic/please-contribute-and-translate-enfold

    Regards,

    Ismael

    #127302

    Hi,

    If you are working on my instructions, I’ll repeat it again.

    You can replace an existing icon with the youtube icon. On Enfold > Header > Add the Tumblr social icon for example. Place your apple link. When you’re done, edit custom.css then add this code:

    #top .social_bookmarks_tumblr {
    background: url(../images/apple.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr:hover a {
    color:#fff;
    background: url(../images/apple-hover.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr a {
    text-indent: -9999px;
    }

    You don’t need to do Dude’s code. Yes, you need two icons for the initial and hover state. If you want a different color for the hover, you need to edit the apple-hover via Photoshop and change the background color manually.

    Regards,

    Ismael

    Regards,

    Ismael

    #25744

    Topic: move site

    in forum Enfold
    jankedv
    Participant

    Hi,

    I have managed successfully to use the enfold theme and design it. I did it on my own server.

    Now I want to move the entire site to a new domain name and server. (of the client) So what I did is download the files of my FTP and uploaded them to the new server. (not at the root, but in a folder called wordpress)

    I exported the database from my server, and made a new mysqldatabase+user at my clients server.

    But then I want to import the database to this database I get an error:

    Error

    SQL query:

    — Database: jankedevries_nl

    CREATE DATABASE jankedevries_nl DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;

    MySQL said:

    #1044 – Access denied for user ‘measured’@’localhost’ to database ‘jankedevries_nl’

    I have actually no idea what I’m doing (just following random step-by-step guide), but does it make sense to anyone here what goes wrong?

    Also is it possible when you have your files stored away at http://www.example.com/wordpress (so not in the root) to make the website link to http://www.example.com?

    I hope someone can help.

    Janke

    #127982

    Hi,

    Can you give us a link to the website? Please link us to the page with the calendar.

    Regards,

    Ismael

    #25740
    RobHu
    Participant

    Hi,

    thanks for the great theme. I have a problem that the breadcrumb on portfolio pages don’t match the structure as I defined it.

    In Enfold settings I have set the slug for single portfolio items to projects. but I get a breadcrumb that contains categories.

    For the page http://www.vizspecialeffects.nl/projects/dove-men-care/

    the breadcrumb is: Home / special-effects / physical effects / liquids / Dove MEN + CARE

    but should be: Home / projects / Dove MEN + CARE

    Any idea how I can get the right breadcrumb?

    Thanks, chears Rob

    #25736
    Shallnotbe
    Participant

    Hi,

    I’m using the new Enfold 1.7.1 and Child Theme 1.0, imported the dummy content.

    1) Is it possible to color or apply a background image on the whole sidebar?

    I tried a code I found here and applied it on the Quick CSS:

    Code:
    .sidebar {
    background: red;
    min-height: 600px;
    }

    …but it doesn’t match the whole sidebar. only the part where widgets are used. It doesn’t cover the part at the right of the sidebar, nor the empty bottom of the sidebar which could be quite long.

    Is it possible to color the whole sidebar via css, and/or to apply an background image?

    2) Is it possible to change the shapes of the author/commenters images and page pagination instead of the round ones?

    Ideally I’d like to:

    a) Have classic square containers on page pagination and author/commenters, no rounded containers.

    Same with the “previous-next posts” expanding preview shortcuts on left & right

    b) Have triangles instead of rounded containers on post/image hovers & at the big comment-count introducing the comments

    If triangles are shapes that don’t exist, regular squares then.

    Great theme!

    #25723
    mentadata
    Participant

    We bought the Enfold theme, the WPML and All-in-One Event Calendar.

    We setup all the products in Local machine Windows7, apache 2.2. php 5.4. All working fine

    But when we put all the data in our ISP (linux, Apache 2.22 php 5.4.) The calendar was deformed the selection (day, week,…)

    In this ISP we have serveral sites an all working fine (with other themes)

    This two plugins (WPML and All-in-One Event Calendar by Timely) ara mandatory for this site, and this calendar is compatible with WPML (the unique)

    We have another installation in the same ISP with other theme (Kallyas) and the All-in-One Event Calendar works fine.

    #25718
    JBworx
    Participant

    Hi guys,

    Is there any way to use a custom Google Maps marker (.png file) in the Enfold Google maps widget?

Viewing 30 results - 239,611 through 239,640 (of 241,748 total)