Viewing 30 results - 2,731 through 2,760 (of 7,495 total)
  • Author
    Search Results
  • #1000987

    Hi julianyoung,

    Thanks for giving us the links. The problem is the color set is white for those fields, try adding this css in Quick CSS (located in Enfold > General Styling):

    #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 {
        color: #000;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1000985

    Topic: mixed content

    in forum Enfold
    Overhaulics
    Participant

    I used Really simple SSL as well as a search replace tool on the DB to update everything to load over https, however, I am getting mixed content warnings on my site due to one GIF. How can I fix this?

    Mixed content page: https://astoriabrewingcompany.com/
    Culprit: http://astoriabrewingcompany.com/wp-content/themes/enfold/config-woocommerce/images/loading-light.gif

    #1000982
    Oliver Berger
    Participant

    Hej @all,

    searching the forums yielded no viable results so I opened up this topic.

    I’d like to use Enfold with a boxed layout and a border left and right of the content-column like https://szene-hamburg.de does.

    Any hints on how to achieve this? Thanks!

    Hi! I’m having a Google search Console issue as well — it’s no longer recognizing my property. I put my tracking code into the Google Services area of Enfold’s theme; how do I get Google Search to verify my site? It’s been verified for years before this.

    #1000896
    VBV-Hofheim
    Participant

    Hey,
    I used the tab section in my enfold page. After editing everything, I recognized that it is not good when using the seach function on the page.

    E.g. check the demo page of kriesi itself: https://kriesi.at/themes/enfold-2017/elements/tab-section/
    Choose a word, you’d like to type in the search feeld, but don’t use one of the first tab, that is automatically open, when you’re loading the page.
    The search results will show you, that you can find this word in the tab section BUT if you click on the link, the result page provides you, you won’t end up on the open tab presenting your word. Instead, you’ll end up on the tab, which is automatically open, when loading the page.

    Is there any possibility to change this. So that I end up on exactly the open tab, I am looking for?

    Hope you understand my issue, regards
    Nadine

    #1000465

    well the css for that is :
    PS i did not know either – but google and css font ligatures will bring sometimes the solution.

    h1,h2,h3 {
        font-variant-ligatures: none !important;
    }

    there are alot of settings – you had to test it
    nearly all modern browsers know that : https://caniuse.com/#search=font-variant-ligatures
    but the font itself has to have that variant in it ! If not your have to use a different font.

    Edit: i tested it on Google font page – it works with Roboto

    if you only want to have it on headings element of Enfold:

    .av-special-heading-tag {
        font-variant-ligatures: none !important;
    }
    • This reply was modified 7 years, 7 months ago by Guenni007.
    #1000380
    spidercreations
    Participant

    I was able to implement this code in functions.php to ensure a specific product would not show up on the full search results archive page…

    function jp_search_filter( $query ) {
      if ( ! $query->is_admin && $query->is_search && $query->is_main_query() ) {
        $query->set( 'post__not_in', array( 5337 ) );
      }
    }
    add_action( 'pre_get_posts', 'jp_search_filter' );

    Sidebar: For those of you reading who want to exclude additional pages, just add more page IDs after the array. So 5337,3445,6789 and so on. More information here – https://www.johnparris.com/exclude-certain-pages-from-wordpress-search-results/

    But this code does not exclude results from the AJAX Enfold drop-down. The result will show up and you can click on it to get to the page. If you click on the View All Results link at the bottom of the AJAX search, you will not see the result on that page (the archive search results page).

    So, is their code I could add to functions.php to exclude a result or result from the Enfold AJAX search?

    Before I go adding plugins to try stuff out, I’d prefer to go this route since I’m only planning to exclude one or two pages/products. I’m already running a lot of plugins…

    Good Morning,

    It is not enough to have a Disallow in the robots.txt file
    Google indexes the URL http://www.yourdomain.com/wp-content/themes/enfold/framework/
    Google has notified me of the coverage index error of this URL even though I had put the Disallow in the robots.txt file
    on the google support page specify it:

    It has been indexed although a robots.txt file has blocked it: the page has been included in the index even though it is blocked by a robots.txt file. Google always follows the indications of these files; however, if there are links to the page on other websites, it will index it. We do not consider it an error because we are not sure if you intend to block the page so that it does not appear in the search results. If you want to block it, robots.txt is not the appropriate mechanism to prevent it from being included in the index; instead, use a “noindex” directive or prohibit anonymous users from accessing it by requiring authentication. With the robots.txt Tester, you can find out which rule blocks the page. Due to the robots.txt file, it is likely that the fragments of this page that are displayed in the search results are not optimal. If you do not want to block the page, unlock it in your robots.txt file.

    The only solution is that the URL http://www.yourdomain.com/wp-content/themes/enfold/framework/ can have an HTML response code that can be included in the “noindex” directive.

    I have looked at what is in the URL http://www.yourdomain.com/wp-content/themes/enfold/framework/ and I see that there is a PHP file: avia_framework.php only. Could you add a blank index.html file in that directory but with the “noindex” directive? Would this change affect the functioning of Enfold? Thanks and best regards

    #1000132

    Here was our solution for the deprecated combo widget. We customized the css so that the widget would closely resemble Enfold’s deprecated widget.

    1. Install and activate the “WP Tab Widget” plugin from the WordPress repository.
    2. Go to Wp Admin > Appearance > Widgets and drag the “WP Tab Widget” where you want it to appear on your site.
    3. Add the CSS below to your Quick CSS or style.css file. (If you use Quick CSS for testing, you should move the new css to your style.css to make it permanent.)
    4. Customize the plugin settings to your taste (we did not program the css to include the tags tab, only recent, popular, and comments)

    /* WP Tab Widget Avia Combo Widget Replacement */
    .wpt_widget_content { border: none !important; }
    
    .wpt_widget_content .inside { 
        border-top: 1px solid #e1e1e1 !important; 
        margin-top: -1px !important;
        padding-top: 0px !important;
    }
    
    .wpt_widget_content .tab-content li {
       padding-left: 0px !important;
       padding-right: 0px !important;
       padding-bottom: 10px !important;
    }
    
    .wpt_thumbnail, .wpt_avatar {
        margin-right: 9px !important;
        padding: 3px !important;
        float: left !important;
        margin-top: 4px !important;
        margin-bottom: 4px !important;
        border-style: solid !important;
        border-width: 1px !important;
        height: 36px !important;
        width: 36px !important;
        display: block !important;
    }
    
    .wpt_widget_content .entry-title a {
        color: #222222 !important;
        overflow: hidden !important;
        font-size: 13px !important;
        margin-top: 0px !important;
        font-weight: bold !important;
        margin-top: 2px !important;
        display: block !important;
        line-height: 20px !important;
    }
    
    .wpt_comment_content p {
        color: #222222 !important;
        overflow: hidden !important;
        font-size: 12px !important;
        margin-top: 0px !important;
        font-weight: bold !important;
        margin-top: 2px !important;
        display: block !important;
        line-height: 20px !important;
    }
    
    .wpt_widget_content .wpt-postmeta {
        font-size: 11.5px !important;
    }
    
    .wpt_comment_meta {
       margin-top: 4px !important;
       margin-bottom: 4px !important;
       line-height: 0px !important;
    }
    
    .wpt_comment_meta a {
        font-size: 11.5px !important;
        font-weight: normal !important;
        line-height: 18px !important;
    }
    
    .wpt_thumbnail .wp-post-image {
        width: 28px;
        height: 28px;
        object-fit: cover;
    }
    
    .wpt_widget_content .tab-content li {
        border: none !important;
        margin: 0px !important;
    }
    
    .has-3-tabs {
       width: 100.3% !important;
    }
    
    .has-3-tabs li {
       clear: none !important;
    }
    
    .has-3-tabs a {
       border: none !important;
       background-color: #fff !important;
       font-weight: normal !important;
       font-size: 12px !important;
       line-height: 24px !important;
    }
    
    .has-3-tabs a:hover {
       color: #666666 !important;
    }
    
    .has-3-tabs .selected {
       border-bottom: 2px solid #666;
    }
    
    .has-3-tabs .selected a {
       font-weight: bold !important;
       color: #666666 !important;
    }

    Tip: The plugin determines popular posts based on the plugin’s view counter. When the plugin is first installed, all your posts will have a 0 views value. Until you or your visitors start hitting pages on your site, the plugin will randomly choose posts to show in the popular posts tab. If you do not want to wait for traffic to your site, or you want to replicate the list of popular posts you had previously before Kriesi removed the combo widget,

    0. Make sure you have your database backed up, just in case!
    1. Go to WP Admin > Posts, mouseover the title of your posts, and look at the URL in your browser’s status bar (at the bottom of your browser window)
    2. Make note of the post_id (the url will include “post=x”) for the post whose view count you want to modify (do this for each post you want to modify)
    3. Go into your web host’s control panel, to phpMyAdmin > youraccount_wp* (your WP database) > wp*_postmeta > Search (tab)
    4. Query for the post_id assigned to the post you want to raise or lower in the popular posts widget.
    5. Locate the “_wpt_view_count” meta_key, then change the “meta_value”. The higher the number, the higher it will appear in the popular posts tab.
    6. Repeat steps 3-5 for each post.

    Ta da! Your beloved combo widget is back. Enjoy!

    #1000080

    Topic: Enfold Child Theme

    in forum Enfold
    kingsleygroup
    Participant

    I searched before buying this theme and it said it contained the child theme. Am I missing something? I don’t want to have to build one even though it may seem easy to you.

    #1000011

    Hey Freek,

    Here is a possible solution for you
    https://kriesi.at/support/topic/adding-search-bar-to-header-cant-find-enfoldincludes-folder/#post-476685

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #999961

    In reply to: Lines on mainpage

    #999852
    rkumar12
    Participant

    We recently migrated our blogs over to a subdomain “blog.domain.com” and are wondering if there is a way for the search widget or built-in search ajax tool in Enfold to pull the blog posts that are on this subdomain plus do a global search of our entire website when someone uses it. In addition, we used to use the “Enfold latest news” widget in the footer to pull recent blogs displaying a featured image. Since our blogs are on the subdomain, this no longer works to pull the latest posts. I noticed the RSS widget – this could work but it doesn’t display a thumbnail image next to the most recent posts from the subdomain.

    #999705

    In reply to: Portfolio entries

    … great – the syntax error is gone – thanks!

    But also I try to do it the same way as Bernd (using ENFOLD ‘taxonomy-portfolio_entries.php’ without get_header(); and get_footer(); as customized template) it will not working.

    What I´ve done:
    1) Modify the ENFOLD portfolio.php like here: https://pastebin.com/4we4UCnY
    2) Modify SEARCH&FILTER results.php like here: https://pastebin.com/ZbMLs9Xz
    … do you have an idea what`s wrong?

    All the mods are in my child-theme:
    CHILD/shortcodes/portfolio/portfolio.php
    CHILD/search-filter/results.php

    In case you will have a closer look, you will find login credentials in private content – thanks in advance!

    This reply has been marked as private.
    #999306
    mynick
    Participant

    Dear Enfold,

    Should this be checked or unchecked? ( see screenshot )
    I’m using the SEO Yoast plugin.

    View post on imgur.com

    Thanks for the information :)

    #998864
    Doron
    Participant

    i used to show simple pop ups in enfold site using this code https://kriesi.at/support/topic/inline-content-in-magnific-popup/#post-289356
    but lately it seems it’s longer working
    I’ve searched the support forum and ran into this massage https://kriesi.at/support/topic/code-snippet-inline-post-content-popup-magnific-popup-shortcode/#post-918779
    so i tried to replace the old code with the new code but than the page who contained the pop ups wont finish loading (stuck with the loader animation) and chrome console yields the following error:

    (index):569 Uncaught TypeError: $(...).magnificPopup is not a function
        at HTMLDocument.<anonymous> ((index):569)
        at i (jquery.js?ver=1.12.4:2)
        at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2)
        at Function.ready (jquery.js?ver=1.12.4:2)
        at HTMLDocument.K (jquery.js?ver=1.12.4:2)
    (anonymous) @ (index):569
    i @ jquery.js?ver=1.12.4:2
    fireWith @ jquery.js?ver=1.12.4:2
    ready @ jquery.js?ver=1.12.4:2
    K @ jquery.js?ver=1.12.4:2

    is there a way to fix this?

    Hi,
    I Enabled the Avia Layout Builder Debugger and went to the pages in the Private Content area, and tried the edit a text block element and then tried to save, which did the error you spoke of.
    I then searched for open “strong” tags and found two of them, one in the h1 title, and the other in the h2 sub-title.
    I then added the missing closing tags to them and saved, and now the page works and saves correctly.
    Please clear your browser cache and check, and if you find any other pages with this error, please let us know.

    Best regards,
    Mike

    #998590
    sizilianos
    Participant

    Hello,
    i have purchased the theme some times ago and now i will start with an blog. I will use the Dark Photography Demo Template and now i am wondering where i can find the image Sizes to get the best out of my pictures when i will upload them.

    I have searched the Forum and only find out that in the function.php are some image sizes. But i am wondering that i can’t find for example the size for the mansory blog images. I found out that the images shown there have a size of 317 X 413 px. But i can’t find it on the function.php.

    Is there still another place where i can find these image sizes?

    Thank you for your help!

    Giuseppe

    • This topic was modified 7 years, 7 months ago by sizilianos. Reason: Forgot the Notify me Check box :-)
    #998496
    akelly7
    Participant

    Hello,

    After searching for an answer and checking for plugin conflicts I have determined that it only happens with Enfold. …
    so here is the issue… I am using the stream view on the All in One Events Calendar the thumbnails no longer display… it use to work it no longer does.
    sometimes the images show for a second then they disappear.

    I have a staging site that you can see it…I am sending login..

    Calendar

    All plugins are disabled except for the calendar

    #998365

    Topic: Enfold search feature

    in forum Enfold
    NMOI
    Participant

    Hi,
    I like Enfold Search feature and I’d like to use it on another site using a different theme. Is it available as a standalone plugin? If not, could you please advise an alternative?
    Thanks

    #998003

    Hi Alwin,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    /* Header in sidebar to turn to burger on iPad 768px */
    @media only screen and (max-width: 990px) {
      
            .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:1}
            .responsive #top .av_header_transparency .logo img.alternate{display:none;}
            
            .responsive #top #wrap_all #header {position: relative; width:100%; float:none; height:auto; margin:0 !important; opacity: 1; min-height:0;}
            .responsive #top #main {padding-top:0 !important; margin:0;} 
            .responsive #top #main .container_wrap:first-child{ border-top:none; }
            .responsive.html_header_top.html_logo_center .logo { left: 0%; -webkit-transform: translate(0%, 0); -ms-transform: translate(0%, 0); transform: translate(0%, 0); margin:0; }
            .responsive .phone-info{float:none; width:100%; clear:both; text-align: center;}
            .responsive .phone-info span{margin:0;padding:0; border:none;}
            .responsive.html_header_top #header_main .social_bookmarks ,
            .responsive.html_top_nav_header #top .social_bookmarks { width:auto; margin-top:-16px; } 
            
            .responsive #top .logo{position: static; display:table; height:80px !important; float:none; padding:0; border:none; width:80%; }
            .responsive .logo a{display:table-cell; vertical-align: middle;} 
            .responsive .logo img{height:auto !important; width:auto; max-width: 100%; display: block;  max-height: 80px;}
            .responsive #header_main .container{height:auto !important; }
            .responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
            .responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;}
            .responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;}
            .responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;}
            .responsive #top #header_meta .social_bookmarks li:last-child{border-right-style: solid; border-right-width:  1px;}
            .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;}
            .responsive #header .social_bookmarks{padding-bottom:2px; width:100%; text-align: center; height:auto; line-height: 0.8em; margin:0;}
            .responsive #header_meta .sub_menu>ul>li{float:none; display: inline-block; padding: 0 10px;}
            .responsive #header .social_bookmarks li{float:none; display: inline-block;}  
            .responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;}
            .responsive.bottom_nav_header.social_header .main_menu>div{height:auto;}
            .responsive .logo img{margin:0;}
            .responsive.html_header_sidebar #top #header .social_bookmarks{display:none;}
            .responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header{max-width: 100%;}  
            
            .responsive.html_header_transparency #top .avia-builder-el-0 .container, .responsive.html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption{padding-top:0;}
            .responsive #top .av_phone_active_right .phone-info.with_nav span{border:none;}
            
            .responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a, 
            .responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a, 
            .responsive #top .av_header_transparency #header_main_alternate, 
            .responsive .av_header_transparency #header_main .social_bookmarks li a,
            .responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span,
            .responsive #top .av_header_transparency #header_meta, 
            .responsive #top .av_header_transparency #header_meta li,
            .responsive #top #header_meta .social_bookmarks li a{ color:inherit; border-color: inherit; background: inherit;}
            .responsive.html_top_nav_header .av-logo-container{height:auto;} 
            .responsive.html_top_nav_header .av-section-bottom-logo{border-bottom-style: solid; border-bottom-width: 1px;}
            
            
          /*new mobile*/
            .responsive .av-burger-menu-main{display: block;}
            .responsive #top #wrap_all .main_menu{top:0; height:80px; left:auto; right:0; display: block; position: absolute;}
            .responsive .main_menu ul:first-child > li a { height: 80px; line-height: 80px;}
            .responsive #top .av-main-nav .menu-item{display:none;}
            .responsive #top .av-main-nav .menu-item-avia-special{display:block;}
            .responsive #top #wrap_all .menu-item-search-dropdown > a { font-size: 24px; }
            .responsive #header_main_alternate{display:none;}
            .responsive #top #header .social_bookmarks{display:none;}
            .responsive #top #header .main_menu .social_bookmarks{display:block; position: relative; margin-top: -15px;}
            .responsive #top .av-logo-container .avia-menu{height:100%;}
            .responsive #top .av-logo-container .avia-menu > li > a{line-height: 80px;}
            .responsive #top #main .av-logo-container .main_menu{display:block;}
            .responsive #top #main .av-logo-container .social_bookmarks{display:none;}
            .responsive #top #main .av-logo-container .main_menu .social_bookmarks{display:block; position: relative;}
            .responsive #top #main .av-logo-container .main_menu{display:block;}
            .responsive #top #header_main > .container .main_menu  .av-main-nav > li > a,
            .responsive #top #wrap_all .av-logo-container {height:80px; line-height:80px; }
            .responsive #top #wrap_all .av-logo-container {padding:0;}
            .responsive #top #header_main > .container .main_menu  .av-main-nav > li > a{
                min-width: 0; padding:0 0 0 20px; margin:0; border-style: none; border-width: 0;
            }
            .responsive #top .av_seperator_big_border .avia-menu.av_menu_icon_beside{border-right-style: solid; border-right-width: 1px; padding-right: 25px;}
            .responsive #top #header .av-main-nav > li > a, .responsive #top #header .av-main-nav > li > a:hover{
            background:transparent;
            color: inherit;
            }
            
            .responsive.html_top_nav_header .av-logo-container .inner-container{overflow: visible;}
            .html_header_sidebar #header .container {
              width: 90%;
            }
    
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #997885
    govus
    Participant

    Hello, I noticed when I google “myusername” which I have been using on multiple clients’ pages build with enfold and other themes, the results will show stuff like examplesite.com/author/user, “user” being my admin user name on the site. Please see private content.

    I know Yoast has a feature to check “Do not allow search engines to show this author’s archives in search results.” on user options, but that hasn’t hidden them yet…

    #997635
    werbeagenturlauf
    Participant

    Hi there,

    the responsive version shows Enfold logo , search button and menue, although it should be hidden.
    I am using this to hide it in the “normal” view:

    #menu-item-search {
    display: none;
    }

    .logo { display: none; !important;
    }

    Also i am missing the text that should be underneath the top-photo in the responsive version

    Thanks for your help
    Michael F Kraus

    #997574
    Onlysky
    Participant

    Hi! First, thanks for an otherwise fantastic theme.

    We have about 50 different websites built using Enfold, but it came to our attention yesterday that 100% of our sites are not sending emails to Hotmail addresses. Forms send correctly to Gmail and Yahoo email addresses, it’s only Hotmail emails that receive nothing at all.

    The sites we use have many different hosting providers: we have tested for sites hosted on BlueHost, GoDaddy, LiquidWeb, and a few others. The problem is the same across the board. I have searched your previous threads, and elsewhere on the internet, tried your proposed solutions, and we are still having the problem. We have called a couple of the hosting providers, and have been told it is not a problem coming from their end. We have installed both the Mail Logging plugin and the WP SMTP plugin: neither of which work. We have tried using Contact Form 7, and Gravity Forms, neither of which work. I am pretty convinced this is a bug specifically with Enfold: our websites on the same hosting providers which use other themes do not have this problem.

    Can someone please help us out here? We are a growing company and would love to continue to use Enfold for the majority of our client websites, but we will be unable to if our clients who use Hotmail cannot receive emails from our website forms.

    Thank you for your time and your diligence in the matter.

    • This topic was modified 7 years, 7 months ago by Onlysky.
    #997516

    In reply to: Creating a 410.php

    Hi Basilis,

    We build Linux servers for living so hosting shouldn’t be the issue. It’s a standard LEMP stack and we use it for hosting hundreds of WP sites.

    The 410.php page “works” however the 404.php file we are copying contains so much Enfold stuff that we don’t seem to be able to customise it to say “410 – Gone” :-(

    The following is the Enfold 404.php with “404” changed to “410” inside the PHP however the page title and page breadcrum still states “404”!? :-/

    <?php 
    	if ( !defined('ABSPATH') ){ die(); }
    	global $avia_config;
    	get_header();
    	echo avia_title(array('title' => __('Error 410 - Gone', 'avia_framework')));
    	do_action( 'ava_after_main_title' );
    ?>
    	<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    <?php 
    	do_action('avia_410_extra');
    ?>
    	<div class='container'>
    	<main class='template-page content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content'));?>>
    	<div class="entry entry-content-wrapper clearfix" id='search-fail'>
    <?php
    	get_template_part('includes/error410');
    ?>
    	</div>
    	</main>
    <?php
    	$avia_config['currently_viewing'] = 'page';
    ?>
    	</div>
    	</div>
    <?php get_footer(); ?>
    • This reply was modified 7 years, 7 months ago by dogsbody.
    #997481

    Hey Jordan,

    Thank you, but this does not work. No difference at all. Strange thing is that even on a iPad with 768px width (portrait) the mobile menu is not displayed.
    In Enfolds settings I set Menu Items for mobile at 990px. Does not seem to make a different either?

    I searched a lot on this forum and it seems tat when using the left side menu instead of an “normal” header this is a know issue in the Enfold theme?

    There must be some way to use a left menu design and just display the mobile menu only on tablets I hope…?

    Regards,
    Alwin

    • This reply was modified 7 years, 7 months ago by Alwin.
    TST765RS
    Participant

    Hi, this theme is getting really annoying, and I have done the searching and appears that this question goes unanswered and for some time now as well..

    Yet again I have wasted another heap of my time just trying get the theme to install or whatever… This is it for me… I seriuosly want a refund and will be turning my back on this theme wordpress stuff, at least with shopify I can actually open the software and make a site… 2 days I have lost here, and hope like hell I don’t get some BS when I ask for my refund, which I am doing right now and deleting everything enfold off this computer…

    Here has been the latest life waster….

    – I was installing the Enfold Theme from the .zip file I got downloaded from Envato uploaded file: themeforest-4519990-enfold-responsive-multipurpose-theme.zip
    It said….
    Unpacking the package…
    Installing the theme…
    The package could not be installed. The theme is missing the style.css stylesheet.
    Theme installation failed.

    #997143
    Werner Rolf Welzin
    Guest

    Moin!
    Bin im Endspurt mit Enfold und meinem Kunden Figa.
    Die Kontakt Seite kann Google Maps nicht laden – der API Key ist frisch und die Seite ist in der Search Konsole als meine Seite angemeldet. Würde Google Map gern nutzen.
    Mit javaSript habe ich nix am Hut.

    Gruß von der Elbe

    Werner

    #996757
    Demaup
    Participant

    Hi,

    Can you explain what do we have to do to have a search bar like on the enfold doc please?
    Here is a link: https://kriesi.at/documentation/enfold/

    I can add a search bar to any page with the widget element but I do not know how to customize it neither how to make the instant search working.

    Thanks,

    Demaup

Viewing 30 results - 2,731 through 2,760 (of 7,495 total)