Viewing 30 results - 5,161 through 5,190 (of 7,495 total)
  • Author
    Search Results
  • janban23
    Participant

    hello

    second time we are using enfold theme and we are quite fine with it. now there is a display issue on our 2nd site.
    http://city-madness.com/
    if you view this page with safari and scroll down to the black area, the background image of the 2nd box “frankfurt” isn’t showing up every time.
    what’s wrong?
    file size and file type, html and css setup isn’t differing to the other pictures/boxes.
    was searching for similar threads here and around the web without success.

    thanks in advance!

    #512013

    Thank you very much for your answer! That was what I was searching for!

    Is there also a possibility to activate the many, so that is is working even when the enfold theme is down?

    #511915
    dewasurya
    Participant

    Hi Enfold team,

    We would like to insert shortcode for our custom availability search plugin on top of the slideshow. Could you please help to advise us, what is the best possible method to do this? Tried several option below didn’t work:
    – Fullwidth revolution slider – doesn’t read shortcode
    – Fullwidth easy slider – just caption doesn’t read shortcode

    #511825

    Go to Enfold (or Enfold Child) in the WordPress Menu.

    Then Header > Extra Elements

    Unclick the box that says “Append search icon to main menu”

    #511409

    In reply to: Menu Issues

    Hey Jon!

    1.) Make them disappear with this code in side your Quick CSS field:
    span.avia-bullet {
    display: none;
    }
    2.) Use this code:

    span.avia-menu-text {
    font-weight: normal;
    }
    

    3.) You are using a very old version of the theme. Please upgrade to Enfold v3.3.2.

    4.) Not sure what you are trying to achieve. Can you explain further and use screenshots to highlight your intentions please? you can use imgur.com or dropbox.

    Would be best for us moderators and other people searching for solutions in this forum, if you separate different questions into different tickets.

    Regards,
    Andy

    Rob72
    Participant

    Dear Kriesi Team,

    I’m using the latest version of ENFOLD and integrated a contact from with your “Contact Form” shortcode.
    The good news: The contact form works very well. Great job!
    The bad news: It has a few unexpected behaviours:

    1) Using the contact form with autoresponder and captcha activated crashes Internet Explorer 11.0.2.
    After the submit, the “Your message has been sent” is displayed correctly, and any attempt to continue to browse on the same domain leads to IE crashing. It seems to work in Chrome.

    2) If the autoresponder message contains any http:// or any ‘ e.g. as in the world “don’t” or “We’ll do this” than no autoresponder message is sent.
    The site owner still gets the normal notification email (which is great), but it would be good if you could mention in a comment that any http:// and ‘ need to be avoided. Alternatively you may add a feature to escape the apostrophe do allow for links and a text like “We’ll get back to you!”

    Other than that I wish there would be an easier way to add Dear Firstname, to the autoresponder. I’ve seen some posts on how to do it, but I wonder if those changes in the code get lost when the next update is installed.

    For now, I can work with the above and I hope that my post helps other to avoid the frustration when searching why the autoresponder doesn’t work. It generally does, but if it doesn’t then remove any special characters from your autoresponder message for now.

    #510982

    It’s not really an option to make a reset of Enfold, I would consider that too dangerous close to our launch :/ .

    I made a child theme with many custom css lines. Don’t see any that should interfere negatively with the accordion, though. Didn’t touch that one specifically.

    I made a few lines in the functions.php and added a custom 404.php. No changes to the theme files besides that.

    These are the lines in the child theme functions.php:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    /* 
    REMOVES KRIESI LINK IN THE SOCKET
    */
    
    add_filter("kriesi_backlink","new_link");
    function new_link(){
    $kriesi_at_backlink = "";
    return $kriesi_at_backlink;
    }
    
    /* 
    REMOVES IMAGE FILE NAME ON HOVER LANDING PAGE HOTSPOTS
    */
    
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');
    
    /* 
    PLACES SEARCH IN HAMBURGER MENU ON MOBILE
    */
    
    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-
    
    page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-
    
    5">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }
    
    /* 
    ALLOWS US TO SET A CUSTOM SHOP PAGE
    */
    
    add_theme_support( 'avia_custom_shop_page' );
    
    
    #510912

    I managed to download Poedit and create el_GR.mo & el_GR.po
    I uploaded them to enfold/langs
    I made sure that wordpress has Greek selected in Settings>General
    I made sure that wp-config has define( ‘WPLANG’, ‘el_GR’ );
    I translated the strings about search

    …and still I cannot see the greek translation in
    http://www.psarianos.eu/?s=sfg

    #510606
    amazeingart
    Participant

    Hi, I searched for my problem and found one old thread, which said the problem had been fixed with updates already. But I’m still getting it, and using fully current versions. I’m using Enfold 3.2.3 (parent theme, the site is a child) in WordPress 4.3.1.

    Here is the problem: Whenever I click to edit a textbox that has a list (UL or OL) in it, the editor spawns all these extra list tags. For example this code:

    <ul>
    	<li>Who you are (name, organization, website)</li>
    	<li>Where you are from (city, state, country)</li>
    	<li>How you plan to use the art</li>
    </ul>

    Turns into this:

    <ul>
    	<li>Who you are (name, organization, website)</li>
    </ul>
    </ul>
    <ul>
    <ul>
    	<li>Where you are from (city, state, country)</li>
    </ul>
    </ul>
    <ul>
    <ul>
    	<li>How you plan to use the art?</li>
    </ul>

    It seems to happen the instant you click the text box to edit it (I’m using Advanced Layout Editor too). If you cancel the edit, the textbox / list is fine. And if you edit it and save, and edit again, even more UL tags get added.

    Any help appreciated! Its nearly impossible to edit pages with any lists in them now.

    Chris

    Hi Kriesi,

    You were right – I did have a /shop/ directory – only in the root so of course, so my temp directory wasn’t affected – I think I may even have put that folder in mysefl at some point in the development – can’t actually remember exactly when or why!!

    Just removed it and the shop works properly – AND good news – I only have one wordpress installation to maintain when we complete the shop!

    I am therefore very grateful – and thanks.

    For your information – before I selected Enfold I did a lot of research to select a theme for my first major WP job – http://www.studio3.org/ – amongst the cirteria which led to selection was the flexibility (so I could go on to use the theme and my experience with it on other jobs) but just as important was numbers of installs as it is very important for a ‘one man band’ like me to have assured support.

    You have just confirmed this was a good call! ;)

    Many thanks

    Tony

    #509405
    Arkadiusz
    Participant

    Hello,
    The element linkpicker is able to select the post. Is there any possibility to change this select element with the posts on the list of search? In my project / large news portal / we have more than about 130,000 articles / posts – and this is problematic.
    Alternatively, if it is possible to change the sorting posts in linkpicker by date and adding to POST_TITLE – post_date_publish?
    I would do it in such a way that it was not a change in the enfold, but the child theme.

    Regards
    Arek

    #509089

    Hi Mustafa!

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

    .rtl .avia-search-tooltip.avia-tt {
        left: auto!important;
        right: -270px;
    }
    .rtl .avia-search-tooltip .avia-arrow-wrap { 
    right: 93%; 
    }

    Best regards,
    Yigit

    #509061

    Shalom!

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

    .rtl .avia-search-tooltip.avia-tt {
        left: auto!important;
        right: -270px;
    }
    .rtl .avia-search-tooltip .avia-arrow-wrap { 
    right: 93%; 
    }

    Cheers!
    Yigit

    #509057
    Doron
    Participant

    in a enfold website I’ve helped build, when you click the search icon (on the top left)
    the search box pops out but it gets outside of the browser window (it pops to the left when it’s already at the left border of the browser window)
    it might be an Right To Left issue since its a hebrew site
    can you help me fix it?

    #508656
    mustafamohsen
    Participant

    Hello

    When setting up enfold in RTL WP with the search box to the left of the menu, it goes off screen

    #508616

    Hi Andy,

    there are no plugins that are on this page except for Enfold items.

    please scroll down on the page to see how the tabs are broken.

    https://www.optym.com/about-us/research/

    I have also taken screenshots to show you the issue: http://imgur.com/a/MBb3s

    #508377
    Morticka
    Participant

    Hi guys,

    I’ve been searching for a way to change the title of the Enfold settings in the WordPress admin menu. Right now it is to long.

    I found an article how to do this, (http://code.tutsplus.com/articles/customizing-your-wordpress-admin–wp-24941) but Enfold has his own menu so I don’t know where to look and change it.

    Can you help me?

    Sincerely,
    Morticka

    • This topic was modified 10 years, 6 months ago by Morticka. Reason: Added the title of the Enfold options the way it looks now
    AccelerateMe
    Participant

    Forms – unable to change the background color of the fields.
    I’m in the wp-admin > enfold > general styling > Quick CSS.
    I’ve made other changes in there before that take.

    This is what I’m trying to change:

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        border-color: #000000;
        background-color: #595959;
        color: #808080;
    }

    ^ I got that from F12 in Chrome. Refreshed, reloaded.
    Viewed in FF – same thing.
    Emptied cache, same thing.

    This is what I have in the Quick CSS area of the wp-admin:

    input, input[type='text'] {color:#333;background:#fff;}
    .entry-content p {font-size:110%;}
    .av_one_half  {font-size:90%;}
    .av_one_third {margin-left:3%;}
    #avia-menu a:link, #avia-menu li a:visited {color:#efefef;}
    * .ls-container .ls-bottom-nav-wrapper {visibility:hidden;display:none;}
    .title_container .main-title {color:#efefef;font-family: "'Ubuntu', sasns-serif;font-size:48px;font-weight:700;padding-bottom:15px;}
    .content {padding-top:0px;}
    #top #main .sidebar,  {border-left:1px solid  #d6d4d1;}
    .entry-content-wrapper div li {list-style:square;list-style-position:inside;line-height:1.8em;}
    .menu {text-transform:lowercase; }
    .main_color .sidebar {color:#efefef;}
    div.wpcf7-response-output {font-size:2em;}
    span.avia-menu-text {border-right:1px solid #d6d4d1;padding-right:14px;padding-top:10px;padding-bottom:10px;border-top:0px;border-bottom:0px;border-left:0px;font-weight:700;}
    . menu-item-top-level-1 {margin:2px;}
    .header_color .main_menu ul:first-child  a {color:#fff;}
    <strong>#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select  {background-color:#efefef;background-color:#efefef;}</strong>
    .title_container .main-title {line-height:115%;}
    @media only screen and (max-width: 501px)
    {
     .entry-content p {font-size:1.5em;line-height:115%;}
    }
    

    ———————
    The other elements work fine. Trying to change all of the form input fields to be #efefef background is not working.
    Any suggestions as to why it is not coming in as I stated?

    #508086
    willbe24
    Participant

    Hi there, I’ve searched through the forums and cannot find any current information that can help me. The mobile menu (hamburger) is not showing on mobile devices on my site.

    I was wondering if there’s some quick CSS that I’m missing? I was also wondering if there’s a way of changing the colour of the active menu item, instead of highlighting the bottom (underline) is there a way of blocking out the background of it? I know I can use:
    #top .header_color .current-menu-item a
    To change the font color, but I’m unsure about filling the background color?

    Thanks for your help.

    • This topic was modified 10 years, 6 months ago by willbe24.
    #508085
    aetios
    Participant

    Hi,

    This is a following of the following thread:
    https://kriesi.at/support/topic/theme-options-changes-not-working/?login_error#post-465225

    We are not able to save the theme options and it’s not related to a plugin.

    The php info:
    http://openmindfestival.com/info.php

    Our web master is saying that the problems is in wp_option avia_options_enfold.

    Apparently it’s an option somewhere in there causing the problem.

    a:1:{s:4:”avia”;a:151:{s:9:”frontpage”;s:2:”19″;s:9:”undefined”;s:32:”Utilisez l’image comme logo”;s:8:”blogpage”;s:2:”45″;s:4:”logo”;s:66:”http://openmindfestival.com/wp-content/uploads/2015/03/logo_OM.png”;s:7:”favicon”;s:0:””;s:9:”preloader”;s:8:”disabled”;s:21:”preloader_transitions”;s:21:”preloader_transitions”;s:14:”preloader_logo”;s:0:””;s:15:”websave_windows”;s:0:””;s:6:”markup”;s:0:””;s:15:”lightbox_active”;s:15:”lightbox_active”;s:9:”analytics”;s:508:”<script>
    (function(i,s,o,g,r,a,m){i[‘GoogleAnalyticsObject’]=r;i[r]=i[r]||function(){
    (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
    m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,’script’,’//www.google-analytics.com/analytics.js’,’ga’);

    ga(‘create’, ‘UA-311875-3’, ‘auto’);
    ga(‘send’, ‘pageview’);

    </script>”;s:16:”color-body_style”;s:9:”stretched”;s:15:”header_position”;s:10:”header_top”;s:20:”layout_align_content”;s:20:”content_align_center”;s:18:”sidebarmenu_sticky”;s:18:”conditional_sticky”;s:19:”sidebarmenu_widgets”;s:0:””;s:18:”sidebarmenu_social”;s:8:”disabled”;s:17:”responsive_active”;s:17:”responsive_active”;s:15:”responsive_size”;s:6:”1310px”;s:13:”content_width”;s:2:”73″;s:14:”combined_width”;s:3:”100″;s:12:”color_scheme”;s:12:”Splash Green”;s:24:”colorset-header_color-bg”;s:7:”#ffffff”;s:25:”colorset-header_color-bg2″;s:7:”#f8f8f8″;s:29:”colorset-header_color-primary”;s:7:”#6bbd45″;s:31:”colorset-header_color-secondary”;s:7:”#444444″;s:27:”colorset-header_color-color”;s:7:”#333333″;s:26:”colorset-header_color-meta”;s:7:”#808080″;s:29:”colorset-header_color-heading”;s:7:”#000000″;s:28:”colorset-header_color-border”;s:7:”#e1e1e1″;s:25:”colorset-header_color-img”;s:0:””;s:33:”colorset-header_color-customimage”;s:0:””;s:25:”colorset-header_color-pos”;s:10:”top center”;s:28:”colorset-header_color-repeat”;s:6:”repeat”;s:28:”colorset-header_color-attach”;s:6:”scroll”;s:22:”colorset-main_color-bg”;s:7:”#ffffff”;s:23:”colorset-main_color-bg2″;s:7:”#fcfcfc”;s:27:”colorset-main_color-primary”;s:7:”#6bbd45″;s:29:”colorset-main_color-secondary”;s:7:”#79d150″;s:25:”colorset-main_color-color”;s:7:”#666666″;s:24:”colorset-main_color-meta”;s:7:”#919191″;s:27:”colorset-main_color-heading”;s:7:”#222222″;s:26:”colorset-main_color-border”;s:7:”#e1e1e1″;s:23:”colorset-main_color-img”;s:6:”custom”;s:31:”colorset-main_color-customimage”;s:0:””;s:23:”colorset-main_color-pos”;s:12:”bottom right”;s:26:”colorset-main_color-repeat”;s:9:”no-repeat”;s:26:”colorset-main_color-attach”;s:6:”scroll”;s:27:”colorset-alternate_color-bg”;s:7:”#83a83d”;s:28:”colorset-alternate_color-bg2″;s:7:”#ffffff”;s:32:”colorset-alternate_color-primary”;s:7:”#719430″;s:34:”colorset-alternate_color-secondary”;s:7:”#83a83d”;s:30:”colorset-alternate_color-color”;s:7:”#666666″;s:29:”colorset-alternate_color-meta”;s:7:”#536530″;s:32:”colorset-alternate_color-heading”;s:7:”#222222″;s:31:”colorset-alternate_color-border”;s:7:”#e1e1e1″;s:28:”colorset-alternate_color-img”;s:63:”{{AVIA_BASE_URL}}images/background-images/gradient-top-dark.png”;s:36:”colorset-alternate_color-customimage”;s:0:””;s:28:”colorset-alternate_color-pos”;s:10:”top center”;s:31:”colorset-alternate_color-repeat”;s:8:”repeat-x”;s:31:”colorset-alternate_color-attach”;s:6:”scroll”;s:24:”colorset-footer_color-bg”;s:7:”#222222″;s:25:”colorset-footer_color-bg2″;s:7:”#333333″;s:29:”colorset-footer_color-primary”;s:7:”#ffffff”;s:31:”colorset-footer_color-secondary”;s:7:”#aaaaaa”;s:27:”colorset-footer_color-color”;s:7:”#dddddd”;s:26:”colorset-footer_color-meta”;s:7:”#919191″;s:29:”colorset-footer_color-heading”;s:7:”#919191″;s:28:”colorset-footer_color-border”;s:7:”#444444″;s:25:”colorset-footer_color-img”;s:0:””;s:33:”colorset-footer_color-customimage”;s:0:””;s:25:”colorset-footer_color-pos”;s:10:”top center”;s:28:”colorset-footer_color-repeat”;s:6:”repeat”;s:28:”colorset-footer_color-attach”;s:6:”scroll”;s:24:”colorset-socket_color-bg”;s:7:”#2e2e2e”;s:25:”colorset-socket_color-bg2″;s:7:”#555555″;s:29:”colorset-socket_color-primary”;s:7:”#ffffff”;s:31:”colorset-socket_color-secondary”;s:7:”#aaaaaa”;s:27:”colorset-socket_color-color”;s:7:”#eeeeee”;s:26:”colorset-socket_color-meta”;s:7:”#979797″;s:29:”colorset-socket_color-heading”;s:7:”#ffffff”;s:28:”colorset-socket_color-border”;s:7:”#444444″;s:25:”colorset-socket_color-img”;s:0:””;s:33:”colorset-socket_color-customimage”;s:0:””;s:25:”colorset-socket_color-pos”;s:10:”top center”;s:28:”colorset-socket_color-repeat”;s:6:”repeat”;s:28:”colorset-socket_color-attach”;s:6:”scroll”;s:16:”color-body_color”;s:7:”#333333″;s:14:”color-body_img”;s:0:””;s:22:”color-body_customimage”;s:0:””;s:14:”color-body_pos”;s:10:”top center”;s:17:”color-body_repeat”;s:6:”repeat”;s:17:”color-body_attach”;s:6:”scroll”;s:14:”google_webfont”;s:11:”EB Garamond”;s:12:”default_font”;s:16:”Lato:300,400,700″;s:23:”color-default_font_size”;s:0:””;s:9:”quick_css”;s:2132:”/* Main Menu font szie*/
    .main_menu ul:first-child > li > a { font-size: 18px; }

    /* Fullscreen slider button size */
    #top .avia-slideshow-button {padding: 25px 50px 23px;
    font-size: 15px;
    min-width: 200px;}

    /* Mansonry Gallery Font size and hover color */
    .av-masonry-entry .av-masonry-entry-title {
    font-size: 28px ;
    text-align: center;
    }
    .av-masonry-entry.isotope-item:hover .av-masonry-entry-title {
    color: green !important;
    }

    /* Accordion Slider Title size */
    #top .aviaccordion-title { font-size: 32px; }

    /* Table Cell Size */
    .main_color .pricing-table>li:nth-child(odd) {
    height: 60px;
    }
    .main_color .pricing-table>li:nth-child(even) {
    height: 60px;
    }

    /* Body font size */
    body {
    font: 15px/1.65em “HelveticaNeue”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
    color: #444;
    }

    /* drop shadow effect*/
    .avia_transform .av_slideshow_full .active-slide .avia-caption-title,
    .avia_transform .av_fullscreen .active-slide .avia-caption-title
    {text-shadow: 30px 30px 20px #000;}

    /*Logo Fix*/
    .header-scrolled span.subtext {
    opacity: 0;
    }

    /*Fix button ticket homepage*/
    #top .avia-slideshow-button.avia-color-dark {
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 1);
    }
    openmindfestival.com/media=”all”
    #top .avia-button.avia-color-dark {
    color: rgba(0, 0, 0, 0);
    border: 3px solid #000;
    color: rgba(0,0,0,0.6);
    border-color: rgba(255, 255, 255, 1);
    background: white;
    }

    /* remove html tag in comments section*/
    .form-allowed-tags { display: none!important; }

    /* modification SImon need to be commented*/

    .page-id-27 .avia_code_block_0 {
    position: relative;
    top: -51px;
    }
    strong.logo a img {
    padding-top: 9px;
    }

    .js_active .tab {
    font-size: 16px;
    }

    .sidebar_tab .tab_icon {
    font-size: 20px;
    }
    .header-scrolled strong.logo a img {
    padding: 3px 0;
    }

    .av-masonry-date{
    display:bobe;
    }

    .embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; }

    .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }”;s:13:”header_layout”;s:36:”logo_left main_nav_header menu_right”;s:11:”header_size”;s:4:”slim”;s:18:”header_custom_size”;s:3:”150″;s:18:”header_menu_border”;s:0:””;s:12:”header_style”;s:0:””;s:16:”header_title_bar”;s:16:”hidden_title_bar”;s:13:”header_sticky”;s:13:”header_sticky”;s:16:”header_shrinking”;s:16:”header_shrinking”;s:18:”header_unstick_top”;s:8:”disabled”;s:14:”header_stretch”;s:8:”disabled”;s:17:”header_searchicon”;s:17:”header_searchicon”;s:13:”header_social”;s:37:”icon_active_right extra_header_active”;s:21:”header_secondary_menu”;s:0:””;s:19:”header_phone_active”;s:0:””;s:5:”phone”;s:0:””;s:23:”header_replacement_logo”;s:87:”http://openmindfestival.com/wp-content/uploads/2015/03/Logo-catalyseur-drop-300×112.png”;s:23:”header_replacement_menu”;s:7:”#ffffff”;s:24:”header_mobile_activation”;s:17:”mobile_menu_phone”;s:22:”header_mobile_behavior”;s:8:”disabled”;s:14:”archive_layout”;s:13:”sidebar_right”;s:11:”blog_layout”;s:13:”sidebar_right”;s:13:”single_layout”;s:13:”sidebar_right”;s:11:”page_layout”;s:13:”sidebar_right”;s:19:”smartphones_sidebar”;s:8:”disabled”;s:16:”page_nesting_nav”;s:16:”page_nesting_nav”;s:22:”display_widgets_socket”;s:3:”all”;s:14:”footer_columns”;s:1:”1″;s:9:”copyright”;s:172:”[nolink]© OpenMind Festival – Design et réalisation par Laboratoire Pachaloha“;s:13:”footer_social”;s:13:”footer_social”;s:10:”blog_style”;s:12:”single-small”;s:17:”single_post_style”;s:10:”single-big”;s:27:”single_post_related_entries”;s:24:”av-related-style-tooltip”;s:16:”blog-meta-author”;s:16:”blog-meta-author”;s:18:”blog-meta-comments”;s:18:”blog-meta-comments”;s:18:”blog-meta-category”;s:8:”disabled”;s:14:”blog-meta-date”;s:14:”blog-meta-date”;s:19:”blog-meta-html-info”;s:19:”blog-meta-html-info”;s:13:”blog-meta-tag”;s:8:”disabled”;s:14:”share_facebook”;s:14:”share_facebook”;s:13:”share_twitter”;s:13:”share_twitter”;s:15:”share_pinterest”;s:15:”share_pinterest”;s:11:”share_gplus”;s:11:”share_gplus”;s:12:”share_reddit”;s:12:”share_reddit”;s:14:”share_linkedin”;s:14:”share_linkedin”;s:12:”share_tumblr”;s:12:”share_tumblr”;s:8:”share_vk”;s:8:”share_vk”;s:10:”share_mail”;s:10:”share_mail”;s:12:”social_icons”;a:6:{i:0;a:2:{s:11:”social_icon”;s:5:”vimeo”;s:16:”social_icon_link”;s:33:”http://vimeo.com/openmindfestival”;}i:1;a:2:{s:11:”social_icon”;s:8:”facebook”;s:16:”social_icon_link”;s:49:”https://www.facebook.com/groups/openmindfestival/”;}i:2;a:2:{s:11:”social_icon”;s:9:”instagram”;s:16:”social_icon_link”;s:38:”https://instagram.com/festivalopenmind”;}i:3;a:2:{s:11:”social_icon”;s:6:”flickr”;s:16:”social_icon_link”;s:52:”https://www.flickr.com/photos/openmindfestival/sets/”;}i:4;a:2:{s:11:”social_icon”;s:10:”soundcloud”;s:16:”social_icon_link”;s:40:”https://soundcloud.com/festival-openmind”;}i:5;a:2:{s:11:”social_icon”;s:7:”youtube”;s:16:”social_icon_link”;s:45:”https://www.youtube.com/user/FestivalOpenMind”;}}s:17:”avia-nonce-import”;s:10:”abcdaff1ac”;s:18:”config_file_upload”;s:0:””;s:15:”iconfont_upload”;s:0:””;s:16:”updates_username”;s:6:”aetios”;s:15:”up

    Fran
    Participant

    Hi Enfold-Team,

    I added a search bar next to the header by following the steps provided in this forum. It looks nice where it’s at, but it doesn’t work quite like I want it to.
    After typing in a term the “Instant Search +”-Plugin results show up – this is great!
    But underneath this box the standard search results load as well. How can I disable those results from showing up?

    Thanks for your help!

    Regards,
    Robin

    #507235
    Luke86
    Participant

    I understand that this support request might be outside of the support you are able to offer but I have run out of options.

    FILE I HAVE EDITED: helper-main-menu.php

    <script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js”></script&gt;
    <script>
    $(document).ready(function(){
    $(“.flip”).click(function(){
    $(“.panel”).slideToggle();
    });
    });
    </script>

    <p class=”flip”><span class=”icon”></span><span class=”label”>Menu</span></p>
    <div class=”panel” style=”display: none;”><?php
    echo do_shortcode(‘[accordionmenu id=unique2354174 accordionmenu=33817]’);
    ?>

    I can add the above code and everything works perfectly, the issue is that the pop-out cart menu (the one that shows what products are in the cart) stops working.

    I have no idea why and I have attempted several suggestions from Google searches.

    Can anyone here provide me some help please.

    #507136

    Hi!

    Try changing line 734 in the /enfold/config-woocommerce/config.php file from this.

    if(avia_is_dynamic_template() || is_paged() || is_search() ) return false;
    

    To this.

    if(avia_is_dynamic_template() || is_search() ) return false;
    

    Regards,
    Elliott

    #506779

    In reply to: Formatting shop issues

    Hi inchmasterflex!

    Thank you for using Enfold.

    1.) You have this css code in the Quick CSS field:

    .current-menu-item>a>.avia-menu-text {
        color: white !important;
    }

    .. replace that with:

    .current-menu-item>li>a>.avia-menu-text {
        color: white !important;
    }

    2.) You can only display the banner on the shop overview page and the product category pages.

    3.) Use this css code:

    .current_page_parent > a {
        color: red !important;
    }

    4.) Try this one:

    ul[data-success="was added to the cart"] .cart_dropdown_first a {
        background-color: black;
        color: white !important;
    }

    If possible, please create a single thread for each inquiries so that we can focus on your question and it will be easier for other users searching for the same solution.

    Regards,
    Ismael

    #506738

    Hi Elliott,

    Thanks for that however how would that be implemented in my code above ? also is it possible to add a sidebar to this search page even though in Enfold options I have selected no sidebar to post type ‘Pages’ ? Thank you any assistance is always appreciated thanks mate

    Bass

    #506501
    Bass
    Participant

    Hi Guys,

    I have a couple of queries:

    1. Creating a grid style results page from a search
    2. Add a sidebar to the page but needs to override the Enfold ->Options Pages have no sidebar ? im assuming Search.php is a post type “Page”

    The following code I have put together from bits and pieces I have found in the forum however the get_post_types() function seems to return alot of unwanted results as I have over 40 plugins running so it is picking up for example Paypal IPN post types ? could we perhaps pass an array to ‘post_types’=> array(‘product’, ‘post’) ? and just have it search posts and products ?

    <?php
    global $avia_config;
    
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	 get_header();
    	 //$avia_config['layout']['current'] = $avia_config['layout']['sidebar_left'];
    	 
    	 //	allows to customize the layout
    	 do_action( 'ava_search_after_get_header' );
    
    	 $results = avia_which_archive();
    	 echo avia_title(array('title' => $results ));
    	 
    	 do_action( 'ava_after_main_title' );
    	 ?>
    
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    
    			<div class='container'>
    
    				<main class='content template-search <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content'));?>>
    
                        <div class='page-heading-container clearfix'>
                            <section class="search_form_field">
                                <?php
                                echo "<h4>".__('New Search','avia_framework')."</h4>";
                                echo "<p>".__('If you are not happy with the results below please do another search','avia_framework')."</p>";
    
                                get_search_form();
                                echo "<span class='author-extra-border'></span>";
                                ?>
                            </section>
                        </div>
    
                        <?php
                       if(!empty($_GET['s']))
    						{
    						echo "<h4 class='extra-mini-title widgettitle'>{$results}</h4>";
    						
    						global $posts;
    						$post_ids = array();
    						foreach($posts as $post) $post_ids[] = $post->ID;
    						
    						$atts   = array(
    						'type' => 'grid',
    						'items' => 60/*get_option('posts_per_page')*/,
    						'columns' => 4,
    						'class' => 'avia-builder-el-no-sibling',
    						'paginate' => 'yes',
    						'use_main_query_pagination' => 'yes',
    						'custom_query' => array( 'post__in'=>$post_ids,'post_types'=>array('product', 'post'))
    						
    							);
    						
    						//print_r(get_post_types());
    						
    						$blog = new avia_post_slider($atts);
    						$blog->query_entries();
    						echo "<div class='entry-content'>".$blog->html()."</div>";
    						}
    
                        ?>
    
    				<!--end content-->
    				</main>
    
    				<?php
    
    				//get the sidebar
    				$avia_config['currently_viewing'] = 'shop';
    
    				get_sidebar();
    				
    							//$avia_config['currently_viewing'] = 'shop';
    //echo '<aside class="sidebar sidebar_left alpha units"><div class="inner_sidebar extralight-border">';
    //dynamic_sidebar( 'Shop Overview Page' );
     // $default_sidebar = false;
    //echo '</div></aside>';
    
    				?>
    
    			</div><!--end container-->
    
    		</div><!-- close default .container_wrap element -->
    
    <?php get_footer(); ?>
    
    #505786
    #505656

    Topic: Login and Register

    in forum Enfold
    Viuliloush
    Participant

    Hi,

    First of all, thanks again for an amazing theme and even better support. You guy really do an outstanding job!

    I was wondering if you could help me with something, or at least point me in the right direction. I am building a website using Enfold, that will act as the frontend (not logged in) site available to the public. Once our customers log in from the WordPress site, they will be directed to our External/non-wordpress site, that is only available to logged in clients. What I want to achieve is this:

    1. Add Login and Register buttons to the top menu next to the Social Icons on the top right corner
    2. Once the client clicks on Login, a lightbox opens displaying a login form. Once they fill in their username/email and password, and successfully log in, they will be taken to our external, non-Wordpress site (that has a different URL)
    3. Once they click on Register, they qwill be redirected to our registration page (non-Wordpress site that has a different URL)
    (lets say the login link is secure.myexclusivesite.com/login and registration would be secure.myexclusivesite.com/register)

    My question is, how do I achieve the first 2 things? First, how do i add the links to the top menu, and how do I create this lightbox, popup form? I’ve searched for plugins, but they all seem to focus on creating a login form for loging into WordPress sites, not from a WordPress site to an external one.

    Any help on this would be amazing, as I seem to have hit a wall with this one

    Thanks a lot in advance

    Lily

    #505452

    In reply to: Multiple language

    Hey!

    Enfold has several elements to display products. You can use Catalogue element to display your products in such form – http://kriesi.at/themes/enfold-restaurant/menu/.

    Also you can use Relevanssi for more advanced search options. You can find implementation here – http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Cheers!
    Yigit

    #505258

    Hey claraelisa!

    Thank you for using Enfold.

    Please replace the code with this:

    add_action('wp_footer', function() { ?>
    	<script>
    		(function($) {
    			$('#top #menu-item-search.menu-item-search-dropdown > a').click(function() {
    				setTimeout( function() { 
    					$('#top #s').attr('maxlength','10'); 
    				}, 500);
    			});
    		})(jQuery);
    	</script>
    <?php });

    Cheers!
    Ismael

Viewing 30 results - 5,161 through 5,190 (of 7,495 total)