Viewing 30 results - 236,911 through 236,940 (of 241,807 total)
  • Author
    Search Results
  • #29374
    pcescato
    Participant

    Hi: As you said on ThemeForest answering to turner2f that enfold theme works with Yith Magnifier, I purchased it. Now I can’t make it work, even after trying all combinations, adding the piece of CSS code you provided; you can see issue here: http://www.vaping-circle.com/product/sigelei-zmax-v3-flat/ I’ve tried regenerating thumbnails thru ‘Force Regenerate Thumbnails’, and so and so… Can you give me some help please?

    #29373
    voicepro
    Participant

    I have placed my SECONDARY MENU above the very TOP of the HEADER. It’s currently in a light grey. However, when I hover over it, it is WHITE. Given the background is white, I can’t see it.

    I know it must be a simple fix, but for the life of me, I can’t figure it out.

    Also, I don’t want it to be the “secondary color” of my site, because that color is YELLOW and practically impossible to see.

    Can you please help this novice?

    Thank you.

    http://shinecharlotte.com

    PS: LOVE the Enfold theme!

    #140340

    Hi,

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

    .iconbox_top .iconbox_icon { left: 6%; font-size: 20px; padding: 15px;}

    .iconbox_top .iconbox_content { text-align: left; }

    To increase the size of icons you should adjust the value of font-size and padding

    Regards,

    Yigit

    Hi,

    Can you please once again make sure that ‘Responsive’ is checked in your slider settings?

    Regards,

    Yigit

    #140475

    Hi Miguel,

    You are currently using version 1.7. Please update Enfold to version 2.1 and WordPress to 3.6

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP:

    http://vimeo.com/channels/aviathemes/67209750

    After updating Easy slider should work

    Regards,

    Yigit

    #29370
    mailworm
    Participant

    Is there an easy way to have the same enfold settings for all languages checked in WPML? I do NOT want to set up Enfold seperately for every language. The site should look the same allover any language.

    Thank You,

    Thomas

    #29367

    Topic: WPML Breaks all URL's

    in forum Enfold
    matsch
    Participant

    Hi,

    Enfold is great obviously! Really easy to use and create layouts. I have installed WPML and am trying to have the site in 3 languages. But when the plugin is active, all my URL’s break. All links in the navigation, page links, buttons…everything except the homepage!

    Seems quite drastic and as if I am missing something pretty fundamental. Any ideas?

    Thanks

    #140273

    Hi,

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

    img.avia_image.avia_image_team { float: left; }

    Regards,

    Yigit

    #140374

    Hi,

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

    #top .sub_menu>ul { top: -36%!important; margin-left: 1px; }

    Regards,

    Yigit

    #140450

    Hi Xavier,

    To display big preview picture you should go to Enfold theme options and change blog style to “Single Author, big preview pic” under General Settings

    Posts that have the same tags will be displayed in “You might also like” section. You can add tags in post page

    Regards,

    Yigit

    #29358
    kriru
    Participant

    Hi

    my site is web.guru99.com and javatutorialhub.com

    and this site have some quiz

    so i want to do following in your theme enfold as well as U – Design

    show Next Page in a better fashion

    – Use <!–nextpage–> tags at every 25 questions such that

    Articles with 50 questions will have 2 pages

    Articles with 100 questions will have 4 pages”

    #139643

    Hi,

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

    @media only screen and (max-width: 1016px) { div.main_menu { display: none!important; } }

    This will hide menu on screens smaller than 1016px.

    Regards,

    Yigit

    #138438

    In reply to: Mail subject

    I just noticed that Kriesi added a form id to the input fields with the update. I changed the code above to incorporate this change.

    The answer to the question “What do you mean by “if your field name is different”?” – Enfold allows you to change the “Form Element Label”

    This label text will be used for the form name too. If your “subject” field is not labeled with “subject” the above code will not work. You’d need to replace the word “subject” in

    $new_post['subject_'.

    with your field label text – i.e. if the field label is “Test” the code would look like

    add_filter('avf_form_subject','avia_change_mail_subject', 10, 3);
    function avia_change_mail_subject($subject, $new_post, $form_params)
    {
    $subject = urldecode($new_post['test_'.(avia_form::$form_id - 1)]);
    return $subject;
    }

    jackyking
    Participant

    Sorry that I am opening a new topic. I forgot to ask before closing the last one related to the login/register links.

    I understood that ENFOLD comes with lightbox feature. My question is, how can I add a pop-up form to the login link that was added to the top navigation bar? Do I need to make the link a button or image before I can add a pop-up form to it?

    Thanks in advance!

    #140393

    Tbh I don’t know why the plugin author claims things like “My guess is the theme has completely FUBARed the permalinks data or interface.”. Our theme does not rewrite the permalinks in general but only the permalink of the custom post type “portfolio” (registered in wp-contentthemesenfoldincludesadminregister-portfolio.php) uses a rewrite rule and the WPML rewrite rule the author mentions in his mail (probably he refers to the code in wp-contentthemesenfoldconfig-wpmlconfig.php) does not affect other post types too. Kriesi just rewrites the slugs for all post types which are stored in the $avia_config array and that’s actually just the portfolio post type (compare following line in wp-contentthemesenfoldincludesadminregister-portfolio.php)

    $avia_config['custom_post']['portfolio']['args'] = $args;

    Also the url rewrite just affects the portfolio post type – compare the code:

    function avia_wpml_url_filter($lang)
    {
    $post_type = get_post_type();

    if("portfolio" == $post_type)
    {
    $slug = avia_wpml_get_options('portfolio-slug');

    $current = isset($slug[ICL_LANGUAGE_CODE]) ? $slug[ICL_LANGUAGE_CODE] : "";
    foreach ($lang as $key => $options)
    {
    if(isset($options['url']) && $current != "" && $current != $slug[$key] && "" != $slug[$key])
    {
    $lang[$key]['url'] = str_replace("/".$current."/", "/".$slug[$key]."/", $lang[$key]['url']);
    }
    }
    }
    return $lang;
    }

    If you still think our config.php breaks the permalink open up functions.php and replace

    require_once( 'config-wpml/config.php' );

    with

    //require_once( 'config-wpml/config.php' );

    Afterwards WP will complete ignore all WPML related rewrite rules which are part of the theme code and no other rewrite rules will be applied (by the theme) to the permalinks.

    That said I didn’t notice any permalink issues with other plugins (WooCommerce & WPML or bbpress & WPML) and I agree with the author above – it’s probably a conflict in your configuration (plugin/plugin conflict or plugin/theme conflict). You can try to deactivate all plugins and then activate them one by one to find the conflicting plugin(s).

    #139800

    Hi Ismael,

    When I did the upgrade, I used FTP to upgrade. I noticed that only the WooCommerce shop pages have the woocommerce style. Rest of the sites are okay. If that’s the case, do you still think overriding the theme files via FTP would correct the woocommerce style issue?

    Thanks,

    #139799

    Hi,

    Please download the latest version of Enfold, 2.1. Override the theme files via FTP. I think the process of updating the theme has nothing to do with the css issue. Don’t forget to create a backup of the modified files.

    Regards,

    Ismael

    #29344
    alittlewing
    Participant

    Hi, I’m working on a site using Enfold template and been able to add some nice customization to the Main Content and Alternate Content global styling options. I have a sidebar layout on a handful of pages including the homepage, and would like the sidebar to standout more from the light background texture I added to the Main Content.

    Through another thread I was able to find a css solution to add a background color to the sidebar, but it doesn’t affect the margins and wrapper. Ideally I could apply the Alternate Content style to the whole right sidebar container or at least make everything to the right of the border the same color.

    The working site for reference is tedxbeacon.wpengine.com.

    Appreciate the help!

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    Hey,

    Let us know if it really is the issue. :)

    Cheers,

    Ismael

    #139635

    Hi,

    I’m not saying that you have to delete those every time you create a video page. I’m just saying you do it just for this particular page. I tested it on my end and the video shows fine.

    Please download Enfold 2.1.

    Regards,

    Ismael

    #140076

    Hi Ismael,

    I am running WP 3.6 and Enfold 2.1

    I deleted cache and history, tried to access my site in Chrome, Safari and FF, still cannot see the above, new files…

    Is there any way I can update the Avia Builder manually via FTP?.

    I reloaded the page several times but no change….saved the page several times and updated, no change.

    Thankyou

    Gary

    #140408

    Hi John,

    Open the functions-enfold.php file and search for this line (262):

    Replace it with this:

    'html' => "",

    Regards,

    Josue

    #116527

    In reply to: Enfold Showcase

    Hey,

    Nice work Paulo! Awesome designs. :)

    Regards,

    Ismael

    #29341
    jbiasucci
    Participant

    In the Enfold theme, the page title of individual pages that are shown in the “All Pages” list can controlled easily — just by changing the name of the page. Also, the title container itself for any of these listed pages can be easily suppressed just by choosing not to display the page header.

    However, a “page” is also generated automatically when someone clicks on an individual post on the blog page, and this page displays the title container and the title “blog”. Howwever, this page is not shown in the list of pages, and I can’t figure out either how to change the title from “blog” to something else, or to suppress the title container completely. Can you help me out?

    My site link, showing such a non-page page with the title “blog”, is: http://uufreethinker.com/2013/09/in-search-of-secular-spirituality-beyond-gazing-at-the-grand-canyon/

    Thanks for your help.

    John

    #29335
    JaredBurnett
    Participant

    on your page http://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/?skin=Splash%20Blue how did you get the “per month” font to be dark and italicized in the same cell as the price?

    Thanks, that seems to be it!

    Thank you!

    #140359

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    Hi,

    Are you talking about the menu on Appearance > Menus panel? Have you tried clicking the “Screen Options”, see if they are enabled?

    Regards,

    Ismael

Viewing 30 results - 236,911 through 236,940 (of 241,807 total)